/**
 * Australia Zoo Premium Theme
 * Professional, modern design inspired by official branding
 */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors - Australia Zoo */
  --az-green-dark: #1a5d1a;
  --az-green: #2e7d32;
  --az-green-light: #4caf50;
  --az-khaki: #8b7355;
  --az-khaki-light: #a89078;
  --az-orange: #f57c00;
  --az-orange-dark: #e65100;
  --az-gold: #ffc107;
  --az-red: #d32f2f;
  
  /* Neutrals */
  --az-white: #ffffff;
  --az-off-white: #fafafa;
  --az-cream: #f5f3f0;
  --az-gray-100: #f8f9fa;
  --az-gray-200: #e9ecef;
  --az-gray-300: #dee2e6;
  --az-gray-500: #6c757d;
  --az-gray-700: #495057;
  --az-gray-900: #212529;
  --az-black: #0a0a0a;
  
  /* Typography */
  --az-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --az-font-display: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --az-container: 1200px;
  --az-gap: 24px;
  
  /* Shadows */
  --az-shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --az-shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --az-shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --az-shadow-xl: 0 16px 48px rgba(0,0,0,.2);
  
  /* Transitions */
  --az-ease: cubic-bezier(.4,0,.2,1);
  --az-duration: .3s;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--az-font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--az-gray-900);
  background: var(--az-white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: all var(--az-duration) var(--az-ease); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== CONTAINER ===== */
.az-container {
  width: 100%;
  max-width: var(--az-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== PROMO BANNER ===== */
.az-promo-banner {
  background: linear-gradient(135deg, var(--az-red) 0%, #b71c1c 100%);
  color: var(--az-white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.az-promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.az-promo-banner__icon { font-size: 20px; }

.az-promo-banner__text {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.az-promo-banner__discount {
  background: var(--az-gold);
  color: var(--az-gray-900);
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
}

.az-promo-banner__timer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  background: rgba(0,0,0,.2);
  padding: 6px 12px;
  border-radius: 6px;
}

.az-promo-banner__timer span:last-child {
  font-family: 'SF Mono', Monaco, monospace;
  font-weight: 700;
  font-size: 14px;
  min-width: 48px;
}

/* ===== HEADER ===== */
.az-header {
  background: var(--az-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--az-shadow-sm);
  border-bottom: 1px solid var(--az-gray-200);
}

.az-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
}

.az-header__logo img {
  height: 56px;
  width: auto;
}

.az-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.az-header__link {
  font-weight: 500;
  font-size: 14px;
  color: var(--az-gray-700);
  padding: 10px 16px;
  border-radius: 8px;
  transition: all var(--az-duration) var(--az-ease);
}

.az-header__link:hover {
  color: var(--az-green);
  background: var(--az-gray-100);
}

.az-header__link--active {
  color: var(--az-green-dark);
  font-weight: 600;
}

.az-header__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--az-gray-500);
  background: var(--az-gray-100);
  padding: 8px 14px;
  border-radius: 8px;
}

.az-header__actions { display: flex; align-items: center; gap: 12px; }

.az-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px;
}

.az-header__menu span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--az-gray-700);
  border-radius: 2px;
  transition: all var(--az-duration) var(--az-ease);
}

/* ===== BUTTONS ===== */
.az-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  padding: 12px 24px;
  transition: all var(--az-duration) var(--az-ease);
  white-space: nowrap;
}

.az-btn--primary {
  background: linear-gradient(135deg, var(--az-orange) 0%, var(--az-orange-dark) 100%);
  color: var(--az-white);
  box-shadow: 0 4px 12px rgba(245, 124, 0, .3);
}

.az-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, .4);
}

.az-btn--secondary {
  background: var(--az-green);
  color: var(--az-white);
  box-shadow: 0 4px 12px rgba(46, 125, 50, .3);
}

.az-btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, .4);
}

.az-btn--outline {
  background: transparent;
  color: var(--az-green);
  border: 2px solid var(--az-green);
}

.az-btn--outline:hover {
  background: var(--az-green);
  color: var(--az-white);
}

.az-btn--sm { padding: 8px 16px; font-size: 13px; }
.az-btn--lg { padding: 16px 32px; font-size: 16px; }

/* ===== HERO SECTION ===== */
.az-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--az-green-dark) 0%, #0d3d0d 100%);
  overflow: hidden;
}

