@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;500;600;700&display=swap');
:root {
  --primary: #e85d32;
  --primary-light: #ff7a52;
  --secondary: #1a8a8a;
  --secondary-light: #25b5b5;
  --accent: #f0b429;
  --accent-dark: #d4a327;

  --background: #faf8f5;
  --foreground: #1e2a3b;
  --card: #ffffff;
  --muted: #f0ede8;
  --muted-foreground: #6b7280;
  --border: #d1d5db;
  --park-navy: #1e3a5f;
  --park-cream: #faf8f5;

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --park-navy: #1a2a3a;
  --muted: #777;
  --primary: #ff6f3c;

  --radius: 0.75rem;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: black;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
}
.nav-bar {
  background-color: #ffffff;
  height: 70px; 
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 5%;
}

.nav-container {
  width: 100%;
  max-width: 1400px; 
  margin: 0 auto;
}

.img-fluid {
    max-height: 150px;
    margin-left: -30px;
  }
 

.nav-logo-img {
  height: 65px; 
  width: auto;
  object-fit: contain;
  display: block;
}


.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 1rem 2rem;
}

.logo-navbar {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--foreground);
}

.nav-items li {
  list-style: none;
}
.nav-items li a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 600;
  position: relative;
  padding-bottom: 4px;
}
.nav-items li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 50px;
  transition: 0.3s;
}
.nav-items li a:hover::after {
  width: 60%;
}
.nav-items li a:hover {
  color: var(--primary);
}

.btn-navbar .btn-login {
  background: transparent; 
  border: 2px solid var(--primary);
  color: var(--primary); 
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  transition: 0.3s;
}

.btn-navbar .btn-login:hover {
  background: var(--primary); 
  color: #fff; 
}
.btn-navbar .btn-ticket {
  background: var(--primary); 
  color: #fff; 
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  border: none;
  transition: 0.3s;
}

.btn-navbar .btn-ticket:hover {
  background: var(--primary-light); 
}
.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--foreground);
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100vh;
  background: var(--background);
  color: #000000;
  padding: 2rem;
  transition: 0.3s;
  z-index: 1100;
  display: flex;
  flex-direction: column;
}
.mobile-menu ul {
  padding-top: 2rem;
  list-style: none;
}
.mobile-menu a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1050;
}
.mobile-menu.active {
  left: 0;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  border-radius: var(--radius);
}
.btn-ticket {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.5rem;
}
.btn-login {
  border-radius: var(--radius);
  padding: 0.5rem;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.tickets-hero {
  background-color: var(--park-navy);
  padding: 8rem 0 5rem;
  margin-top: 80px;
}

.tickets-hero .hero-content {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}
button.btn-account-ticket {
    padding: 5px 10px 5px 10px;
    border-radius: var(--radius);
    background: var(--primary);
    border: 2px solid var(--primary);
    color: var(--card);
}
.section-title {
  position: relative;
  display: block;
  text-align: center;
  font-weight: 700;
  margin: 0 auto 3rem;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--primary);
  border-radius: 10px;
  animation: underlineGrow 1s ease forwards;
}

