/* Beaches Close-To-Me - World-Class Premium Design */
/* Version 2.0 - Visual Excellence */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* Premium Ocean Color Palette */
  --ocean-deep: #0a1628;
  --ocean-dark: #0d2137;
  --ocean-mid: #1a4a6e;
  --ocean-light: #2980b9;
  --ocean-bright: #3498db;
  --ocean-glow: #00d4ff;

  /* Sand & Sunset Accents */
  --sand-light: #f5e6d3;
  --sand-warm: #f4d03f;
  --sand-gold: #d4a017;
  --sunset-orange: #ff6b35;
  --sunset-pink: #ff8e72;
  --coral: #ff7f7f;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;

  /* Layout */
  --max-width: 1280px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--ocean-glow);
}

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

/* ==================== */
/* ANIMATED HERO        */
/* ==================== */

@keyframes gradientAnimate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-home {
  position: relative;
  /* Premium Local Gradient - "Ocean Breath" */
  background: linear-gradient(-45deg, var(--ocean-deep), #1e5799, var(--ocean-light), var(--ocean-glow));
  background-size: 400% 400%;
  animation: gradientAnimate 20s ease infinite;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Subtle texture overlay */
  background:
    radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 25%);
  pointer-events: none;
}

.hero-home h1 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 var(--space-lg);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.hero-home p {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-2xl);
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero-home .btn {
  position: relative;
  z-index: 1;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sand-warm) 0%, var(--sand-gold) 100%);
  color: var(--gray-900);
  box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 208, 63, 0.5);
  color: var(--gray-900);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

/* ==================== */
/* STATS BAR            */
/* ==================== */

.stats-bar {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  padding: var(--space-3xl) var(--space-xl);
  background: var(--gray-50);
  flex-wrap: wrap;
}

.stats-bar .stat {
  text-align: center;
  position: relative;
}

.stats-bar .stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--ocean-bright), var(--ocean-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stats-bar .stat-label {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: var(--space-xs);
}

/* ==================== */
/* SEARCH SECTION       */
/* ==================== */

.search-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  padding: var(--space-3xl) var(--space-xl);
}

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

.search-box {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.search-box input {
  flex: 1;
  padding: var(--space-lg) var(--space-xl);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: var(--font-size-lg);
  transition: all var(--transition-fast);
  background: var(--white);
}

.search-box input:focus {
  outline: none;
  border-color: var(--ocean-bright);
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.15);
}

.search-box input::placeholder {
  color: var(--gray-400);
}

.filter-row {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.filter-row select {
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-row select:hover {
  border-color: var(--gray-300);
}

.filter-row select:focus {
  outline: none;
  border-color: var(--ocean-bright);
}

.filter-row label {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-sm);
  color: var(--gray-600);
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.filter-row label:hover {
  border-color: var(--ocean-bright);
  color: var(--ocean-bright);
}

.filter-row input[type="checkbox"] {
  accent-color: var(--ocean-bright);
}

.results-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-height: 400px;
  overflow-y: auto;
  display: none;
}

.results-container.active {
  display: block;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition-fast);
}

.result-item:hover {
  background: var(--gray-50);
}

.result-item:last-child {
  border-bottom: none;
}

/* ==================== */
/* BEACH CARDS          */
/* ==================== */

.beach-grid,
.states-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.beach-card,
.featured-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.beach-card:hover,
.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.beach-card img,
.featured-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.beach-card:hover img,
.featured-card:hover img {
  transform: scale(1.05);
}

.beach-card .no-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--ocean-mid) 0%, var(--ocean-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

.card-content {
  padding: var(--space-lg);
}

.card-content h3 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 var(--space-sm);
  line-height: 1.3;
}

.card-stats {
  display: flex;
  gap: var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--gray-500);
  margin-top: var(--space-sm);
}

/* Featured Card Overlay */
.featured-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: var(--white);
}

.featured-card .card-overlay h3 {
  color: var(--white);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xs);
}

.featured-card .card-overlay p {
  opacity: 0.85;
  margin: 0;
  font-size: var(--font-size-sm);
}

/* State Cards */
.state-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
}

.state-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--ocean-bright);
}

.state-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 var(--space-sm);
}

.state-card .count {
  color: var(--ocean-bright);
  font-weight: 600;
}

/* ==================== */
/* BADGES & TAGS        */
/* ==================== */

