*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c9a96e;
  --gold-light: #e4cc9c;
  --deep-navy: #0a1628;
  --dark-wine: #2a0a1a;
  --cream: #faf6f0;
  --soft-white: #f5f0e8;
  --text-dark: #1a1a2e;
  --text-muted: #6b6b7b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.15) 40%, rgba(42,10,26,0.6) 100%),
    url('https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?w=1920&q=85') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 2rem;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-dates {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.85);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-scroll span {
  width: 1px;
  height: 40px;
  background: var(--gold-light);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.3); }
}

/* ── Section Styling ── */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.section-title em { font-style: italic; color: var(--gold); }

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 700px;
}

/* ── Overview ── */
.overview {
  background: var(--cream);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.overview-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.overview-image:hover img {
  transform: scale(1.05);
}

.overview-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 16px;
  pointer-events: none;
}

.detail-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.detail-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.detail-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.detail-card .small {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ── Full-width Image Break ── */
.image-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-break .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.1) 0%, rgba(10,22,40,0.5) 100%);
  display: flex;
  align-items: flex-end;
  padding: 3rem 4rem;
}

.image-break .overlay blockquote {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  max-width: 600px;
  line-height: 1.5;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.image-break .overlay blockquote cite {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 1rem;
  color: var(--gold-light);
}

/* ── Hotel ── */
.hotel {
  background: var(--deep-navy);
  color: #fff;
}

.hotel .section-title { color: #fff; }
.hotel .lead { color: rgba(255,255,255,0.65); }

.hotel-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.hotel-gallery .img-wrap {
  overflow: hidden;
  position: relative;
}

.hotel-gallery .img-wrap:first-child {
  grid-row: 1 / -1;
}

.hotel-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hotel-gallery .img-wrap:hover img {
  transform: scale(1.05);
}

.hotel-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.hotel-feature {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.hotel-feature:hover {
  border-color: var(--gold);
}

.hotel-feature .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hotel-feature h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.hotel-feature p {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── Itinerary ── */
.itinerary {
  background: var(--soft-white);
}

.day-block {
  margin-top: 3.5rem;
}

.day-block + .day-block {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid rgba(201,169,110,0.25);
}

.day-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.day-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.day-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.day-info .date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(201,169,110,0.2));
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  transform: translateX(calc(-50% + 7.5px));
}

.timeline-time {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.timeline-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 700px;
  overflow: hidden;
}
.timeline-desc .timeline-img {
  float: left;
  width: 35%;
  max-width: 234px;
  border-radius: 8px;
  margin: 0 1rem 0.5rem 0;
}

.day-image {
  margin-top: 3rem;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 21/9;
  max-height: 500px;
}

.day-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.day-image:hover img {
  transform: scale(1.03);
}

/* ── Budget ── */
.budget {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #1a0a28 100%);
  color: #fff;
}

.budget .section-title { color: #fff; }

.budget-table {
  margin-top: 3rem;
  max-width: 600px;
}

.budget-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.budget-row:last-child {
  border-bottom: none;
}

.budget-category {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
}

.budget-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

.budget-total {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.budget-total .budget-category {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.budget-total .budget-amount {
  font-size: 2.2rem;
  color: var(--gold);
}

.budget-note {
  margin-top: 2rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ── Flights ── */
.flights {
  background: var(--cream);
}

.flights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
}

.flights-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.06);
}

.flights-image img {
  width: 100%;
  height: auto;
  display: block;
}

.flights-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flight-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 3px solid var(--gold);
}

.flight-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.flight-direction {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.flight-airline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.flight-route {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.flight-endpoint {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.flight-code {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
}

.flight-city {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.15rem;
  white-space: nowrap;
}

.flight-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 0.35rem;
}

.flight-arrow {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 80px;
}

.flight-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  position: relative;
}

.flight-line::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}

.flight-duration {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.flight-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.flight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
}

.flight-meta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.flight-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem !important;
  font-weight: 700;
  color: var(--gold) !important;
}

/* ── Footer ── */
.footer {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42,10,26,0.5) 0%, rgba(10,22,40,0.7) 100%),
    url('https://images.unsplash.com/photo-1534113414509-0eec2bfb493f?w=1920&q=85') center/cover no-repeat;
}

.footer-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.footer-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.footer-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ── Responsive ── */

