/* ============================================
   Lake Michigan Adventures - Main Stylesheet
   Theme: Dusty Rose / Soft Warm Palette
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --rose: #e8b4b8;
  --rose-light: #f5d5d8;
  --rose-dark: #d4969b;
  --burgundy: #664346;
  --burgundy-light: #7d5558;
  --cream: #fef9f8;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #eeeeee;
  --gray-600: #666666;
  --gray-800: #333333;
  --black: #000000;
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
}

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--rose-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.3;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

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

/* ---------- Header & Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--burgundy);
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--burgundy);
  cursor: pointer;
  padding: 4px 8px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: #e0f5f8;
  color: #29B6CC;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' \25BE';
  font-size: 0.7rem;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 100;
}

.dropdown-menu a {
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: #e0f5f8;
  color: #29B6CC;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 16px;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    padding: 12px 16px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 16px;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--rose-dark) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(102, 67, 70, 0.55);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 24px;
}

.hero-small {
  min-height: 300px;
}

.hero-small h1 {
  font-size: 2.4rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background: #1fa3b8;
  border-color: #1fa3b8;
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--white);
  color: #29B6CC;
}

.btn-burgundy {
  background: #29B6CC;
  color: var(--white);
  border-color: #29B6CC;
}

.btn-burgundy:hover {
  background: #1fa3b8;
  border-color: #1fa3b8;
}

/* ---------- Section Styles ---------- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--cream);
}

.section-rose {
  background: linear-gradient(135deg, var(--rose-light), var(--cream));
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  margin-bottom: 8px;
}

.card-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.card-body .btn {
  margin-top: 12px;
}

/* ---------- Split Section (text + image side-by-side) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.split-text h2 {
  margin-bottom: 16px;
}

.split-text p {
  color: var(--gray-600);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ---------- Features / Perks List ---------- */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.perk-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.perk-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  font-size: 1.2rem;
}

.perk-item h4 {
  margin-bottom: 4px;
}

.perk-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* ---------- Activity Tiles ---------- */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.activity-tile {
  text-align: center;
  padding: 30px 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.activity-tile:hover {
  transform: translateY(-3px);
}

.activity-tile .tile-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.activity-tile h4 {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Contact Form ---------- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--burgundy);
  font-family: var(--font-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rose);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---------- Links List ---------- */
.links-list {
  list-style: none;
}

.links-list li {
  margin-bottom: 12px;
}

.links-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 600;
  transition: all var(--transition);
}

.links-list a:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
  background: var(--rose-light);
}

.links-list .link-arrow {
  margin-left: auto;
  color: var(--rose-dark);
}

/* ---------- Gift Cards ---------- */
.gift-card-item {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gift-card-item .gift-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.gift-card-item h3 {
  margin-bottom: 12px;
}

.gift-card-item p {
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--burgundy);
  color: var(--white);
  padding: 48px 0 24px;
}

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

.footer-col h4 {
  color: var(--rose-light);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--rose-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--rose);
  color: var(--burgundy);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
