/* ============================================
   Destrehan.com - Louisiana Plantation Travel Guide
   Color Palette: Deep Plantation Green, Antique Gold, Warm Ivory
   ============================================ */

:root {
  --primary: #2d5a27;
  --primary-dark: #1a3a16;
  --primary-light: #4a8a42;
  --accent: #b8860b;
  --accent-light: #d4a017;
  --text-dark: #2c1810;
  --text-medium: #5a3e2b;
  --text-light: #8b6914;
  --bg-light: #faf6f0;
  --bg-cream: #f5ede0;
  --bg-white: #ffffff;
  --border: #d4c4a8;
  --shadow: rgba(44, 24, 16, 0.15);
  --highlight-bg: #f0f7ee;
}

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

body {
  font-family: 'Inter', 'Georgia', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  color: var(--primary-dark);
  line-height: 1.3;
}

h2 { font-size: 2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.4rem; margin-bottom: 1rem; }

p { margin-bottom: 1rem; color: var(--text-medium); font-size: 1rem; }

a { color: var(--primary); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============================================
   HEADER
   ============================================ */

.header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar { padding: 0; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
}

.nav-logo h1 { font-size: 1.6rem; font-weight: 700; }
.nav-logo h1 a { color: var(--primary-dark); text-decoration: none; }
.nav-logo h1 a:hover { color: var(--accent); }

.nav-menu { display: flex; list-style: none; gap: 0; }

.nav-menu li a {
  display: block;
  padding: 8px 13px;
  color: var(--text-dark);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background: var(--primary);
  color: white;
}

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background: var(--primary-dark); border-radius: 3px; transition: all 0.3s; }

/* ============================================
   PROMO BANNER (MUST DO STRIP)
   ============================================ */

.promo-banner {
  background: linear-gradient(135deg, #1a3a16 0%, #2d5a27 60%, #3d7035 100%);
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 68px;
}

.must-do-badge {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.promo-text {
  color: #f0e8d0;
  font-size: 0.93rem;
  font-weight: 500;
  text-align: center;
}

.promo-btn {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.8);
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 0.83rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.promo-btn:hover {
  background: white;
  color: var(--primary-dark);
  border-color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
}

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

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

.hero-text h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #f0e8d0;
  margin-bottom: 1.5rem;
  font-style: italic;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 2rem;
  background: rgba(0,0,0,0.3);
  padding: 1.2rem 2rem;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45,90,39,0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-dark);
}

.btn-gold {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn-gold:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: white;
  transform: translateY(-2px);
}

.btn-small { padding: 8px 16px; font-size: 0.85rem; }

/* ============================================
   LOCAL INFO / WEATHER
   ============================================ */

.local-info {
  padding: 3rem 0;
  background: linear-gradient(135deg, #e8f0e5 0%, #d4e8d0 100%);
}

.local-info h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow);
}

.info-icon { font-size: 2.5rem; min-width: 60px; text-align: center; }

.info-content h3 {
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}

.info-content p {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.info-content span { font-size: 0.85rem; color: #666; font-weight: 500; }

.timezone, .day-of-week {
  background: #d4e8d0;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  color: var(--primary);
  font-weight: 600;
}

.temperature {
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem !important;
}

.temp-range { color: var(--primary) !important; font-size: 1.3rem !important; }

.weekly-forecast {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 25px var(--shadow);
  border: 1px solid var(--border);
}

.weekly-forecast h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.forecast-item {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 12px;
  background: #f8fafc;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.forecast-item:hover {
  background: #d4e8d0;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.forecast-day { font-size: 0.8rem; color: #666; font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; }
.forecast-icon { font-size: 2rem; margin: 0.5rem 0; }
.forecast-temps { display: flex; justify-content: center; gap: 0.5rem; font-weight: 600; }
.forecast-temps .high { color: var(--primary); font-size: 1.1rem; }
.forecast-temps .low { color: #666; font-size: 0.9rem; }

@keyframes weatherPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.weather-icon { animation: weatherPulse 3s ease-in-out infinite; }

/* ============================================
   LOCATION MAP
   ============================================ */

.location-map { padding: 4rem 0; }

.location-map h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.map-info h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary-dark); }
.map-info p { margin-bottom: 1.5rem; line-height: 1.8; }

.travel-times h4 { color: var(--primary-dark); margin-bottom: 1rem; }
.travel-times ul { list-style: none; }
.travel-times li { padding: 0.5rem 0; border-bottom: 1px solid var(--border); }

.map-placeholder { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px var(--shadow); }

/* ============================================
   MAIN ATTRACTIONS
   ============================================ */

.main-attractions { padding: 4rem 0; background: var(--bg-light); }

.main-attractions h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.attraction-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow);
}

