/* ==========================================================================
   Design System & Variable Declarations
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&family=Outfit:wght@300;400;600;700&display=swap');

:root {
  /* Color Palette (Watermelon Red & Green Theme - Fresh, Rustic, Trustworthy) */
  --wm-green-dark: hsl(150, 45%, 15%);     /* Deep Forest Green (Trustworthy, Land) */
  --wm-green-mid: hsl(152, 40%, 30%);      /* Organic Leaf Green (Rustic) */
  --wm-green-light: hsl(148, 30%, 93%);    /* Fresh Melon Flesh Background (Light Green) */
  --wm-green-soft: hsl(152, 35%, 88%);     /* Soft Accent Green */
  
  --wm-red-mid: hsl(355, 75%, 58%);        /* Watermelon Crimson Red (Festive, Energetic) */
  --wm-red-dark: hsl(355, 68%, 45%);       /* Dark Red for hover states */
  --wm-red-light: hsl(355, 100%, 97%);     /* Very Light Crimson */
  --wm-red-accent: hsl(355, 80%, 65%);     /* Vibrant Accent Red */

  --bg-warm: hsl(36, 30%, 98%);            /* Warm Sandy Soil (Rustic base background) */
  --text-dark: hsl(150, 35%, 12%);         /* Dark Slate Green (High readability text) */
  --text-muted: hsl(150, 15%, 45%);        /* Muted Greenish Grey */
  --white: #ffffff;
  
  /* Layout & Spacing */
  --max-width: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  /* Typography */
  --font-primary: 'Noto Sans TC', sans-serif;
  --font-display: 'Outfit', 'Noto Sans TC', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(29, 74, 52, 0.05), 0 2px 4px -1px rgba(29, 74, 52, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(29, 74, 52, 0.08), 0 4px 6px -2px rgba(29, 74, 52, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(29, 74, 52, 0.12), 0 10px 10px -5px rgba(29, 74, 52, 0.06);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-warm);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--wm-green-dark);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-warm);
}
::-webkit-scrollbar-thumb {
  background: var(--wm-green-mid);
  border-radius: 5px;
  border: 2px solid var(--bg-warm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--wm-green-dark);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(60, 133, 90, 0.1);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(250, 248, 245, 0.95);
  height: 70px;
}

.nav-container {
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--wm-green-dark);
  font-family: var(--font-display);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--wm-green-mid), var(--wm-red-mid));
  border-radius: 50% 50% 50% 0; /* Seed shape */
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.5rem 0;
  color: var(--wm-green-dark);
  opacity: 0.85;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--wm-red-mid);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  opacity: 1;
  color: var(--wm-red-mid);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle Button (hidden on desktop) */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--wm-green-dark);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 6rem;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90vh;
  background: radial-gradient(circle at 80% 20%, var(--wm-green-light) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, var(--wm-red-light) 0%, transparent 50%);
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--wm-green-soft);
  color: var(--wm-green-dark);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(60, 133, 90, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--wm-red-mid);
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
}

.text-gradient-red {
  background: linear-gradient(135deg, var(--wm-red-mid), var(--wm-red-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--wm-green-mid), var(--wm-green-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--wm-red-mid);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(230, 92, 92, 0.35);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background-color: var(--wm-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 92, 92, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--wm-green-dark);
  border: 2px solid var(--wm-green-mid);
}

.btn-secondary:hover {
  background-color: var(--wm-green-soft);
  color: var(--wm-green-dark);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-image-container {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  transition: var(--transition-slow);
}

.hero-image-container:hover {
  transform: scale(1.02) translateY(-4px);
}

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

.hero-bg-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px dashed var(--wm-green-mid);
  border-radius: var(--radius-lg);
  z-index: 1;
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-alt {
  background-color: var(--wm-green-light);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem auto;
}

.section-subtitle {
  color: var(--wm-red-mid);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  position: relative;
  padding-bottom: 1.25rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--wm-red-mid);
  border-radius: 2px;
}

/* ==========================================================================
   Geographic Location Section
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.location-headline {
  font-size: 1.8rem;
  color: var(--wm-green-dark);
}

.location-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.location-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border: 1px solid rgba(60, 133, 90, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wm-red-mid);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.detail-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.detail-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Map Card */
.map-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(60, 133, 90, 0.08);
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--wm-green-mid), var(--wm-red-mid));
}

.map-placeholder {
  width: 100%;
  height: 280px;
  background-color: var(--wm-green-light);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(60, 133, 90, 0.15);
}

/* Artistic Map Representation */
.artistic-map {
  width: 100%;
  height: 100%;
  position: relative;
  background: radial-gradient(circle at 40% 70%, #d8efdf 20%, #eefbf4 60%);
}

.sea-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(circle at -20% 50%, #bde7f7 30%, #e1f4fc 80%);
  border-right: 2px dashed rgba(60, 133, 90, 0.2);
}

.coastline-wave {
  position: absolute;
  left: 42%;
  top: 0;
  width: 20px;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, transparent 60%, rgba(255, 255, 255, 0.8) 70%);
}

