html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Century Gothic, sans-serif;
  color: black;
  background-color: #FEFCFF;
}

body {
  min-height: 100vh;   /* ensures full height */
}

main {
  flex: 1;
  margin: 140px auto 0 auto; /* ✅ centers horizontally */
  max-width: 1200px;
  width: 100%;               /* ✅ ensures full stretch inside max-width */
  padding: 0 20px;           /* ✅ prevents text hugging the viewport edge */
  box-sizing: border-box;
}

/* Header */
header {
  background-color: #301934; /* dark purple for top part */
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Logo + Title inline */
.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;  /* taller */
  background-color: #301934; /* stays dark */
}

.header-logo {
  height: 40px; /* slightly larger logo */
}

.campaign-name {
  font-size: 18px; /* larger title text */
  font-weight: bold;
  margin: 0;
  color: white;
}

.desktop-menu {
  display: flex;
  align-items: center;
  background-color: #563c5c;
  padding: 3px 15px;
  position: relative;
}

/* Center the menu absolutely */
.menu {
  list-style: none;
  margin: 0 auto;   /* centers inside flexbox */
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Right-aligned join button */
.join-btn {
  margin-left: auto; /* pushes only this one to the right */
}

.join-btn a {
  background-color: #301934; /* same as top header */
  color: #d3d3d3;            /* light gray text */
  padding: 4px 10px;         /* smaller size */
  border-radius: 0;          /* square edges */
  text-decoration: none;
  font-weight: 500;          /* slightly lighter than bold */
  font-size: 14px;           /* smaller font */
  border: 1px solid #d3d3d3; /* subtle gray border */
  transition: all 0.3s ease;
}

.join-btn a:hover {
  background-color: #d3d3d3; /* gray highlight on hover */
  color: #301934;            /* dark purple text */
  border-color: #d3d3d3;
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 6px 12px; /* smaller padding for compact look */
  display: block;
  font-weight: 500;
}

.menu a:hover {
  background-color: #7B68EE; /* hover effect */
  color: white;
}

.menu li {
  position: relative;
  margin: 5px;
}

.dropbtn {
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
}

.dropbtn i {
  font-size: 0.8em;
  margin-left: 4px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Dropdown Menu (Desktop) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #E6E6FA;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.dropdown-content a {
  padding: 12px 16px;
  color: black;
}
/* Hide toggle button on desktop */
.menu-toggle-wrapper {
  display: none;
}
/* ðŸ”’ Hide sidebar on desktop */
.sidebar {
  display: none;
}

/* Footer */
.last-container {
  text-align: center;
  padding: 20px;
  background-color: #301934;
  color: white;
}

.last-container .social-icons {
  margin: 10px 0;
}

.last-container .social-icons a {
  color: white;
  font-size: 20px;
  margin: 0 10px;
  text-decoration: none;
}

/* Social Label Section */
.social-label {
  text-align: center;
  font-weight: bold;
  color: #301934;
  margin-top: 40px;
  font-size: 18px;
  letter-spacing: 1px;
}

.social-divider {
  margin: 15px auto 30px;
  padding: 15px 0;
  max-width: 320px;
  border: 2px solid #301934;
  border-radius: 10px;
  text-align: center;
}

.social-divider a {
  color: #301934;
  font-size: 24px;
  margin: 0 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-divider a:hover {
  color: #6a1b9a;
}
/* Back to top button */
#backToTop {
  position: fixed !important; 
  bottom: 30px;               /* slightly closer to bottom */
  right: 30px;                /* slightly closer to right edge */
  display: none;              
  z-index: 1000;

  background: #301934;        
  color: #fff;
  font-size: 22px;            /* adjusted arrow size */
  font-weight: bold;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  transition: opacity 0.3s ease, transform 0.2s ease;
  line-height: 45px;          /* perfectly center the arrow */
}

#backToTop:hover {
  background: #47265a;        
  transform: translateY(-3px);
}
/* Floating menu icon (circular button) */
.floating-menu-icon {
  position: fixed;
  top: 230px;
  left: 50px;
  background-color: #301934;
  color: white;
  font-size: 20px;
  padding: 10px 14px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 2000;
  cursor: pointer;
}

/* "Panel" label below the floating icon */
.floating-label {
  position: fixed;
  top: 275px;
  left: 20px; /* align with panel minus margin */
  font-size: 12px;
  color: grey;
  padding: 2px 6px;
  z-index: 2000;
  white-space: nowrap;
  text-decoration: underline;
  width: calc(180px - 20px); /* match panel width minus 10px margin each side */
  margin: 0 10px;
  box-sizing: border-box;
}

