/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to bottom right, #ffffff, #f0f7ff);
    color: #222;
    overflow-x: hidden;
    line-height: 1.7;
    padding-top: 90px;
    text-align: center;
    overflow-x: hidden;
  }
  
/* HEADER LAYOUT */
/* === GENERAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #222;
    padding-top: 70px; /* header height space */
    overflow-x: hidden;
    background: #f9f9f9;
  }
  
  /* === BLOG STYLE HEADER === */
  body {
    margin: 0;
    font-family: sans-serif;
    padding-top: 70px;
  }
  
  .blog-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    z-index: 1000;
  }
  
  .blog-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #5c3a1a;
  }
  
  .blog-logo-img {
    height: 38px;
    width: auto;
  }
  
  .blog-menu-btn {
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  /* 🔒 Hide menu by default on mobile */
  .blog-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }
  
  .blog-nav.open {
    display: flex;
  }
  
  .blog-nav a {
    text-decoration: none;
    color: #000;
    padding: 0.5rem 0;
  }
  
  /* ✅ On desktop: show menu, hide toggle */
  @media (min-width: 768px) {
    .blog-menu-btn {
      display: none;
    }
  
    .blog-nav {
      display: flex !important;
      position: static;
      flex-direction: row;
      background: none;
      box-shadow: none;
      padding: 0;
      gap: 1.5rem;
    }
  }
  
  /* === OPTIONAL: HERO SECTION STYLE === */
  .hero {
    padding: 2.5rem 1rem;
    text-align: center;
  }
  .glow-text {
    font-size: 2rem;
    text-shadow: 0 0 8px #b47bff, 0 0 16px #fff;
  }
  .brown-text {
    color: #5c3a1a;
  }
  
  /* BROWN HEADINGS */
  .brown-text {
    color: #5c3a1a;
  }
  
  /* HERO */
  .hero {
    padding: 3rem 1.5rem;
  }
  .glow-text {
    font-size: 2.5rem;
    text-shadow: 0 0 8px #818181, 0 0 16px #fff;
    animation: glow 3s infinite alternate;
  }
  @keyframes glow {
    100% { text-shadow: 0 0 20px #363636; }
  }
  .hero p {
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-inline: auto;
  }
  
  /* SECTIONS */
  section {
    padding: 2.5rem 1rem;
    max-width: 1100px;
    margin: auto;
  }
  section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  /* VERSE SECTION */
  .verse-section {
    background: #fafaff;
    border-left: 5px solid #00c3ff;
    border-right: 5px solid #ff00c8;
    border-radius: 16px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.03);
  }
  .verse-section p {
    font-style: italic;
    font-size: 1.2rem;
    max-width: 800px;
    margin: auto;
    color: #444;
  }
  
  /* ABOUT */
  .about {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.03);
  }
  
/* RESET any old gallery grid if it's still there */
.gallery .grid {
    display: none !important;
  }
  
  /* NEW custom vertical stacked format */
  .custom-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
  }
  
  .custom-gallery .row {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .custom-gallery .row.one {
    justify-content: center;
  }
  
  .custom-gallery img {
    width: 140px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .custom-gallery img:hover {
    transform: scale(1.05);
  }
  
  /* ✅ MOBILE override: make 2 side-by-side stack vertically */
  @media (max-width: 768px) {
    .custom-gallery .row.two {
      flex-direction: column;
      align-items: center;
    }
  
    .custom-gallery img {
      width: 80%;
    }
  }
  @media (min-width: 768px) {
    .custom-gallery img {
      width: 180px;
      max-width: 100%;
    }
  }
  
  
  
  /* COUNTDOWN */
  .countdown .timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  .timer div {
    background: #eef5ff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 0 100px #c29469;
    min-width: 90px;
  }
  .timer span {
    font-size: 2rem;
    color: #080808; /* changed from #7f00ff */
    font-weight: bold;
  }
  
  
  /* IMAGE STRIP */
  .image-strip {
    overflow: hidden;
    width: 100%;
    background: #ffffff, #f0f7ff;
  }
  
  .strip-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation: scroll 10s linear infinite;
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* enough to scroll halfway */
  }
  
  .strip-track img {
    width: 280px;
    flex-shrink: 0;
    border-radius: 12px;
  }
  
  
  /* CONTACT FORM */
  .reminder form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .reminder input,
  .reminder textarea {
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 16px;
    font-size: 1rem;
    width: 100%;
  }
  .reminder textarea {
    resize: vertical;
    min-height: 120px;
  }
  .reminder button {
    background: #000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .reminder button:hover {
    background: #222;
    transform: scale(1.05);
  }
  .join-link {
    font-weight: bold;
    color: #000;
    text-decoration: underline;
  }
  .join-link:hover {
    color: #7f00ff;
  }


  .form-message {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-top: 1rem;
    font-size: 1rem;
    color: green;
    text-align: center;
  }
  
  .form-message.show {
    display: block;
    opacity: 1;
  }
  .status-message {
    opacity: 0;
    transition: opacity 0.5s ease;
    color: lime;
    margin-top: 10px;
    pointer-events: none;
  }
  
  .status-message.show {
    opacity: 1;
  }
  
  
  
  /* FOOTER */
  .footer {
    background: #f4f6ff;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #ccc;
  }
  .footer .socials a {
    margin: 0 10px;
    text-decoration: none;
    color: #000; /* changed from #7f00ff */
    font-weight: bold;
  }
  
  .footer .socials a:hover {
    color: #333; /* darker hover */
    text-shadow: none; /* remove purple glow */
  }
  
  
  /* FADE-IN ANIMATION */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .glow-text {
      font-size: 2rem;
    }
  
    .nav {
      display: flex;
    }
  
    .grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .timer {
      flex-direction: row;
      justify-content: center;
      gap: 0.8rem;
    }
  
    .timer div {
      padding: 0.6rem;
      min-width: 70px;
    }
  
    .timer span {
      font-size: 1.4rem;
    }
  
    section h2 {
      font-size: 1.5rem;
    }
  
    .strip-track img {
      width: 80vw;
    }
  

  }
  
  /* DESKTOP BOOST */
  @media (min-width: 1024px) {
    body {
      font-size: 1.2rem;
    }
  
    h1.glow-text {
      font-size: 3rem;
    }
  
    h2 {
      font-size: 2.2rem;
    }
  
    section p {
      font-size: 1.3rem;
    }
  }
  


  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      flex-direction: row;
      max-height: none;
      overflow: visible;
      margin-top: 0;
      gap: 1.5rem;
    }
  
    .menu-btn {
      display: none;
    }
  }
  
  .brown-text {
    color: #5c3a1a !important;
  }
  