/* ===== Snow Dunes - Full English Theme ===== */
:root {
  --teal: #5ac1ff;
  --teal-dark: #3aadf0;
  --blue: #5ac1ff;
  --blue-light: #7dceff;
  --blue-dark: #3aadf0;
  --orange: #F4A261;
  --orange-dark: #E76F51;
  --green: #22c55e;
  --bg: #f0f7fb;
  --white: #ffffff;
  --text: #1a2a3a;
  --text-light: #6b7c93;
  --font: 'Montserrat', 'Nunito Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--teal);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.8rem;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-text {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-text .material-icons { font-size: 14px; }
.top-bar-social {
  display: flex;
  gap: 12px;
}
.top-bar-social a {
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.top-bar-social a:hover { opacity: 1; }

/* ===== HEADER ===== */
.header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img {
  height: 45px;
  border-radius: 6px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--teal); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-book {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.btn-book:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}
.btn-book .material-icons { font-size: 18px; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,180,216,0.3) 0%, rgba(0,119,182,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 40px 0;
}
.hero-text-box {
  background: var(--teal);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
  max-width: 450px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.hero-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--orange);
}
.hero-pricing {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.price-item {
  background: rgba(255,255,255,0.15);
  padding: 12px 20px;
  border-radius: 10px;
  flex: 1;
}
.price-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
  margin-bottom: 4px;
}
.price-value {
  font-size: 1.1rem;
  font-weight: 700;
}
.price-value strong {
  font-size: 1.4rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}
.btn-primary .material-icons { font-size: 20px; }

/* ===== SECTION TITLES ===== */
.section-badge {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.section-title {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text);
}
.section-desc {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 12px;
}

/* ===== TICKETS SECTION ===== */
.tickets-section {
  padding: 70px 0;
  background: var(--white);
}
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.tickets-grid .ticket-card:nth-child(4),
.tickets-grid .ticket-card:nth-child(5) {
  grid-column: span 1;
}
.tickets-grid {
  grid-template-columns: repeat(3, 1fr);
}
.ticket-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
  border: 2px solid #e8eef3;
}
.ticket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.ticket-card--featured {
  border-color: var(--teal);
}
.ticket-card--featured .ticket-body {
  background: var(--teal);
  color: var(--white);
}
.ticket-card--featured .ticket-name { color: var(--white); }
.ticket-card--featured .ticket-price { color: var(--white); }
.ticket-card--featured .btn-ticket {
  background: var(--white);
  color: var(--teal);
}
.ticket-image-link {
  display: block;
}
.ticket-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.ticket-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.ticket-card:hover .ticket-image img { transform: scale(1.05); }
.ticket-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
}
.ticket-body {
  padding: 16px;
}
.ticket-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.ticket-name a {
  color: inherit;
  text-decoration: none;
}
.ticket-name a:hover {
  color: var(--teal);
}
.ticket-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ticket-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
}
.btn-ticket {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s;
}
.btn-ticket:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,119,182,0.3);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.about-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.deco {
  position: absolute;
  opacity: 0.15;
}
.deco-1 { top: 10%; left: 5%; width: 120px; }
.deco-2 { bottom: 10%; right: 5%; width: 100px; }
.deco-3 { top: 50%; left: 50%; width: 80px; transform: translate(-50%, -50%); }
.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.about-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text);
}
.about-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ===== NUMBERS SECTION ===== */
.numbers-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #e8f8f5 0%, #d1f2eb 100%);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.number-card {
  text-align: center;
  padding: 24px;
}
.number-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}
.number-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 8px;
}
.number-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ===== WHO ARE WE ===== */
.who-section {
  padding: 70px 0;
  background: var(--white);
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.who-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text);
}
.who-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
}
.who-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.who-image img {
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* ===== ATTRACTIONS ===== */
.attractions-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  color: var(--white);
}
.attractions-section .section-badge { color: var(--white); }
.attractions-section .section-title { color: var(--white); }
.attractions-section .section-desc { color: rgba(255,255,255,0.9); }
.attractions-slider {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
.attraction-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.attraction-slide.active { opacity: 1; }
.attraction-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.attraction-name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(10px);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background: var(--white);
  transform: scale(1.2);
}

/* ===== MAP ===== */
.map-section {
  padding: 70px 0;
  background: var(--white);
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.map-title {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text);
}
.map-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.map-image img {
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #5ac1ff 0%, #3aadf0 100%);
  color: var(--white);
}
.footer-top {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.footer-brand { text-align: center; }
.footer-logo {
  height: 80px;
  border-radius: 10px;
}
.partner-logos {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.partner-logo {
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.social-links {
  display: flex;
  gap: 8px;
}
.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--teal);
  transform: translateY(-2px);
}
.footer-app {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-app span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.app-buttons {
  display: flex;
  gap: 8px;
}
.app-btn {
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
}
.footer-copyright {
  text-align: center;
  padding: 16px 0 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-col a {
  color: var(--white);
  font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-col a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.footer-partners {
  text-align: right;
}
.footer-partners h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}
.partner-logos {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s;
}
.footer-phone:hover {
  background: rgba(255,255,255,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tickets-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid, .map-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-top-inner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .nav.active { display: flex; }
  .menu-toggle { display: block; }
  .btn-book { display: none; }
  .hero-text-box { max-width: 100%; }
  .hero-title { font-size: 1.5rem; }
  .hero-pricing { flex-direction: column; gap: 10px; }
  .tickets-grid { grid-template-columns: 1fr; max-width: 350px; margin: 40px auto 0; }
  .attractions-slider { height: 250px; }
  .footer-bottom-inner { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.5rem; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .number-value { font-size: 1.8rem; }
}