@keyframes underlineGrow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 80px;
    opacity: 1;
  }
}
.features-list i.bi-check {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 600;
}
.features-list i.bi-x {
  font-size: 1.3rem;
  color: #dc3545 !important;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
}
.ticket-card:nth-child(1) {
  animation-delay: 0.2s;
}
.ticket-card:nth-child(2) {
  animation-delay: 0.4s;
}
.ticket-card:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ticket-card {
  border-radius: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ticket-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.popular-badge {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.btn-account-ticket {
  transition: all 0.3s ease;
}

.btn-account-ticket:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(232, 93, 50, 0.35);
}
@media (max-width: 768px) {
  .ticket-card:hover {
    transform: none;
    box-shadow: none;
  }
}
.hero-badge {
  display: inline-block;
  background-color: rgba(26, 138, 138, 0.2);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge.accent {
  background-color: rgba(240, 180, 41, 0.2);
  color: var(--accent);
}

.tickets-hero h1 {
  font-size: 2.5rem;
  color: var(--park-cream);
  margin-bottom: 1.5rem;
}

.tickets-hero p {
  color: rgba(250, 248, 245, 0.7);
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .tickets-hero h1 {
    font-size: 3.5rem;
  }
}
.tickets-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 2.5rem;
}
.tickets-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tickets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ticket-card {
  background-color: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.ticket-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ticket-card.popular {
  border-color: var(--primary);
}

.ticket-card.accent-border {
  border-color: var(--accent);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ticket-content {
  padding: 1.5rem;
}

.ticket-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.ticket-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.price-list {
  margin-bottom: 1.5rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}
.price-row span:first-child {
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--foreground);
  padding: 0.375rem 0;
}

.features-list li svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* Add-Ons Section */
.addons-section {
  padding: 4rem 0;
}

.addons-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .addons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.addon-card {
  background-color: var(--card);
  border-radius: 0.75rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s ease;
}

.addon-card:hover {
  border-color: var(--primary);
}

.addon-info h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.addon-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.addon-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 1rem;
}
.info-section {
  padding: 4rem 0;
  background-color: var(--background);
}

.info-box {
  max-width: 768px;
  margin: 0 auto;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.info-header svg {
  color: var(--primary);
}

.info-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-list p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.info-list p svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.tickets-cta {
  background-color: var(--primary);
  padding: 4rem 0;
  text-align: center;
}

.tickets-cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.tickets-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.btn-hero {
  background-color: white;
  color: var(--primary);
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
button.btn.btn-ticket.w-100:hover {
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-hero:hover {
  background-color: var(--park-cream);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Fade Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  background-color: var(--park-navy);
  color: var(--park-cream);
  padding: 70px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: flex-start;
}

.footer-brand {
    position: relative;
}

  .footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 60px;
  }

.footer-logo img {
    position: absolute;
    margin: -30px;
    left: -10px;
    max-height: 150px;
    display: block;
    object-fit: contain;
    top: -20px;
    margin-bottom: 15px;
}
.footer-social {
  display: flex;
  gap: 30px;
}

.footer-social a {
  color: #ffffff;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}
.footer h4 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 15px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding-left: 70px;
}
.footer-h41{
  margin-left: 70px;
}
.footer-h42{
  margin-left: 70px;
}
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}
.footer-highlights ul {
  list-style: none;
  padding-right: 40px;
}

.footer-highlights li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #cbd5e1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-links a {
  color: #cbd5e1;
  margin-left: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links a {
    margin: 0 8px;
  }
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
}

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

  .footer-links,
  .footer-h41,
  .footer-h42,
  .footer-h43 {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .footer-logo {
    position: relative;
    justify-content: center;
  }

  .footer-logo img {
    position: relative !important;
    top: 50px !important;
    left: 0 !important;
    margin: auto;
    max-height: 200px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom-links a {
    margin: 0 6px;
  }
}
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links a {
    margin: 0 8px;
  }
}
@media (max-width: 768px) {

  .navbar {
    justify-content: space-between;
  }

  .nav-logo {
    text-align: left;
  }
  .img-fluid {
    max-height: 150px;
    position: absolute;
    top: -42px;
    
  }


.footer-logo img {
  position: absolute;
 top: 15px;
 max-height: 150px;
left: 95px;
  display: block;
  object-fit: contain;
}

  .footer-logo {
    text-align: center;
  }
}
html, body {
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .nav-bar {
    padding: 0.8rem 1rem;
  }

  .nav-logo-img {
    height: 50px;
  }
}
@media (max-width: 992px) {
  .tickets-grid,
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .tickets-grid,
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .ticket-card {
    padding: 25px;
  }

  .tickets-cta h2 {
    font-size: 2rem;
  }

  .info-box {
    padding: 25px;
  }

  .addon-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .ticket-content h3 {
    font-size: 1.4rem;
  }

  .tickets-cta p {
    font-size: 1rem;
  }
}
.mobile-menu.active ~ .hamburger,
.mobile-menu.active + .hamburger,
.hamburger.hide {
  display: none !important;
}
@media (max-width: 992px) {

.img-fluid {
    max-height: 150px;
    position: absolute;
    top: -37px;
    left: -6px;
}
}
@media (max-width: 320px) {

  html, body {
    overflow-x: hidden;
  }

  section {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.45rem !important; }
  h3 { font-size: 1.2rem !important; }
  p  { font-size: 0.9rem !important; }

  /* ===== NAVBAR ===== */
  .nav-bar {
    height: 56px;
    padding: 0 0.6rem;
  }

  .nav-logo-img {
    height: 36px;
    max-width: 115px;
  }

  .hamburger {
    gap: 3px;
    z-index: 1400;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }

  .mobile-menu {
    width: 100%;
    left: -100%;
    padding: 1rem;
  }

  .mobile-menu.active {
    left: 0;
  }

  .mobile-menu ul {
    padding-top: 1rem;
  }

  .mobile-menu li {
    margin-bottom: 0.9rem;
  }

  .mobile-menu a {
    font-size: 0.95rem;
  }

  .hamburger.hide {
    display: none !important;
  }
  .hero {
    padding-top: 110px;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.9rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-hero,
  .btn-outline {
    width: 100%;
    font-size: 0.9rem;
    padding: 12px 0;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 0.8rem;
    margin-top: 1.8rem;
  }

  .stat-icon {
    font-size: 1.6rem;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .zone-card,
  .restaurant-card,
  .entertainment-card,
  .testimonial-card,
  .info-card {
    padding: 1.25rem 1rem;
  }
  .gallery-item {
    height: 160px;
  }
  .tickets-cta {
    padding: 2.5rem 1rem;
  }

  .ticket-card {
    width: 100%;
  }
  .buy-ticket-wrapper,
  .ticket-btn-wrapper,
  .hero-buttons,
  .cta-buttons,
  .btn-buy,
  .btn-ticket,
  .buy-ticket,
  button.buy-ticket {
    width: 100%;
    display: block;
    text-align: center;
    padding: 13px 0;
  }
  .footer {
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-logo img {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 auto;
    max-height: 120px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom-links a {
    margin: 0 4px;
    font-size: 0.8rem;
  }
}
@media (max-width: 992px) {
  .mobile-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: -100vw !important;
    right: 0 !important;
    margin: 0 !important;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    box-sizing: border-box;
  }
  .mobile-menu.active {
    left: 0 !important;
  }
  .mobile-menu,
  .mobile-menu.active {
    transform: none !important;
  }
}
@media (max-width: 360px) {
  .mobile-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: -100vw !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 320px) {
  .mobile-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: -100vw !important;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}
@media (max-width: 992px) {
  .mobile-menu ul {
    width: 100%;
        padding-right: 30px;

  }

  .mobile-menu li {
    width: 100%;
    text-align: center;
  }

  .mobile-menu a {
    display: block;
    width: 100%;
  }
}
@media (max-width: 360px) {

  section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  h1 { font-size: 1.9rem !important; }
  h2 { font-size: 1.6rem !important; }
  h3 { font-size: 1.3rem !important; }
  p  { font-size: 0.95rem !important; }

  .hero {
    padding-top: 120px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem !important;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero,
  .btn-outline {
    width: 100%;
    margin-top: 10px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    justify-items: center;
    margin-top: 2rem;
  }

  .stat {
    text-align: center;
  }

  .stat-icon {
    font-size: 1.8rem;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .buy-ticket-wrapper,
  .ticket-btn-wrapper,
  .hero-buttons,
  .cta-buttons,
  .btn-buy,
  .btn-ticket,
  .buy-ticket,
  button.buy-ticket {
    width: 100%;
    display: block;
    padding: 14px 0;
    text-align: center;
  }

  .footer {
    text-align: center;
  }

  .footer-logo img {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 auto;
    max-height: 140px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}