.river-path {
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 100px;
  height: 150px;
  border-top-right-radius: 80px;
  border-right: 18px solid #bde7f7;
  border-top: 18px solid #bde7f7;
  transform: rotate(-10deg);
}

.map-pin {
  position: absolute;
  left: 62%;
  top: 45%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  cursor: pointer;
  animation: float 2.5s ease-in-out infinite;
}

.pin-shadow {
  width: 16px;
  height: 6px;
  background: rgba(29, 74, 52, 0.2);
  border-radius: 50%;
  margin-top: 2px;
}

.map-label {
  position: absolute;
  left: 65%;
  top: 58%;
  background-color: var(--wm-green-dark);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.map-label::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent var(--wm-green-dark) transparent;
}

.map-label-miaoli {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 0.75rem;
  color: var(--wm-green-mid);
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(60, 133, 90, 0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.location-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.meta-item {
  border-left: 3px solid var(--wm-green-mid);
  padding-left: 0.75rem;
}

.meta-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--wm-red-mid);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wm-green-dark);
}

/* ==========================================================================
   Three Cultural Features Section
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(60, 133, 90, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-normal);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(60, 133, 90, 0.15);
}

.feature-img-box {
  height: 220px;
  position: relative;
  overflow: hidden;
}

/* SVG Decorative patterns replacing blank placeholder images */
.pattern-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pattern-qianti {
  background: linear-gradient(135deg, hsl(355, 60%, 55%), hsl(15, 75%, 55%));
}

.pattern-weaving {
  background: linear-gradient(135deg, hsl(152, 35%, 45%), hsl(140, 25%, 60%));
  background-image: radial-gradient(hsl(140, 20%, 50%) 15%, transparent 20%),
                    radial-gradient(hsl(140, 20%, 50%) 15%, transparent 20%);
  background-size: 16px 16px;
  background-position: 0 0, 8px 8px;
}

.pattern-stone-weir {
  background: linear-gradient(135deg, hsl(195, 65%, 40%), hsl(152, 45%, 35%));
}

.card-num {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--wm-green-dark);
  font-size: 1.1rem;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

.card-icon-main {
  color: var(--white);
  transition: var(--transition-normal);
}

.feature-card:hover .card-icon-main {
  transform: scale(1.15) rotate(5deg);
}

.feature-body {
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.feature-card-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--wm-red-mid);
  transition: var(--transition-fast);
}

.feature-card:hover .feature-card-title::after {
  width: 60px;
}

.feature-card-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.tag {
  background-color: var(--wm-green-light);
  color: var(--wm-green-mid);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.tag-red {
  background-color: var(--wm-red-light);
  color: var(--wm-red-mid);
}

/* ==========================================================================
   Details / Focus Section (Story Section)
   ========================================================================== */
.story-box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(60, 133, 90, 0.05);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-visual {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.story-patterns {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, var(--wm-green-soft) 20%, var(--wm-green-light) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.weaving-mesh {
  position: absolute;
  width: 120%;
  height: 120%;
  border: 1px dashed rgba(60, 133, 90, 0.25);
  transform: rotate(15deg);
  background-image: linear-gradient(rgba(60, 133, 90, 0.1) 2px, transparent 2px),
                    linear-gradient(90deg, rgba(60, 133, 90, 0.1) 2px, transparent 2px);
  background-size: 40px 40px;
}

.story-illus-center {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(60, 133, 90, 0.1);
  max-width: 280px;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-title {
  font-size: 2rem;
  color: var(--wm-green-dark);
}

.story-text {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Call to action banner */
.action-banner {
  background: linear-gradient(135deg, var(--wm-green-dark) 0%, var(--wm-green-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.action-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(230, 92, 92, 0.15);
  filter: blur(40px);
}

.action-banner h3 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.action-banner p {
  color: var(--wm-green-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  opacity: 0.9;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--wm-green-dark);
  color: var(--white);
  padding: 5rem 0 2.5rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-size: 1.4rem;
  font-family: var(--font-display);
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--white), var(--wm-red-mid));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  font-family: var(--font-display);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--wm-red-mid);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--wm-red-mid);
  padding-left: 4px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 2rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes pulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(230, 92, 92, 0.5);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(230, 92, 92, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(230, 92, 92, 0);
  }
}

@keyframes float {
  0% {
    transform: translate(-50%, -46%) translateY(0px);
  }
  50% {
    transform: translate(-50%, -54%) translateY(-6px);
  }
  100% {
    transform: translate(-50%, -46%) translateY(0px);
  }
}

/* ==========================================================================
   Responsive Design Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    gap: 2.5rem;
  }
  .features-grid {
    gap: 1.5rem;
  }
  .location-grid {
    gap: 2.5rem;
  }
  .story-box {
    gap: 2.5rem;
    padding: 3rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 2rem;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-group {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .hero-image {
    height: 380px;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .story-box {
    grid-template-columns: 1fr;
    padding: 2.5rem;
  }
  
  .story-visual {
    height: 300px;
    order: 2;
  }
  
  .story-content {
    order: 1;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .location-meta-grid {
    grid-template-columns: 1fr;
  }
  
  .story-box {
    padding: 1.5rem;
  }
  
  .action-banner {
    padding: 2.5rem 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
