/* ========================================
   NUVIADRIFTPLAY — PREMIUM NORWAY TRAVEL
   Glassmorphism + Cinematic Dark UI
   NO BLUE — EVER
   ======================================== */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --soft-dark: #0e0e0e;
  --glass: rgba(255,255,255,0.05);
  --glass-blur: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.1);
  --gold: #2d6a4f;
  --orange: #40916c;
  --red: #e63946;
  --green: #2d6a4f;
  --green-dark: #081c15;
  --green-light: #52b788;
  --green-mid: #40916c;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  --gradient-sunset: linear-gradient(135deg, #40916c, #2d6a4f);
  --gradient-gold: linear-gradient(135deg, #52b788, #2d6a4f);
  --gradient-nature: linear-gradient(135deg, #2d6a4f, #081c15);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* === GLASS CARD === */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(5,5,5,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header.scrolled {
  padding: 0.6rem 0;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(45,106,79,0.3);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.logo-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

.logo-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

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

.header-cta {
  display: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--gradient-gold);
  color: var(--black);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(45,106,79,0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-content {
  text-align: center;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
}

.mobile-cta {
  display: inline-block !important;
  font-size: 1rem;
  padding: 0.8rem 2rem;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.2); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,5,5,0.5) 0%,
    rgba(5,5,5,0.6) 50%,
    rgba(5,5,5,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 10rem 1.5rem 4rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(45,106,79,0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  background: rgba(45,106,79,0.12);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-accent {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(45,106,79,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-light);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* === SECTION STYLES === */
section {
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(45,106,79,0.35);
  border-radius: 50px;
  background: rgba(45,106,79,0.1);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.accent-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* === INTRO SECTION === */
.intro-section {
  padding: 7rem 0;
  background: var(--soft-dark);
}

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

.intro-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.intro-card:hover {
  background: var(--glass-blur);
  transform: translateY(-4px);
  border-color: rgba(45,106,79,0.3);
}

.intro-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.intro-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.intro-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* === PLACES SECTION === */
.places-section {
  padding: 7rem 0;
}

.place-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
  align-items: center;
}

.place-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.place-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.place-image-wrap:hover .place-image {
  transform: scale(1.05);
}

.place-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(5,5,5,0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45,106,79,0.4);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-light);
}

.rating-label {
  font-size: 0.65rem;
  color: var(--text-secondary);
}

.place-details {
  padding: 0 0.5rem;
}

.place-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}

.place-name {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.place-desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.place-highlights {
  margin-bottom: 2rem;
}

.place-highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.place-highlights li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-size: 0.6rem;
  top: 0.35rem;
}

.places-cta-wrap {
  text-align: center;
  padding-top: 2rem;
}

/* === EXPERIENCE / SEASONS === */
.experience-section {
  padding: 7rem 0;
  background: var(--soft-dark);
}

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

.season-card {
  overflow: hidden;
  transition: all 0.4s ease;
}

.season-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45,106,79,0.3);
}

.season-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.season-card:hover .season-img {
  transform: scale(1.05);
}

.season-content {
  padding: 1.5rem;
}

.season-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.season-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === QUOTE SECTION === */
.quote-section {
  padding: 5rem 0;
}

.quote-wrap {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--green-light);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -1rem;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.author-name {
  font-size: 0.85rem;
  color: var(--green-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* === NEWSLETTER === */
.newsletter-section {
  padding: 5rem 0;
}

.newsletter-wrap {
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.newsletter-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

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

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--green-light);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.success-msg {
  color: var(--green-light);
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}

/* === FOOTER === */
.site-footer {
  padding: 5rem 0 2rem;
  background: var(--soft-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  background: rgba(45,106,79,0.15);
}

.footer-links-group h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links-group ul li {
  margin-bottom: 0.5rem;
}

.footer-links-group ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-group ul li a:hover {
  color: var(--green-light);
}

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

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

/* === PAGE HERO === */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.detail-hero {
  min-height: 70vh;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

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

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 10rem 1.5rem 4rem;
  max-width: 800px;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--green-light);
}

.breadcrumb span {
  color: var(--green-light);
}

/* === PLACES GRID (places.html) === */
.places-grid-section {
  padding: 5rem 0;
}

.places-filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.place-grid-card {
  transition: all 0.4s ease;
}

.place-grid-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45,106,79,0.35);
}

