/* ===============================
   ROOT VARIABLES
================================ */
:root {
  --primary: #8B2C2A;
  --background: #efe7dd;
  --accent: #FCAC45;
  --dark: #1b1a1a;
  --divider: #a99684;
  --white: #ffffff;
}

/* ===============================
   GLOBAL RESET
================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--background);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===============================
   GENERAL SECTION STYLING
================================ */
section {
  padding: 80px 20px;
}

section h2 {
  font-family: 'Roxborough CF', serif;
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 40px;
  text-align: left;
}

.section-header h2 {
  font-family: 'Roxborough CF', serif;
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 17px;
  color: var(--dark);
  line-height: 1.7;
}

/* ===============================
   NAVIGATION BAR
================================ */
#menu {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--background);
  border-bottom: 1px solid var(--divider);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar-brand {
  text-decoration: none;
}

.brand-wrapper {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-right: 10px;
}

.brand-title {
  font-family: 'Roxborough CF', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar-nav li {
  position: relative;
  padding: 0 15px;
}

.navbar-nav li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--divider);
}

.navbar-nav a {
  font-family: 'Roxborough CF', serif;
  font-size: 18px;
  color: var(--primary);
  transition: color 0.3s ease;
}

.navbar-nav a:hover {
  color: var(--dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px 0;
  background: var(--primary);
  transition: 0.3s ease;
}

/* ===============================
   HERO SECTION
================================ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    rgba(253, 248, 243, 0.9),
    rgba(229, 215, 196, 0.85)
  );
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 620px;
  text-align: left;
}

.hero-eyebrow {
  display: block;
  font-family: 'Roxborough CF', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #dd9e4b;
  margin-bottom: 8px;
}

.hero-text h1 {
  font-family: 'Roxborough CF', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-text p {
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 35px;
  color: var(--dark);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===============================
   BUTTONS
================================ */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-packages {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  padding: 14px 36px;
  font-size: 12px;
}

.btn-packages:hover {
  background: var(--primary);
  color: var(--white);
  border-color: #f8f8f8;
}

.btn-itinerary {
  background: transparent;
  color: #996463;
  border-color: #dd9e4b;
  padding: 14px 36px;
  font-size: 12px;
}

.btn-itinerary:hover {
  background: #dd9e4b;
  color: var(--white);
  border-color: #dd9e4b;
}

/* ===============================
   HERO FEATURE CARD
================================ */
.hero-features {
  width: 100%;
}

.feature-item {
  background: rgba(255, 255, 255, 0.75);
  width: 100%;
  max-width: 520px;
  min-height: 320px;
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--dark);
}

.feature-text-block {
  flex-direction: column;
  align-items: flex-start;
}

.feature-titles {
  display: inline-block;
  font-family: 'Roxborough CF', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: #8B2C2A;
  border: 2px solid #8B2C2A;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.feature-title {
  font-family: 'Roxborough CF', serif;
  font-size: 20px;
  font-weight: 700;
  color: #b95009;
  margin-bottom: 14px;
}

.feature-paragraph {
  font-family: 'Roxborough CF', serif;
  text-align: justify;
  line-height: 1.6;
  margin: 0;
}

.feature-paragraph.primary {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
}

.feature-paragraph.secondary {
  font-size: 15px;
  font-weight: 400;
  color: #3b3b3b;
}

/* ===============================
   ABOUT / SERVICES SECTION
================================ */
.services-section {
  text-align: left;
  max-width: 1200px;
  margin: auto;
}

.services-section h2 {
  text-align: left;
  margin-bottom: 10px;
}

.about-text {
  display: block;
  text-align: left;
  max-width: 720px;
  margin: 0 0 40px 0;
  font-family: 'Roxborough CF', serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
}

.services-grid {
  font-family: 'Roxborough CF', serif;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  font-family: 'Roxborough CF', serif;
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  text-align: left;
  margin: 0 0 10px 0;
  font-family: 'Roxborough CF', serif;
  color: var(--primary);
}

.service-card p {
  text-align: left;
  font-size: 15px;
  line-height: 1.7;
}

/* ===============================
   PACKAGES / OUR OFFERS
================================ */
.packages-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: left;
  background: transparent;
}

.packages-title {
  text-align: left;
  margin-bottom: 8px;
}