.attraction-card img { width: 100%; height: 200px; object-fit: cover; }

.card-content { padding: 1.5rem; }
.card-content h3 { font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--primary-dark); }
.card-content p { margin-bottom: 1rem; line-height: 1.7; color: var(--text-medium); font-size: 0.95rem; }

.tour-details { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }

.price {
  background: var(--highlight-bg);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* ============================================
   FEATURED ACTIVITIES
   ============================================ */

.featured-activities { padding: 4rem 0; }
.content-section + .featured-activities { padding-top: 0; }

.featured-activities h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.activity-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s ease;
  border: 1px solid var(--border);
}

.activity-item:hover { transform: translateY(-3px); }
.activity-item h3 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--primary-dark); }
.activity-item p { color: var(--text-medium); line-height: 1.7; }

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 { font-size: 2.5rem; margin-bottom: 1rem; color: white; }
.cta-section p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; color: rgba(255,255,255,0.9); }

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
  color: var(--accent-light);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section ul li a { color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: color 0.3s; }
.footer-section ul li a:hover { color: var(--accent-light); }
.footer-section p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 0.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin: 0; }

.our-network-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; justify-content: center; }
.our-network-links a { color: var(--accent-light); font-size: 0.9rem; font-weight: 500; transition: color 0.3s; }
.our-network-links a:hover { color: white; }

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-header h1 { font-size: 3rem; margin-bottom: 1rem; color: white; }
.page-header p { font-size: 1.2rem; opacity: 0.9; color: rgba(255,255,255,0.9); }

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section { padding: 4rem 0; }

.content-section h2 { font-size: 2rem; margin-bottom: 2rem; color: var(--primary-dark); }
.content-section h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--primary-dark); }
.content-section p { margin-bottom: 1.5rem; line-height: 1.8; }

/* ============================================
   AFFILIATE BOX
   ============================================ */

.affiliate-box {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.affiliate-box h3 { color: var(--primary-dark); margin-bottom: 1rem; }
.affiliate-box p { font-size: 0.9rem; color: var(--text-medium); margin-bottom: 1rem; }
.affiliate-box .btn { margin: 0.5rem; }

/* ============================================
   HIGHLIGHT BOX
   ============================================ */

.highlight-box {
  background: var(--highlight-bg);
  border: 1px solid #c8dfc4;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
}

.highlight-box h3 { color: var(--primary-dark); margin-bottom: 0.8rem; }
.highlight-box p { color: var(--text-medium); margin: 0; }

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 4px 15px var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.comparison-table th, .comparison-table td {
  padding: 1.2rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--primary-dark);
  color: white;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.comparison-table tr:hover { background: var(--bg-light); }
.comparison-table tr:last-child td { border-bottom: none; }

.glacier-name { font-weight: 600; color: var(--primary-dark); background: var(--bg-cream); }
.highlight-row { background: var(--highlight-bg); font-weight: 600; color: var(--primary-dark); }

/* ============================================
   IMAGE GALLERY
   ============================================ */

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.image-gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; }

/* ============================================
   WIDGET CONTAINERS
   ============================================ */

.widget-separator { height: 2px; margin: 20px 0; }
.widget-separator.top {
  margin-bottom: 30px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.getyourguide-widget-container, .viator-widget-container {
  margin: 40px 0;
  padding: 0 20px;
}

.travel-widget-container { margin-top: 40px; padding-top: 30px; }

/* ============================================
   HISTORY TIMELINE
   ============================================ */

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

.history-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.3rem;
  top: 0.4rem;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 0.3rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 860px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 68px;
    flex-direction: column;
    background: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px var(--shadow);
    padding: 2rem 0;
    z-index: 999;
  }
  .nav-menu.active { left: 0; }
  .hamburger { display: flex; }
  .hero-text h1 { font-size: 2.5rem; }
  .hero-text h2 { font-size: 1.3rem; }
  .hero-text p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .map-container { grid-template-columns: 1fr; gap: 2rem; }
  .attractions-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .info-grid { grid-template-columns: 1fr; gap: 1rem; }
  .forecast-grid { grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }
  .promo-banner { flex-direction: column; text-align: center; gap: 10px; padding: 14px 16px; }
  .promo-text { font-size: 0.85rem; }
}

@media (max-width: 620px) {
  .container { padding: 0 15px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-text h2 { font-size: 1.1rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .forecast-grid { grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: 0.5rem; }
}

@media (max-width: 400px) {
  .hero-text h1 { font-size: 1.8rem; }
  .nav-logo h1 { font-size: 1.3rem; }
  .btn { padding: 10px 18px; font-size: 0.9rem; }
}