.pgc-image-wrap {
  position: relative;
  overflow: hidden;
}

.pgc-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.place-grid-card:hover .pgc-image {
  transform: scale(1.05);
}

.pgc-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(45,106,79,0.4);
  border-radius: 50px;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green-light);
  letter-spacing: 0.05em;
}

.pgc-content {
  padding: 1.5rem;
}

.pgc-rating {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.pgc-rating span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-light);
  font-weight: 700;
}

.pgc-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.pgc-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* === DETAIL PAGE === */
.detail-content {
  padding: 5rem 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.detail-block {
  margin-bottom: 3rem;
}

.detail-block h2 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.detail-block p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.detail-list {
  margin: 1rem 0;
}

.detail-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.detail-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-size: 0.55rem;
  top: 0.45rem;
}

.tips-list li {
  padding-left: 1.75rem;
}

.tips-list li::before {
  content: '✦';
  font-size: 0.7rem;
  top: 0.3rem;
}

/* Activity Grid */
.activity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.activity-item {
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: var(--glass-blur);
  transform: translateY(-3px);
}

.activity-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.activity-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.activity-item p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* Season Info Grid */
.season-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.season-info {
  padding: 1.5rem;
}

.season-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.season-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Gallery */
.detail-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Sidebar */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  padding: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem;
}

.fact-list li span:first-child {
  color: var(--text-secondary);
}

.fact-list li span:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

.sidebar-nav li {
  margin-bottom: 0.5rem;
}

.sidebar-nav li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.sidebar-nav li a:hover {
  color: var(--green-light);
  padding-left: 0.5rem;
}

/* === ABOUT PAGE === */
.about-content {
  padding: 5rem 0;
}

.about-text-section {
  margin-bottom: 4rem;
}

.about-text-section h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.about-text-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.about-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45,106,79,0.3);
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.about-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.about-cta-section {
  margin-top: 3rem;
}

/* === GUIDE PAGE === */
.guide-content {
  padding: 5rem 0;
}

.guide-section {
  margin-bottom: 4rem;
}

.guide-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.guide-section > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.guide-card {
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.guide-card:hover {
  background: var(--glass-blur);
}

.guide-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.guide-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* === CONTACT PAGE === */
.contact-section {
  padding: 5rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.contact-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* === LEGAL PAGES === */
.legal-hero {
  padding: 10rem 0 3rem;
  text-align: center;
  background: var(--soft-dark);
}

.legal-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.legal-text {
  max-width: 800px;
  margin: 0 auto;
}

.legal-text h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.legal-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.legal-text ul {
  margin: 1rem 0 1rem 1.5rem;
}

.legal-text ul li {
  list-style: disc;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-text a {
  color: var(--green-light);
  text-decoration: underline;
}

/* === ANIMATIONS (data-reveal) === */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .header-cta {
    display: inline-block;
  }

  .mobile-toggle {
    display: none;
  }

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

  .place-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .place-showcase.reverse .place-image-wrap {
    order: 2;
  }

  .place-image {
    height: 380px;
  }

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

  .newsletter-wrap {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }

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

  .detail-layout {
    grid-template-columns: 1fr 320px;
  }

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

  .season-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .intro-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .place-image {
    height: 450px;
  }

  .season-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .places-filter-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .quote-wrap {
    padding: 4rem 3rem;
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .hero-content {
    padding: 0 2rem;
  }

  .place-showcase {
    gap: 4rem;
  }

  .detail-layout {
    grid-template-columns: 1fr 360px;
    gap: 4rem;
  }
}

/* Small mobile adjustments */
@media (max-width: 400px) {
  .hero-stats {
    gap: 1.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
}