.packages-intro {
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.7;
  text-align: left;
  font-size: 17px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.package-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  text-align: left;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.image-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.package-image {
  width: 100%;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.package-content {
  padding: 20px 18px 26px;
}

.package-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: #8B2C2A;
  color: #ffffff;
  font-weight: 700;
  font-family: 'Roxborough CF', serif;
  margin-bottom: 6px;
}

.package-subtitle {
  font-family: 'Roxborough CF', serif;
  margin: 4px 0 6px;
  color: var(--primary);
  font-size: 22px;
  line-height: 1.3;
}

.package-description {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 6px;
  color: var(--dark);
}

@media (min-width: 1024px) {
  .package-image img {
    height: 360px;
  }
}
/* ===============================
   EXPERIENCES (BALANCED SIZE)
================================ */
.experiences-section {
  padding: 70px 20px; /* slightly reduced */
}

.experiences-container {
  max-width: 1150px; /* slightly tighter */
  margin: auto;
}

#experiences .section-header {
  text-align: left;
  margin-bottom: 35px;
  max-width: 680px;
}

/* ===============================
   GRID (KEEP 2 — PREMIUM LOOK)
================================ */
.experiences-grid {
  max-width: 1150px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px; /* slightly tighter */
}

/* ===============================
   CARD
================================ */
.experience-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
}

/* ===============================
   IMAGE — 30% SMALLER
================================ */
.image-experience {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  height: 420px; 
}

.image-experience img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.image-experience::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  z-index: 1;
}

/* ===============================
   TEXT OVERLAY — SLIGHTLY SMALLER
================================ */
.experience-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 18px; /* reduced from 22 */
  color: #ffffff;
  z-index: 2;
}

.experience-overlay h3 {
  font-family: 'Roxborough CF', serif;
  font-size: 18px; /* slightly smaller */
  margin-bottom: 6px;
  color: #ffffff;
}

.experience-overlay p {
  font-size: 13.5px; /* slightly smaller */
  line-height: 1.4;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 1024px) {
  .image-experience {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .image-experience {
    height: 200px;
  }

  .experience-overlay h3 {
    font-size: 17px;
  }

  .experience-overlay p {
    font-size: 13px;
  }
}
/* ===============================
   SAMPLE TRAVEL PACKAGES (UPDATED)
================================ */
#sample-packages {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: left;
}

/* Header */
#sample-packages .section-header {
  text-align: left;
  max-width: 720px;
  margin-top: 0;
}

/* ===============================
   GRID — 3 x 2 LAYOUT
================================ */
.itineraries {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px;
}

/* ===============================
   CARD — COMPACT & BALANCED
================================ */
.package {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  padding: 20px; 
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.25s ease;
  text-align: left;
}

.package:hover {
  transform: translateY(-4px);
}

/* ===============================
   TITLE BADGE
================================ */
.package h2 {
  display: inline-block;
  font-family: 'Roxborough CF', serif;
  font-size: 15px; 
  font-weight: 700;
  color: #ffffff;
  background: #8B2C2A;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ===============================
   SUBTITLE (ITINERARY)
================================ */
.package h3 {
  font-family: 'Roxborough CF', serif;
  color: var(--primary);
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 15px;
}

/* ===============================
   TEXT — COMPACT
================================ */
.package p {
  line-height: 1.5;
  font-size: 13.5px;
  color: var(--dark);
  margin-bottom: 6px;
}

.package p strong,
.package > p strong {
  color: var(--primary);
}

/* ===============================
   OPTIONAL — LIMIT TEXT HEIGHT
   (keeps cards equal height)
================================ */
.package p {
  display: -webkit-box;
  -webkit-line-clamp: 4; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 1024px) {
  .itineraries {
    grid-template-columns: repeat(2, 1fr); /* 2 across */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .itineraries {
    grid-template-columns: 1fr; /* 1 column */
  }

  .package {
    padding: 18px;
  }

  .package h2 {
    font-size: 14px;
  }

  .package h3 {
    font-size: 14px;
  }

  .package p {
    font-size: 13px;
  }
}

/* ===============================
   DESTINATION HIGHLIGHTS (UPDATED)
================================ */
.destination-section {
  padding: 90px 20px;
  background: #efe7dd;
}

.destination-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
#destination-highlights .section-header {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  text-align: left;
}

#destination-highlights .section-header h2 {
  font-family: 'Roxborough CF', serif;
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 12px;
}

#destination-highlights .section-header p {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
}

/* GRID */
.destination-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.destination-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

/* IMAGE — BIGGER */
.destination-image {
  width: 100%;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 320px;       
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CONTENT — PUSHED DOWN */
.destination-content {
  padding: 26px 24px 30px;
  text-align: left;
}

/* TITLE */
.destination-content h3 {
  font-family: 'Roxborough CF', serif;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.3;
}

/* DESCRIPTION (less dominant) */
.destination-content p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 14px;
}

/* BUTTON */
.destination-badge {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: 'Roxborough CF', serif;
  font-size: 12px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all 0.25s ease;
}