.az-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.az-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}

.az-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,93,26,.85) 0%, rgba(0,0,0,.7) 100%);
}

.az-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 0;
}

.az-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  color: var(--az-gold);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.2);
}

.az-hero__title {
  font-family: var(--az-font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--az-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.az-hero__title span {
  display: block;
  color: var(--az-gold);
}

.az-hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 550px;
}

.az-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.az-hero__features {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.az-hero__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 500;
}

.az-hero__feature-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--az-gold);
  color: var(--az-gray-900);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

/* ===== SECTIONS ===== */
.az-section {
  padding: 80px 0;
}

.az-section--alt { background: var(--az-cream); }
.az-section--dark { background: var(--az-green-dark); color: var(--az-white); }

.az-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.az-section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--az-orange);
  margin-bottom: 12px;
}

.az-section__title {
  font-family: var(--az-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--az-gray-900);
  margin-bottom: 16px;
}

.az-section--dark .az-section__title { color: var(--az-white); }

.az-section__subtitle {
  font-size: 17px;
  color: var(--az-gray-500);
  line-height: 1.7;
}

.az-section--dark .az-section__subtitle { color: rgba(255,255,255,.7); }

/* ===== TICKET CARDS ===== */
.az-tickets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.az-ticket {
  background: var(--az-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--az-shadow-md);
  transition: all var(--az-duration) var(--az-ease);
  position: relative;
}

.az-ticket:hover {
  transform: translateY(-8px);
  box-shadow: var(--az-shadow-xl);
}

.az-ticket__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--az-green);
  color: var(--az-white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
}

.az-ticket__badge--hot { background: var(--az-red); }
.az-ticket__badge--vip { background: var(--az-gold); color: var(--az-gray-900); }

.az-ticket__discount {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--az-red);
  color: var(--az-white);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.az-ticket__image {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, var(--az-green-dark), var(--az-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.az-ticket__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.az-ticket__body { padding: 24px; }

.az-ticket__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.az-ticket__title {
  font-family: var(--az-font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--az-gray-900);
  margin-bottom: 8px;
}

.az-ticket__desc {
  font-size: 14px;
  color: var(--az-gray-500);
  margin-bottom: 16px;
}

.az-ticket__features {
  list-style: none;
  margin-bottom: 20px;
}

.az-ticket__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--az-gray-700);
  padding: 6px 0;
}

.az-ticket__feature::before {
  content: '✓';
  color: var(--az-green);
  font-weight: 700;
}

.az-ticket__pricing { 
  border-top: 1px solid var(--az-gray-200);
  padding-top: 16px;
  margin-bottom: 16px;
}

.az-ticket__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.az-ticket__price-label {
  font-size: 13px;
  color: var(--az-gray-600);
}

.az-ticket__price-value {
  display: flex;
  align-items: center;
  gap: 8px;
}

.az-ticket__price-original {
  font-size: 13px;
  color: var(--az-gray-400);
  text-decoration: line-through;
}

.az-ticket__price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--az-red);
}

.az-ticket__cta {
  width: 100%;
  padding: 14px;
  background: var(--az-green);
  color: var(--az-white);
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  transition: all var(--az-duration) var(--az-ease);
}

.az-ticket__cta:hover {
  background: var(--az-green-dark);
  transform: translateY(-2px);
}

/* ===== EXPERIENCE GRID ===== */
.az-experiences {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.az-experience {
  background: var(--az-white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--az-shadow-sm);
  transition: all var(--az-duration) var(--az-ease);
}

.az-experience:hover {
  transform: translateY(-4px);
  box-shadow: var(--az-shadow-lg);
}

.az-experience__icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.az-experience__title {
  font-weight: 700;
  font-size: 18px;
  color: var(--az-gray-900);
  margin-bottom: 10px;
}

.az-experience__desc {
  font-size: 14px;
  color: var(--az-gray-500);
  line-height: 1.6;
}

/* ===== BENEFITS ===== */
.az-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.az-benefit {
  text-align: center;
  padding: 24px;
}

.az-benefit__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--az-orange), var(--az-orange-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(245, 124, 0, .25);
}

.az-benefit__title {
  font-weight: 700;
  font-size: 16px;
  color: var(--az-gray-900);
  margin-bottom: 8px;
}

.az-benefit__desc {
  font-size: 14px;
  color: var(--az-gray-500);
}