/* Popup menu */
.floating-popup-menu {
  position: fixed;
  top: 280px;
  left: 20px;
  background-color: #ffffff;
  border: 2px solid #301934;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 10px;
  display: none;
  flex-direction: column;
  align-items: center;
  max-height: 50vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  z-index: 1999;
  width: 200px; /* fixed panel width */
  box-sizing: border-box;
  margin: 0 10px; /* 10px margin left & right */
}

/* Scrollbar styling */
.floating-popup-menu::-webkit-scrollbar {
  width: 6px;
}
.floating-popup-menu::-webkit-scrollbar-thumb {
  background-color: #301934;
  border-radius: 6px;
}

/* Dropdown container */
.panel-dropdown {
  display: flex;
  flex-direction: column;
  margin-bottom: 3px;
  width: 100%; /* take full panel width */
}

/* Dropdown toggle */
.dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #301934;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 12px;
  margin: 5px 0;
  cursor: pointer;
  border-radius: 5px;
  user-select: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  border: none;
  box-sizing: border-box;
}

/* Hover effect for dropdown labels */
.dropdown-toggle:hover {
  background-color: #7B68EE;
}

/* Dropdown buttons */
.dropdown-buttons {
  display: none;
  flex-direction: column;
  margin-top: 2px;
}

.panel-dropdown.open .dropdown-buttons {
  display: flex;
}

/* Buttons inside each dropdown */
.floating-popup-menu button {
  width: calc(100% - 20px); /* full panel width minus 10px margin each side */
  display: block;
  background-color: #301934;
  color: white;
  border: none;
  padding: 8px 12px;
  margin: 5px 10px; /* 10px left/right margin */
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
  text-align: left;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

/* Hover effect for buttons */
.floating-popup-menu button:hover {
  background-color: #7B68EE;
}

/* Main Content */
.main-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;   /* ✅ centers children */
  gap: 30px;
  margin: 0 auto;
  width: 100%;
}

.main-text {
  margin: 50px auto;
  color: #301934;
  width:100%;
  max-width:1100px;
}
.main-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: black;
  font-weight:bold;
  font-family: 'Inter', sans-serif;
}
.main-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: black;
  font-weight:bold;
  font-family: 'Inter', sans-serif;
  text-align:center;
}

.main-text h1 {
    text-align:justify; font-size:14px; color:maroon; text-decoration:underline; font-family: 'Inter', sans-serif;
}
.main-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  color: #555;
}
  ul {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 2px;
  text-align: left; /* Default for desktop */
  font-family: 'Inter', sans-serif;
  color: #555;
}
ol {
    font-size: 16px;
  line-height: 1.6;
  margin-bottom: 6px;
  text-align: left; /* Default for desktop */
  font-family: 'Inter', sans-serif;
  color: #555;
}
ol li p,
ul li p {
  margin: 2px 0;
}
.custom-divider {
  border: none;                /* remove default styles */
  height: 2px;                 /* thickness of line */
  background-color: #b3b3b3;   /* gray color */
  width: 100%;                 /* span full width of container */
  margin: 20px 0;              /* spacing above and below */
  opacity: 0.9;                /* make it stand out more */
}
 .streaming-container {
      max-width: 1000px;
      margin: 40px auto;
      background: #f9f9f9;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 20px;
      display: flex;
      gap: 20px;
    }

    /* Left side (guide info) */
    .streaming-left {
      flex: 2;
    }
/* Updated Title Style */
.streaming-title {
  margin-bottom: 30px;
  text-align: left;
}

.streaming-main {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  color:#550000;
}

.streaming-sub {
  font-size: 28px;
  font-weight: normal;
  color: #008631;
  margin-top: 4px;
}

/* Default hide */
.info-section,
.reminder-section {
  display: none;
}