/* Ensure all images are responsive by default */
img { max-width: 100%; height: auto; }

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  section { padding: 5rem 2rem; }

  .overview-grid {
    gap: 2rem;
  }

  .hotel-gallery {
    height: 400px;
  }

  .hotel-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .day-block + .day-block {
    margin-top: 4rem;
    padding-top: 4rem;
  }

  .budget-row {
    padding: 1.25rem 0;
  }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  section { padding: 3.5rem 1.25rem; }

  /* Hero */
  .hero {
    min-height: 500px;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
  }

  .hero-dates {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .hero-scroll {
    bottom: 1.5rem;
    font-size: 0.6rem;
    letter-spacing: 2px;
  }

  /* Overview */
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .overview-image {
    aspect-ratio: 4/3;
    max-height: 300px;
  }

  .detail-card {
    padding: 1.25rem 1.5rem;
  }

  .lead {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  /* Image breaks */
  .image-break {
    height: 45vh;
    min-height: 280px;
  }

  .image-break .overlay {
    padding: 1.5rem 1.5rem;
  }

  .image-break .overlay blockquote cite {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  /* Hotel */
  .hotel-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 0.5rem;
  }

  .hotel-gallery .img-wrap:first-child {
    grid-row: auto;
  }

  .hotel-gallery .img-wrap {
    height: 220px;
  }

  .hotel-features {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .hotel-feature {
    padding: 1.5rem 0.75rem;
  }

  .hotel-feature .icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }

  .hotel-feature h4 {
    font-size: 0.7rem;
  }

  .hotel-feature p {
    font-size: 0.9rem;
  }

  /* Itinerary */
  .day-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .day-number { font-size: 3rem; }

  .day-info h3 {
    font-size: 1.5rem;
  }

  .day-block + .day-block {
    margin-top: 3rem;
    padding-top: 3rem;
  }

  .timeline {
    padding-left: 2.5rem;
  }

  .timeline-item::before {
    left: -2.5rem;
    width: 12px;
    height: 12px;
  }

  .timeline-title {
    font-size: 1.15rem;
  }

  .timeline-desc {
    font-size: 1rem;
  }

  .timeline-desc .timeline-img {
    width: 40%;
    max-width: 200px;
  }

  .day-image {
    max-height: 350px;
    margin-top: 2rem;
  }

  /* Budget */
  .budget-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.25rem 0;
  }

  .budget-category {
    font-size: 0.85rem;
  }

  .budget-amount {
    font-size: 1.2rem;
  }

  .budget-total {
    flex-direction: row;
  }

  .budget-total .budget-amount {
    font-size: 1.8rem;
  }

  /* Footer */
  .footer {
    height: 40vh;
    min-height: 280px;
  }

  .footer-content p {
    font-size: 0.7rem;
    letter-spacing: 3px;
  }

  /* Flights */
  .flights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .flights-image {
    max-width: 600px;
  }

  .flight-card {
    padding: 1.25rem 1.5rem;
  }

  .flight-code {
    font-size: 1.3rem;
  }

  .flight-time {
    font-size: 1.1rem;
  }

  .flight-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ── Small phones (≤ 480px) ── */
@media (max-width: 480px) {
  section { padding: 2.5rem 1rem; }

  /* Hero */
  .hero {
    min-height: 420px;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.6rem;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
  }

  .hero-dates {
    font-size: 1rem;
  }

  /* Section headings */
  .section-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  /* Overview */
  .overview-image {
    max-height: 250px;
  }

  .detail-card {
    padding: 1rem 1.25rem;
  }

  .detail-card h3 {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .detail-card p {
    font-size: 1rem;
  }

  .detail-card .small {
    font-size: 0.8rem;
  }

  /* Image breaks */
  .image-break {
    height: 35vh;
    min-height: 220px;
  }

  .image-break .overlay {
    padding: 1.25rem;
  }

  /* Hotel */
  .hotel-gallery .img-wrap {
    height: 180px;
  }

  .hotel-features {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hotel-feature {
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
  }

  .hotel-feature .icon {
    font-size: 1.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .hotel-feature h4 {
    margin-bottom: 0.25rem;
  }

  /* Itinerary */
  .day-number {
    font-size: 2.5rem;
  }

  .day-info h3 {
    font-size: 1.3rem;
  }

  .day-info .date {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .timeline {
    padding-left: 2rem;
  }

  .timeline-item::before {
    left: -2rem;
    width: 10px;
    height: 10px;
    transform: translateX(calc(-50% + 5px));
  }

  .timeline::before {
    left: 5px;
  }

  .timeline-item {
    padding-bottom: 2rem;
  }

  .timeline-time {
    font-size: 0.65rem;
  }

  .timeline-title {
    font-size: 1.05rem;
  }

  .timeline-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Timeline images go full-width on small phones */
  .timeline-desc .timeline-img {
    float: none;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 0.75rem 0;
    border-radius: 8px;
  }

  .day-image {
    max-height: 250px;
    aspect-ratio: 16/9;
    margin-top: 1.5rem;
  }

  .day-block + .day-block {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }

  /* Budget */
  .budget-table {
    margin-top: 2rem;
  }

  .budget-category {
    font-size: 0.8rem;
  }

  .budget-amount {
    font-size: 1.1rem;
  }

  .budget-total .budget-category {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .budget-total .budget-amount {
    font-size: 1.5rem;
  }

  .budget-note {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    height: 35vh;
    min-height: 220px;
  }

  .footer-content h2 {
    padding: 0 1rem;
  }

  .footer-content p {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  /* Flights */
  .flight-card {
    padding: 1rem 1.25rem;
  }

  .flight-code {
    font-size: 1.2rem;
  }

  .flight-city {
    font-size: 0.55rem;
  }

  .flight-time {
    font-size: 1rem;
  }

  .flight-arrow {
    min-width: 60px;
  }

  .flight-duration {
    font-size: 0.55rem;
  }

  .flight-price {
    font-size: 1.3rem !important;
  }
}