/* ===== HOW IT WORKS ===== */
.az-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

.az-step {
  text-align: center;
  position: relative;
}

.az-step__number {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: var(--az-green);
  color: var(--az-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.az-step__title {
  font-weight: 700;
  font-size: 16px;
  color: var(--az-gray-900);
  margin-bottom: 8px;
}

.az-step__desc {
  font-size: 14px;
  color: var(--az-gray-500);
}

.az-step__arrow {
  position: absolute;
  right: -32px;
  top: 24px;
  color: var(--az-gray-300);
  font-size: 20px;
}

.az-step:last-child .az-step__arrow { display: none; }

/* ===== CTA SECTION ===== */
.az-cta {
  background: linear-gradient(135deg, var(--az-green-dark) 0%, #0d3d0d 100%);
  padding: 80px 0;
  text-align: center;
}

.az-cta__title {
  font-family: var(--az-font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--az-white);
  margin-bottom: 16px;
}

.az-cta__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}

.az-cta__timer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  padding: 12px 24px;
  border-radius: 100px;
  color: var(--az-white);
  font-size: 14px;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,.2);
}

.az-cta__timer-value {
  font-family: 'SF Mono', Monaco, monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--az-gold);
}

/* ===== FOOTER ===== */
.az-footer {
  background: var(--az-gray-900);
  color: var(--az-white);
  padding: 60px 0 24px;
}

.az-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.az-footer__brand img {
  height: 60px;
  margin-bottom: 16px;
  background: var(--az-white);
  padding: 8px 12px;
  border-radius: 8px;
}

.az-footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.az-footer__address {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
}

.az-footer__title {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--az-white);
}

.az-footer__links {
  list-style: none;
}

.az-footer__link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 6px 0;
  transition: color var(--az-duration) var(--az-ease);
}

.az-footer__link:hover { color: var(--az-gold); }

.az-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.az-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

.az-footer__payments {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .az-experiences, .az-benefits, .az-steps { grid-template-columns: repeat(2, 1fr); }
  .az-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .az-header__nav { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--az-white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--az-shadow-lg);
  }
  .az-header__nav.is-open { display: flex; }
  .az-header__menu { display: flex; }
  .az-header__hours { display: none; }
  
  .az-hero { min-height: 500px; }
  .az-hero__content { padding: 40px 0; }
  .az-hero__features { flex-direction: column; gap: 16px; }
  
  .az-section { padding: 60px 0; }
  
  .az-experiences, .az-benefits, .az-steps { grid-template-columns: 1fr; }
  .az-tickets { grid-template-columns: 1fr; }
  
  .az-step__arrow { display: none !important; }
  
  .az-footer__grid { grid-template-columns: 1fr; text-align: center; }
  .az-footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .az-promo-banner { padding: 8px 12px; gap: 8px; }
  .az-promo-banner__text { font-size: 11px; }
  
  .az-header__logo img { height: 44px; }
  
  /* Improved Mobile Hero - Centered */
  .az-hero { min-height: auto; padding: 0; }
  .az-hero__content { padding: 24px 0 32px; text-align: center; max-width: 100%; }
  .az-hero__badge { padding: 5px 10px; font-size: 10px; margin-bottom: 12px; }
  .az-hero__title { font-size: 24px; margin-bottom: 10px; }
  .az-hero__title span { font-size: 20px; }
  .az-hero__subtitle { font-size: 13px; margin-bottom: 18px; line-height: 1.5; margin-left: auto; margin-right: auto; }
  .az-hero__actions { flex-direction: column; width: 100%; gap: 8px; align-items: center; padding: 0 20px; }
  .az-hero__actions .az-btn { width: auto; min-width: 200px; padding: 12px 24px; font-size: 13px; }
  .az-hero__actions .az-btn--outline { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); color: #fff; }
  .az-hero__features { margin-top: 20px; padding-top: 16px; gap: 8px; align-items: center; }
  .az-hero__feature { font-size: 11px; gap: 5px; justify-content: center; }
  .az-hero__feature-icon { width: 16px; height: 16px; font-size: 10px; }
  
  /* Footer Mobile */
  .az-footer { padding: 40px 0 20px; }
  .az-footer__brand img { height: 50px; margin: 0 auto 16px; }
  .az-footer__desc { font-size: 13px; }
  .az-footer__address { font-size: 12px; }
}