.streaming-info li { 
    font-size:16px;
    text-align:justify;
    color: #555;
    line-height: 1.6;
}
.info-section p { 
    font-size:16px;
    text-align:justify;
    color: #555;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}
    .streaming-buttons {
      display: flex;
      justify-content: space-around;
      margin-bottom: 20px;
    }

    .streaming-buttons button {
      flex: 1;
      margin: 0 5px;
      padding: 12px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      color: #fff;
      transition: transform 0.2s ease, opacity 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .streaming-buttons button:hover {
      transform: scale(1.05);
      opacity: 0.9;
    }

    .btn-youtube { background: #FF0000; }
    .btn-spotify { background: #1DB954; }
    .btn-apple { background: #000000; }

    .streaming-info {
      background: #fff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
    }

    .streaming-info h3 {
      margin-top: 0;
    }

  .streaming-right img {
  height: 300px;              /* Fixed height */
  width: 100%;                /* Adjust width proportionally */
  object-fit: fill;          /* Crop the image to fill space neatly */
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.streaming-right {
  flex: 1;
  display: flex;
  flex-direction: column;       /* 🔥 Stack children vertically */
  align-items: center;          /* Center horizontally */
  justify-content: flex-start;  /* Align to top */
  gap: 16px;                    /* Optional: space between items */
}
.streaming-right iframe {
  width: 100%;
  border: none;
  border-radius: 12px;
}

.streaming-right p {
  margin: 0;
  font-weight: bold;
}

.streaming-reminders {
      max-width: 1000px;
      margin: 40px auto;
      margin-top: 20px;
      padding: 15px;
      background: #f1f1f1;
      border-left: 4px solid #007BFF;
      border-radius: 6px;
    }
.streaming-reminders li {
    font-size:16px;
    text-align:justify;
    color: #555;
    line-height: 1.6;
    width:100%;
}
.link-section {
  display: none;
  margin-top: 20px;
  text-align: center;
}
/* Container */
.buying-container {
  max-width: 100%;
  max-height: 100px;
  margin: 40px auto;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  display: flex;
}

/* Left side (guide info) */
.buying-left {
  flex: 2;
}

.buying-title {
  margin-bottom: 30px;
  text-align: left;
}

.buying-main {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
  color: #550000;
}

.buying-sub {
  font-size: 28px;
  font-weight: normal;
  color: #008631;
  margin-top: 4px;
}

/* Right side */
.buying-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

/* Image wrapper + overlay link */
.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper img {
  width: 1000px;
  height: 100px;
  object-fit: fill;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* Overlay link (now top-left) */
.overlay-link {
  position: absolute;
  top: 10px;
  left: 10px; /* ⬅ moved to left */
  background: rgba(0, 123, 255, 0.9);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background 0.2s ease;
}

.overlay-link:hover {
  background: rgba(0, 86, 179, 1);
}

/* ✅ Modal popup */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  overflow-y: auto; /* allow full-page scroll if modal is very tall */
  padding: 40px 0;  /* margin top/bottom */
}

.modal-content {
  background: white;
  padding: 25px;
  border-radius: 14px;
  width: 95%;
  max-width: 650px;     /* ⬅ wider */
  max-height: 80vh;     /* ⬅ limit height */
  overflow-y: auto;     /* ⬅ scrollbar when content is long */
  position: relative;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  margin: auto;         /* keeps it centered with padding applied */
}

.modal-content h2 {
    font-size:24px;
    text-align:center;
    color:#555;
    font-family: 'Inter', sans-serif;
}
.modal-content h3 {
    font-size:20px;
    text-align:justify;
    color:#555;
    font-family: 'Inter', sans-serif;
}
.modal-content p {
    color:#555;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    text-align:justify;
}

/* ✅ Close button */
.close-btn {
  position: absolute;
  top: 12px; 
  right: 12px;
  width: 32px;
  height: 32px;
  font-size: 20px;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;   /* ⬅ circle */
  background: #eee;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: #ff4d4d;
  color: white;
}

/* Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to   {opacity: 1; transform: scale(1);}
}

    /* ✅ Grid container */
    .photo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1000px;
      margin: auto;
    }

    .photo-item {
      text-align: center;
    }

    .photo-item img {
      width: 100%;
      height: 200px;
      object-fit: contain;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .photo-item img:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

    .caption {
      margin-top: 10px;
    }
    
    .caption p {
        font-size: 15px;
      color: #555;
      text-align: justify;
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
    }

    /* ✅ Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 10000;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80vh;
      border-radius: 10px;
    }

    .lightbox-caption {
      margin-top: 15px;
      text-align: justify;
      color: white;
      font-size: 16px;
    }

    /* ✅ Controls */
    .lightbox .close, 
    .lightbox .prev, 
    .lightbox .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 30px;
      padding: 12px;
      cursor: pointer;
      background: rgba(0,0,0,0.4);
      border-radius: 50%;
      transition: background 0.3s;
      user-select: none;
    }

    .lightbox .close {
      top: 20px;
      right: 20px;
      transform: none;
    }

    .lightbox .prev { left: 30px; }
    .lightbox .next { right: 30px; }

    .lightbox .prev:hover,
    .lightbox .next:hover,
    .lightbox .close:hover {
      background: rgba(255,255,255,0.2);
    }
    
    
@media (max-width: 768px) {
 .desktop-menu { display: none; }
  .menu-toggle-wrapper {
    display: flex; align-items: center; justify-content: center;
    background: #563c5c; padding: 4px 8px; height: 34px; gap: 4px; width: 100%;
  }
  .menu-toggle { font-size: 18px; color: white; }
  .menu-label { font-size: 14px; color: white; font-weight: 600; }

  .sidebar {
    display: block;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    width: auto; max-width: none;
    height: 50vh; /* ⬅️ Half the screen height */
    background: #6d4c7d;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    overflow-y: auto;
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    padding: 20px 15px;
  }
  .sidebar.show { opacity: 1; visibility: visible; transform: translateY(0); }
  .sidebar ul li { margin-bottom: 20px; } /* more spacing */
  .sidebar ul li a {
    text-decoration: none;
    color: #f2e9f8;
    font-size: 18px; /* balanced size */
    line-height: 1.5;
    font-family: Montserrat, sans-serif;
    font-weight: 500;
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.3s;
  }
  .sidebar ul {
  list-style: none;
  padding: 20px 0 0 0; /* ⬅️ pushes menu items down */
  margin: 0;
}
  .sidebar ul li a:hover { background: #8a6b96; }

  .sidebar .dropdown-content {
    background: #c9b6d4;
    border-radius: 6px;
    padding: 4px 0;
  }
  .sidebar .dropdown-content a {
    color: #301934;
    font-size: 18px;
    padding: 8px 14px;
    display: block;
  }
  .sidebar .dropdown-content a:hover { background: #b497c4; color: #fff; }

  /* Bigger close button */
  .sidebar .close-btn {
    position: absolute;
    top: 8px; right: 20px;
    font-size: 36px; /* ⬅️ Bigger for easy tapping */
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    background:transparent;
  }
  .sidebar .dropdown > a i {
  transition: transform 0.3s;
}
.sidebar .dropdown > a i.rotate {
  transform: rotate(180deg);
}
/* Make all sidebar menu labels uppercase */
.sidebar ul li a,
.sidebar .dropdown-content a {
  text-transform: uppercase;
}
  .streaming-container {
    flex-direction: column; /* Stack left and right vertically */
  }

  /* Keep streaming-left with full width (you can adjust this if needed) */
  .streaming-left {
    flex: none; /* Remove flex-grow/shrink */
    width: 100%; /* Full width */
  }

  /* streaming-right should be full width and stack below streaming-left */
  .streaming-right {
    flex: none;
    width: 100%; /* full width */
    align-items: center; /* Center content horizontally */
    margin-top: 20px; /* spacing from streaming-left */
  }

  /* image inside streaming-right should be responsive */
  .streaming-right img {
    width: 100%;
    height: auto; /* Let height scale proportionally */
  }
.buying-container {
    flex-direction: row;  /* ✅ keep side-by-side */
    justify-content: space-between;
  }

  .buying-main {
    font-size: 28px;
  }

  .buying-sub {
    font-size: 20px;
  }

  .image-wrapper img {
    max-width: 250px;  /* ✅ smaller image for mobile */
  }
  .photo-item img {
    height: 250px;   /* ✅ taller so it looks wider */
    object-fit: cover; /* ✅ fill space better */
  }
  .main-text {
    margin: 30px auto;
  }
  .info-section {
    width:100%;
    margin:0;
    padding:0;
}
.main-text ul li {padding-left:0; margin-left:5px; margin-right:5px;  text-align: justify; color: #555; line-height: 1.6; font-size:16px; font-family: 'Inter', sans-serif;}
.main-text p { text-align: justify; color: #555; line-height: 1.6; font-family: 'Inter', sans-serif; font-size:16px; margin-bottom:4px; margin-left:5px; margin-right:5px; padding:0; }
.item1 { padding-left:0; margin-left:5px; margin-right:5px;  text-align: justify; color: #555; line-height: 1.6; font-size:16px; font-family: 'Inter', sans-serif;}
.item2 { padding-left:0; margin-left:10px; margin-right:5px; text-align: justify; color: #555; line-height: 1.6; font-size:16px; font-family: 'Inter', sans-serif; }
.item3 {  padding-left:0; margin-left:25px; margin-right:5px; text-align: justify; color: #555; line-height: 1.6; font-size:16px; font-family: 'Inter', sans-serif; }
.reminder-section ul { padding:0; margin-left:5px; text-align: justify; color: #555; line-height: 1.6; font-size:16px; font-family: 'Inter', sans-serif;}
.info-section ul {padding:0; margin-left:5px; text-align: justify; color: #555; line-height: 1.6; font-size:16px; font-family: 'Inter', sans-serif;}
.mobile-list p { text-align: justify; color: #555; line-height: 1.6; font-family: 'Inter', sans-serif; font-size:16px; margin-left:5px; margin-right:5px;}
.buying-list { text-align: justify; color: #555; line-height: 1.6; font-family: 'Inter', sans-serif; font-size:16px; margin: auto 15px; }
.modal-content p { text-align:justify; color: #555; line-height: 1.6; font-family: 'Inter', sans-serif; font-size:16px; }
.square-list { list-style-type: square; }

    
}

