/* ----- global reset & font ----- */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body {
      font-family: "Segoe Print", "Comic Sans MS", "Bradley Hand", cursive !important;
      font-size: 16px !important;
      line-height: 1.5 !important;
      color: #0f172a;
      background: #fff;
      scroll-behavior: smooth;
    }
    /* ----- palette helpers ----- */
    .bg-primary { background-color: #0f172a; }
    .bg-secondary { background-color: #be185d; }
    .bg-neutral { background-color: #f472b6; }
    .bg-accent { background-color: #fcd34d; }
    .text-primary { color: #0f172a; }
    .text-secondary { color: #be185d; }
    .text-neutral { color: #f472b6; }
    .text-accent { color: #fcd34d; }
    .text-white { color: #fff; }
    .text-dark { color: #0f172a; }

    /* ----- layout containers ----- */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .container-full { width: 100%; padding: 0; }

    /* ----- header / nav ----- */
    .site-header {
      background: #0f172a;
      padding: 8px 0;
      position: relative;
      z-index: 100;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .logo-link { display: inline-flex; align-items: center; }
    .logo-img {
      height: 44px;
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      color: #fff;
      text-decoration: none;
      font-size: 16px !important;
      font-weight: 500 !important;
      transition: opacity 0.2s;
    }
    .nav-links a:hover { opacity: 0.8; }
    .nav-links .signin-btn {
      background: #fcd34d;
      color: #0f172a;
      padding: 8px 24px;
      border-radius: 999px;
      font-weight: 600 !important;
      display: inline-block;
      border: none;
      cursor: pointer;
      font-family: inherit !important;
      font-size: 16px !important;
      transition: background 0.2s;
    }
    .nav-links .signin-btn:hover { background: #fbbf24; opacity: 1; }

    /* hamburger – hidden on desktop */
    .hamburger {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 8px;
      position: absolute;
      left: 16px;
      top: 16px;
      z-index: 200;
    }
    .hamburger span {
      display: block;
      width: 28px;
      height: 3px;
      background: #fff;
      margin: 5px 0;
      border-radius: 4px;
    }

    /* ----- hero ----- */
    .hero {
      position: relative;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url('https://mspost.idhubs.com/uploads/community/131/ai-website/hero-275c2091e3187bc58ff948c44043b7ac.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      width: 100%;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(15,23,42,0.55);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
      padding: 40px 24px;
      max-width: 900px;
    }
    .hero-content h1 {
      font-size: 48px !important;
      font-weight: 700 !important;
      line-height: 1.2 !important;
      margin-bottom: 20px;
      color: #fff;
    }
    .hero-content p {
      font-size: 20px !important;
      margin-bottom: 24px;
      opacity: 0.95;
    }
    .hero-cta {
      display: inline-block;
      background: #fcd34d;
      color: #0f172a;
      font-weight: 700 !important;
      padding: 16px 48px;
      border-radius: 999px;
      font-size: 20px !important;
      text-decoration: none;
      transition: background 0.2s;
      font-family: inherit !important;
    }
    .hero-cta:hover { background: #fbbf24; }

    /* ----- sections general ----- */
    section { padding: 70px 0; }
    .section-title {
      font-size: 36px !important;
      font-weight: 700 !important;
      margin-bottom: 24px;
      color: #0f172a;
    }
    .section-sub { font-size: 18px !important; margin-bottom: 40px; color: #0f172a; }

    /* ----- gallery grid (main) ----- */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .gallery-grid img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      display: block;
    }

    /* ----- events gallery (2‑column) ----- */
    .events-gallery-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }
    .thumb-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .thumb-grid img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 16px;
      cursor: pointer;
      transition: transform 0.2s;
      display: block;
    }
    .thumb-grid img:hover { transform: scale(1.02); }
    .gallery-viewer {
      display: none;
      flex-direction: column;
      gap: 16px;
    }
    .gallery-viewer.active { display: flex; }
    .viewer-main {
      position: relative;
      width: 100%;
    }
    .viewer-main img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: 20px;
      display: block;
    }
    .viewer-controls {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      margin-top: 8px;
    }
    .viewer-controls button {
      background: #0f172a;
      color: #fff;
      border: none;
      padding: 8px 20px;
      border-radius: 999px;
      font-size: 16px !important;
      cursor: pointer;
      font-family: inherit !important;
    }
    .viewer-dots {
      display: flex;
      gap: 8px;
      justify-content: center;
    }
    .viewer-dots span {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ccc;
      cursor: pointer;
    }
    .viewer-dots span.active { background: #0f172a; }
    .back-to-thumbs {
      background: transparent;
      border: 2px solid #0f172a;
      color: #0f172a;
      padding: 6px 18px;
      border-radius: 999px;
      cursor: pointer;
      font-family: inherit !important;
      font-size: 14px !important;
      align-self: flex-start;
    }
    .events-right h3 { font-size: 28px !important; margin-bottom: 16px; color: #0f172a; }
    .events-right p { margin-bottom: 16px; font-size: 16px !important; }
    .events-right ul { margin-bottom: 24px; padding-left: 20px; }
    .events-right li { margin-bottom: 6px; }
    .member-btn {
      background: #fcd34d;
      color: #0f172a;
      padding: 12px 36px;
      border-radius: 999px;
      font-weight: 700 !important;
      font-size: 18px !important;
      text-decoration: none;
      display: inline-block;
      font-family: inherit !important;
    }
    .member-btn:hover { background: #fbbf24; }

    /* ----- dynamic feed containers (left‑aligned, full‑width) ----- */
    .dynamic-feed {
      width: 100%;
      text-align: left;
    }
    .dynamic-feed > div {
      width: 100%;
    }

    /* ----- footer ----- */
    footer {
      background: #0f172a !important;
      color: #fff !important;
      padding: 40px 24px !important;
      text-align: center !important;
    }
    footer a {
      color: #fcd34d;
      text-decoration: none !important;
    }
    footer a:hover { text-decoration: none !important; }
    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 20px;
      list-style: none;
    }
    .footer-links a { color: #fff; font-size: 15px !important; }
    .footer-copy { font-size: 14px !important; margin-top: 8px; }
    .footer-addr { font-size: 14px !important; margin-top: 4px; opacity: 0.8; }

    /* ----- mobile / responsive ----- */
    @media (max-width: 768px) {
      .hamburger { display: block; }
      .header-inner {
        flex-direction: column;
        align-items: center;
        padding-top: 8px;
      }
      .logo-link { margin: 0 auto; }
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0f172a;
        padding: 16px 24px;
        gap: 16px;
        align-items: flex-start !important;
        text-align: left !important;
      }
      .nav-links.open { display: flex; }
      .nav-links a {
        display: block;
        width: 100%;
        text-align: left !important;
      }
      .nav-links .signin-btn {
        width: auto;
        text-align: left;
      }
      .hero-content h1 { font-size: 32px !important; }
      .hero-content p { font-size: 18px !important; }
      .gallery-grid { grid-template-columns: 1fr; }
      .events-gallery-wrap { grid-template-columns: 1fr; }
      .thumb-grid { grid-template-columns: 1fr 1fr; }
      .viewer-main img { height: 240px; }
      .section-title { font-size: 28px !important; }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    }
