/* style.css */

/* GENERAL RESETS */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  /* ---------- MAIN SITE STYLES ---------- */
  
  /* Full-Screen Popup Overlay */
  #popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  #popup-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 2rem;
  }
  
  .popup-option {
    text-align: center;
  }
  
  .popup-img {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .popup-img:hover {
    transform: scale(1.05);
  }
  
  /* MAIN HEADER */
  .main-header {
    background: #efefef;
    padding: 2rem;
    text-align: center;
  }
  
  /* CONTENT AREA */
  .content-area {
    padding: 2rem;
  }
  
  /* ---------- KIDS PAGE STYLES ---------- */
  .kids-body {
    background: #FFE8B0; /* Light, playful color */
    color: #333;
  }
  
  .kids-header {
    text-align: center;
    background: #FFC107;
    padding: 2rem;
  }
  
  .kids-content {
    margin: 2rem;
    background: #FFF7D1;
    padding: 2rem;
    border-radius: 8px;
  }
  
  .kids-content h2 {
    margin-top: 0;
  }
  
  /* Return to main site link */
  .back-to-main {
    display: inline-block;
    margin-top: 1rem;
    background: #FF5722;
    color: #fff;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
  }
  
  .back-to-main:hover {
    background: #e64a19;
  }
  