.beach-type-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

.badge-sandy {
  background: linear-gradient(135deg, #f4d03f, #d4a017);
}

.badge-rocky {
  background: linear-gradient(135deg, #7f8c8d, #5d6d7e);
}

.badge-pebble {
  background: linear-gradient(135deg, #9b59b6, #7d3c98);
}

.badge-mixed {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

.amenity-tag,
.access-tag,
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 500;
}

.amenity-tag {
  background: var(--gray-100);
  color: var(--gray-700);
}

.access-tag.kid-friendly {
  background: #e3f2fd;
  color: #1565c0;
}

.access-tag.dog-friendly {
  background: #f3e5f5;
  color: #7b1fa2;
}

.access-tag.accessible {
  background: #e8f5e9;
  color: #2e7d32;
}

.tag {
  background: var(--gray-100);
  color: var(--gray-600);
}

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

.featured-beaches,
.state-page,
.states-index,
.content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
}

.featured-beaches h2,
.state-page h2,
section h2 {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: var(--space-xl);
}

.featured-beaches>h2 {
  text-align: center;
}

/* ==================== */
/* BEACH PAGE HERO      */
/* ==================== */

.hero {
  position: relative;
  height: 450px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3xl) var(--space-xl);
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.9));
  color: var(--white);
}

.hero-overlay h1 {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  margin: 0 0 var(--space-sm);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-overlay .location {
  font-size: var(--font-size-lg);
  opacity: 0.9;
  margin: 0 0 var(--space-md);
}

/* ==================== */
/* QUICK STATS          */
/* ==================== */

.quick-stats {
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.stat .stat-value {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--ocean-bright);
  display: block;
}

.stat .stat-label {
  font-size: var(--font-size-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==================== */
/* AMENITIES & ACCESS   */
/* ==================== */

.amenity-grid,
.access-grid,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: #e8f5e9;
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
}

.amenity-icon {
  color: var(--success);
}

/* ==================== */
/* AFFILIATE SECTION    */
/* ==================== */

.plan-your-trip {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
}

.plan-your-trip h2 {
  margin-top: 0;
}

.affiliate-intro {
  color: var(--gray-600);
  margin-bottom: var(--space-xl);
}

.affiliate-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.affiliate-btn {
  display: flex;
  align-items: center;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.affiliate-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.affiliate-btn span {
  display: flex;
  flex-direction: column;
}

.affiliate-btn strong {
  font-size: var(--font-size-base);
  font-weight: 600;
}

.affiliate-btn small {
  opacity: 0.85;
  font-size: var(--font-size-xs);
  margin-top: 2px;
}

.affiliate-btn.lodging {
  background: linear-gradient(135deg, #003580, #0055a5);
}

.affiliate-btn.rentals {
  background: linear-gradient(135deg, #1565c0, #1976d2);
}

.affiliate-btn.experiences {
  background: linear-gradient(135deg, #00695c, #00897b);
}

.affiliate-disclosure {
  font-size: var(--font-size-xs);
  color: var(--gray-500);
  margin-top: var(--space-lg);
}

/* ==================== */
/* MAP SECTION          */
/* ==================== */

.state-map-section {
  margin-bottom: var(--space-3xl);
}

.state-map-section h2 {
  text-align: center;
}

#state-map {
  height: 600px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-bottom: var(--space-lg);
  padding: var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all var(--transition-fast);
}

.filter-btn .color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.filter-btn.sandy {
  background: #f4d03f;
  color: #333;
}

.filter-btn.rocky {
  background: #7f8c8d;
  color: white;
}

.filter-btn.pebble {
  background: #9b59b6;
  color: white;
}

.filter-btn.other {
  background: #3498db;
  color: white;
}

.filter-btn.inactive {
  opacity: 0.3;
}

.filter-btn:hover {
  transform: scale(1.05);
}

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

.site-footer {
  background: var(--ocean-deep);
  color: var(--white);
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  margin-top: var(--space-4xl);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.site-footer a:hover {
  color: var(--ocean-glow);
}

.footer-links {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-sm);
}

.site-footer p {
  margin: var(--space-sm) 0;
  opacity: 0.6;
  font-size: var(--font-size-xs);
}

/* ==================== */
/* ABOUT/TRUST PAGES    */
/* ==================== */

.about-page {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-xl);
}

.about-page h1 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin-bottom: var(--space-xl);
  color: var(--gray-900);
}

.about-page section {
  margin-bottom: var(--space-2xl);
}

.about-page h2 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--space-md);
}

.about-page p,
.about-page li {
  color: var(--gray-600);
  line-height: 1.8;
}

.about-page ul {
  padding-left: var(--space-xl);
}

.about-page li {
  margin-bottom: var(--space-sm);
}

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

@media (max-width: 1024px) {
  .hero-home h1 {
    font-size: var(--font-size-4xl);
  }

  .hero-home {
    min-height: 60vh;
  }

  #state-map {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .site-header nav {
    flex-direction: column;
    text-align: center;
  }

  .site-header .nav-links {
    margin-top: var(--space-sm);
  }

  .hero-home {
    min-height: 50vh;
    padding: var(--space-3xl) var(--space-lg);
  }

  .hero-home h1 {
    font-size: var(--font-size-3xl);
  }

  .hero-home p {
    font-size: var(--font-size-base);
  }

  .hero {
    height: 350px;
  }

  .hero-overlay h1 {
    font-size: var(--font-size-2xl);
  }

  .stats-bar {
    gap: var(--space-xl);
  }

  .stats-bar .stat-number {
    font-size: var(--font-size-2xl);
  }

  #state-map {
    height: 400px;
  }

  .beach-grid,
  .states-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-home h1 {
    font-size: var(--font-size-2xl);
  }

  .stats-bar {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-controls {
    flex-direction: column;
  }

  .filter-btn {
    justify-content: center;
  }
}