.destination-badge:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* DESKTOP — EVEN BIGGER */
@media (min-width: 1024px) {
  .destination-image img {
    height: 380px;  
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-image img {
    height: 300px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .destination-image img {
    height: 240px;
  }

  .destination-content {
    padding: 20px;
  }

  .destination-content h3 {
    font-size: 20px;
  }

  .destination-content p {
    font-size: 14px;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  .destination-image img {
    height: 220px;
  }
}

/* ===============================
   CONTACT & BOOKINGS
================================ */
.contact-booking-section {
  padding: 80px 20px;
  background: linear-gradient(
    to bottom,
    rgba(239, 231, 221, 0.95),
    rgba(210, 199, 187, 0.95)
  );
}

.section-header.left {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: left;
  padding: 0 20px;
}

.section-header.left p {
  max-width: 720px;
  text-align: justify;
  line-height: 1.7;
}

.contact-booking-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.info-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.info-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6f2322;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-box h3 {
  font-family: 'Roxborough CF', serif;
  font-size: 22px;
  color: #6f2322;
}

.info-details p {
  margin-bottom: 14px;
  font-size: 15px;
  text-align: left;
}

.info-details i {
  color: var(--primary);
  margin-right: 8px;
}

.info-text {
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: auto; 
  text-align: justify;
  color: rgba(0, 0, 0, 0.7);
}

.intro-text {
  margin-top: 0;
  margin-bottom: 10px;
}

/* ===============================
   BOOKING FORM
================================ */
.booking-form {
  margin-top: 10px;
}

.form-label {
  display: inline-block;
  font-family: 'Roxborough CF', serif;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  background: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  margin-top: 12px;
  margin-bottom: 6px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 2px solid #000000;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.btn-submit {
  margin-top: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Roxborough CF', serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-submit:hover {
  background: #6f2322;
}

/* ===============================
   FOOTER
================================ */
#footer {
  background: #d2c7bb;
  padding: 20px 0;
}

#footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer p {
  font-size: 12px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  color: #8c8c8c;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
}

/* ===============================
   RESPONSIVE - LARGE TABLETS
================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .services-grid,
  .packages-grid,
  .itineraries,
  .destination-grid,
  .contact-booking-container,
  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    max-width: 100%;
  }

  .package-image img {
    height: 300px;
  }
}

/* ===============================
   RESPONSIVE - TABLETS / MOBILE
================================ */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-container {
    padding: 14px 16px;
  }

  .navbar-logo {
    height: 34px;
  }

  .brand-title {
    font-size: 18px;
  }

  .navbar-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--background);
    width: 100%;
    flex-direction: column;
    display: none;
    border-top: 1px solid var(--divider);
    padding: 10px 0;
  }

  .navbar-nav.active {
    display: flex;
  }

  .navbar-nav li {
    padding: 14px 0;
    width: 100%;
    text-align: center;
  }

  .navbar-nav li::after {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 16px;
  }

  .hero-text h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .feature-item {
    min-height: auto;
    padding: 24px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-paragraph.primary,
  .feature-paragraph.secondary {
    font-size: 14px;
  }

  section {
    padding: 60px 16px;
  }

  section h2,
  .section-header h2,
  #destination-highlights .section-header h2 {
    font-size: 28px;
  }

  .about-text,
  .packages-intro,
  .section-header p,
  #destination-highlights .section-header p {
    font-size: 15px;
    max-width: 100%;
  }

  .services-grid,
  .packages-grid,
  .experiences-grid,
  .itineraries,
  .destination-grid,
  .contact-booking-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card,
  .package,
  .info-box,
  .destination-content,
  .package-content {
    padding: 20px;
  }

  .package-image img,
  .destination-image img {
    height: 240px;
  }

  .image-experience,
  .image-experience img {
    min-height: 260px;
  }

  .contact-booking-container,
  .section-header.left {
    padding: 0 16px;
  }

  .booking-form input,
  .booking-form textarea {
    font-size: 16px;
  }

  #footer .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* ===============================
   RESPONSIVE - SMALL PHONES
================================ */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 28px;
  }

  .hero-eyebrow {
    font-size: 11px;
  }

  .btn-packages,
  .btn-itinerary,
  .btn-submit {
    width: 100%;
    padding: 14px 20px;
    font-size: 12px;
  }

  .package h2 {
    font-size: 16px;
  }

  .package h3,
  .destination-content h3 {
    font-size: 18px;
  }

  .package p,
  .destination-content p,
  .info-details p,
  .info-text,
  .package-description {
    font-size: 14px;
  }

  .package-image img {
    height: 220px;
  }

  .package-subtitle {
    font-size: 20px;
  }
}