:root {
  --bg: #F7FAF4;
  --surface: #FFFFFF;
  --primary-green: #4CAF50;
  --leaf-green: #2E7D32;
  --rose-pink: #E91E63;
  --lavender: #8E7CC3;
  --warm-gold: #C8A24A;
  --text-main: #2F2F2F;
  --muted: #6B7280;
  --white-stone: #F5F5F0;
  --glass-header: rgba(255, 255, 255, 0.95);
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

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

/* ==========================================================================
   TOP BANNER
   ========================================================================== */
.top-banner {
  background-color: var(--text-main);
  color: var(--surface);
  text-align: center;
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.4;
  position: relative;
  z-index: 1001;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
  border: none;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--leaf-green));
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--leaf-green);
  border: 2px solid var(--leaf-green);
}

/* ==========================================================================
   FLOATING HEADER
   ========================================================================== */
.floating-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 68px;
  background: var(--glass-header);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  backdrop-filter: blur(4px);
}

.header-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--leaf-green);
  letter-spacing: 0.5px;
}

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

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--leaf-green);
}

.header-play {
  padding: 8px 20px;
}

/* ==========================================================================
   WELCOME WALKWAY
   ========================================================================== */
.welcome-walkway {
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
}

/* Subtle floral/botanical pattern simulated with a faint gradient overlay */
.welcome-walkway::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(var(--leaf-green) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.04;
  z-index: -1;
}

.flower-emblem {
  font-size: 2rem;
  color: var(--rose-pink);
  margin-bottom: 1rem;
}

.welcome-walkway h1 {
  font-size: 2.75rem;
  color: var(--leaf-green);
  margin-bottom: 1rem;
}

.welcome-walkway p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--muted);
}

/* ==========================================================================
   GAME GREENHOUSE
   ========================================================================== */
.game-greenhouse {
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.greenhouse-frame {
  background: var(--white-stone);
  border: 3px solid var(--warm-gold); /* Brushed brass look */
  border-radius: 20px;
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5), 0 4px 20px rgba(0,0,0,0.03);
}

.iframe-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ==========================================================================
   FLOWER GALLERY & GARDEN NOTES (Two Column Layout)
   ========================================================================== */
.gallery-notes-section {
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.botanical-sign {
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.section-image {
  width: 100%;
  max-width: 600px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0,0,0,0.05);
}

.botanical-sign h2 {
  font-size: 1.5rem;
  color: var(--leaf-green);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--warm-gold);
  padding-bottom: 0.5rem;
  display: inline-block;
}

/* Gallery List */
.gallery-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.gallery-list .icon {
  color: var(--rose-pink);
  font-size: 1.25rem;
  margin-right: 1rem;
  line-height: 1.4;
}

.gallery-list h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.gallery-list p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Notes Table */
.notes-table {
  width: 100%;
  border-collapse: collapse;
}

.notes-table tr {
  border-bottom: 1px solid #eee;
}

.notes-table tr:last-child {
  border-bottom: none;
}

.notes-table td {
  padding: 12px 0;
  font-size: 0.95rem;
}

.notes-table td:first-child {
  font-weight: 600;
  color: var(--text-main);
  width: 40%;
}

.notes-table td:last-child {
  color: var(--muted);
  text-align: right;
}

/* ==========================================================================
   BOTANICAL DESK
   ========================================================================== */
.botanical-desk {
  max-width: 1000px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.desk-column {
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}

.desk-image {
  height: 180px;
  margin-bottom: 1.5rem;
}

.desk-column h2 {
  font-size: 1.35rem;
  color: var(--leaf-green);
  margin-bottom: 1.25rem;
}

/* Visitor Services */
.service-item {
  margin-bottom: 1.25rem;
}

.service-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.service-item strong {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 500;
}

/* Common Questions */
.faq-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: var(--text-main);
}

.faq-list li:last-child {
  border-bottom: none;
}

.faq-list li::before {
  content: "•";
  color: var(--warm-gold);
  margin-right: 8px;
  font-weight: bold;
}

/* Contact Form */
.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--bg);
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-form .btn {
  width: 100%;
}

/* ==========================================================================
   FOOTER GARDEN
   ========================================================================== */
.footer-garden {
  background: var(--surface);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding: 4rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.footer-illustration {
  font-size: 2rem;
  color: var(--primary-green);
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--leaf-green);
  font-weight: 500;
}

.footer-disclaimers {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-disclaimers p {
  margin-bottom: 0.5rem;
}

.age-badge {
  display: inline-block;
  border: 1px solid var(--muted);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 0.75rem;
  margin-top: 1rem;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-container {
  max-width: 800px;
  margin: 52px auto 4rem;
  padding: 3rem;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.legal-container h1 {
  font-size: 2.5rem;
  color: var(--leaf-green);
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--warm-gold);
  padding-bottom: 1rem;
}

.legal-container h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--text-main);
}

.legal-container p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.legal-container ul {
  margin: 1rem 0 1rem 2rem;
  color: var(--muted);
}

.legal-container ul li {
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
  .gallery-notes-section,
  .botanical-desk {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .welcome-walkway h1 {
    font-size: 2rem;
  }
  
  .legal-container {
    padding: 2rem 1.5rem;
    margin: 32px 1rem 2rem;
  }
}