/* ==================== */
/* ANIMATIONS           */
/* ==================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-home h1,
.hero-home p,
.hero-home .btn {
  animation: fadeInUp 0.6s ease-out forwards;
}

.hero-home p {
  animation-delay: 0.15s;
}

.hero-home .btn {
  animation-delay: 0.3s;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: skeleton 1.5s infinite;
}

@keyframes skeleton {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ==================== */
/* BEST FOR SECTION     */
/* ==================== */

.best-for-section {
  margin-bottom: var(--space-xl);
}

.best-for-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.best-for-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-lg);
  background: linear-gradient(135deg, var(--ocean-bright), var(--ocean-glow));
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
  transition: all var(--transition-fast);
}

.best-for-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

/* ==================== */
/* BEST TIME TO VISIT   */
/* ==================== */

.best-time-section {
  background: linear-gradient(135deg, var(--sand-light) 0%, #fef9e7 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  border-left: 4px solid var(--sand-warm);
}

.best-time-text {
  margin: 0;
  color: var(--gray-700);
  font-size: var(--font-size-lg);
  line-height: 1.7;
}

/* ==================== */
/* LONG DESCRIPTION     */
/* ==================== */

.description-section {
  margin-bottom: var(--space-xl);
}

.long-description {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  color: var(--gray-700);
  column-count: 1;
}

@media (min-width: 768px) {
  .long-description {
    column-count: 1;
    column-gap: var(--space-2xl);
  }
}

/* ==================== */
/* NEARBY ATTRACTIONS   */
/* ==================== */

.nearby-attractions {
  background: var(--gray-50);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
}

.attraction-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.attraction-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--gray-700);
}

.attraction-list li::before {
  content: '📍';
  font-size: var(--font-size-base);
}

/* ==================== */
/* AMENITY GRID ENHANCE */
/* ==================== */

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-md);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  color: var(--gray-700);
  transition: all var(--transition-fast);
}

.amenity-item:hover {
  background: var(--gray-100);
}

.amenity-icon {
  color: var(--success);
  font-size: var(--font-size-lg);
}

/* ==================== */
/* ACCESS GRID ENHANCE  */
/* ==================== */

.access-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.access-tag {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
}
/* ==================== */
/* MAP SECTION          */
/* ==================== */

.map-section {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--gray-50);
}

.map-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.map-section .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.map-section .section-header h2 {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--space-sm);
}

.map-section .section-header p {
  font-size: var(--font-size-lg);
  color: var(--gray-500);
}

.full-map-container {
  width: 100%;
  height: 600px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1;
}

/* Leaflet Overrides */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.leaflet-popup-content {
  font-family: var(--font-family);
  margin: var(--space-md);
}

.leaflet-popup-content a {
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
  font-size: var(--font-size-base);
}

.leaflet-popup-content a:hover {
  color: var(--ocean-bright);
}
