:root {
    --accent: #F78D15;
    --dark: #0f0f0f;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: white;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}

/* ================= PARTICLES CANVAS ================= */

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -3;
}

/* ================= DRIFTING GRADIENT ================= */

body::after {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(247,141,21,0.06), transparent 60%);
    animation: drift 25s linear infinite;
    z-index: -2;
}

@keyframes drift {
    from { transform: translate(0,0); }
    to { transform: translate(-20%, -20%); }
}

/* ================= ORIGINAL BACKGROUND GLOW ================= */

body::before {
    content: "";
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(247,141,21,0.15), transparent 70%);
    top: -200px;
    left: -200px;
    animation: floatGlow 10s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes floatGlow {
    from { transform: translate(0,0); }
    to { transform: translate(200px,200px); }
}

/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(15px);
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 40px;
    background: rgba(0,0,0,0.85);
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover { color: var(--accent); }

.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.nav-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 900px) {

    .navbar { padding: 15px 20px; }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(15px);
        width: 220px;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateX(100%);
        transition: 0.3s ease;
        border-radius: 0 0 0 20px;
    }

    .nav-links a { margin: 0; }

    .nav-links.active { transform: translateX(0); }

    .nav-toggle { display: block; }
}

/* ================= HERO ================= */

.hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 80px;
    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)),
        url("ARBackground.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (hover: hover) and (pointer: fine) {
    .hero { background-attachment: fixed; }
}

.hero h1 img {
    width: clamp(180px, 38vw, 580px);
    max-width: 90%;
    height: auto;
    animation: logoGlow 2.5s ease-in-out infinite alternate;
}

@media (min-width: 1200px) {
    .hero h1 img {
        filter:
            drop-shadow(3px 0 0 white)
            drop-shadow(-3px 0 0 white)
            drop-shadow(0 3px 0 white)
            drop-shadow(0 -3px 0 white)
            drop-shadow(0 0 30px rgba(255,255,255,0.9))
            drop-shadow(0 0 60px rgba(255,255,255,0.7));
    }
}

@keyframes logoGlow {
    from {
        filter:
            drop-shadow(2px 0 0 white)
            drop-shadow(-2px 0 0 white)
            drop-shadow(0 2px 0 white)
            drop-shadow(0 -2px 0 white)
            drop-shadow(0 0 10px rgba(255,255,255,0.6))
            drop-shadow(0 0 20px rgba(255,255,255,0.4));
    }
    to {
        filter:
            drop-shadow(2px 0 0 white)
            drop-shadow(-2px 0 0 white)
            drop-shadow(0 2px 0 white)
            drop-shadow(0 -2px 0 white)
            drop-shadow(0 0 25px rgba(255,255,255,0.9))
            drop-shadow(0 0 50px rgba(255,255,255,0.7));
    }
}

.tagline { margin-top: 20px; font-size: 20px; opacity: 0.9; }

.accent-line {
    width: 100px;
    height: 4px;
    margin: 30px auto;
    background: linear-gradient(90deg,var(--accent),#ffb347,var(--accent));
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent);
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(247,141,21,0.4);
}

.btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 35px rgba(247,141,21,0.9);
}

/* ================= SECTIONS ================= */

section {
    padding: 120px 20px;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    scroll-margin-top: 120px;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 40px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto 60px auto;
}

.glass {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 0 40px rgba(247,141,21,0.15);
}

/* VIDEO */

.video-wrapper { max-width: 800px; margin: 0 auto; }

.video-container {
    position: relative;
    padding-bottom: 50%;
    height: 0;
    border-radius: 20px;
    overflow: hidden;
    max-height: 420px;
}

.video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* SHOWS */

.show-list { max-width: 800px; margin: auto; }

.show-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.show-item:hover { background: rgba(247,141,21,0.08); }

/* MEMBERS */

.members-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.member-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;

    /* FIX: removes fixed image height blur issues */
    aspect-ratio: 1 / 1.2;
}

/* IMAGE FIX */
.member-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* FIX: improves rendering sharpness */
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* hover zoom */
.member-card:hover img {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

/* INFO PANEL */
.member-info {
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    padding: 20px;
    transition: 0.5s;
}

/* DESKTOP HOVER EFFECT */
@media (hover: hover) and (pointer: fine) {
    .member-info {
        transform: translateY(100%);
    }

    .member-card:hover .member-info {
        transform: translateY(0);
    }
}

/* MOBILE / TOUCH */
@media (hover: none) and (pointer: coarse) {
    .member-info {
        transform: translateY(0);
        position: relative;
        background: rgba(0,0,0,0.85);
    }

    .member-card {
        display: flex;
        flex-direction: column;
        box-shadow: 0 0 30px rgba(247,141,21,0.15);
    }
}

.member-name {
    color: var(--accent);
    font-size: 20px;
}

/* CONTACT */

.contact-form { max-width: 500px; margin: auto; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: white;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: none;
    background: var(--accent);
    color: white;
    font-weight: bold;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 2.5;
    font-size: 17px;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 40px;
    background: #0b0b0b;
    opacity: 0.6;
}


.gallery-section {
  width: 100%;
  padding: 70px 0;
  background: #111;
  color: #fff;
}

/* Header */
.gallery-header {
  max-width: 1100px;
  margin: 0 auto 10px;
  padding: 0 20px;
}

.gallery-header h2 {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 0;
}

.gallery-header p {
  margin-top: 6px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Scroll container */
.horizontal-gallery {
  display: flex;
  gap: 18px;

  overflow-x: auto;
  overflow-y: hidden;

  padding: 25px 20px 35px;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar (clean minimal UI) */
.horizontal-gallery::-webkit-scrollbar {
  height: 6px;
}

.horizontal-gallery::-webkit-scrollbar-track {
  background: transparent;
}

.horizontal-gallery::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

/* Card */
.gallery-card {

  width: auto;
  height: 65vh;

  flex: 0 0 auto;
  scroll-snap-align: center;

  border-radius: 14px;
  overflow: hidden;

  background: #1a1a1a;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Image */
.gallery-card img {
  height: 100%;
  width: auto;
  display: block;

  object-fit: cover;

  border-radius: 14px;

  transition: transform 0.35s ease, filter 0.35s ease;
}


/* Hover — subtle, premium */
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.gallery-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* spacing refinement */
.horizontal-gallery {
  gap: 22px;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-card img {
    height: 50vh;
  }

  .gallery-header h2 {
    font-size: 1.5rem;
  }

  .horizontal-gallery {
    gap: 14px;
    padding: 20px 16px 30px;
  }
}

/* Lightbox overlay */
/* Lightbox base */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;

  z-index: 9999;
  overflow: hidden;
}

/* Active state */
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

/* Blurred background */
.lightbox-blur {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  filter: blur(30px) brightness(0.5);
  transform: scale(1.1);

  transition: background-image 0.3s ease;
}

/* Main image */
.lightbox-img {
  position: relative;
  max-width: 90%;
  max-height: 85%;

  border-radius: 14px;

  z-index: 2;

  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 25px;

  font-size: 34px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;

  z-index: 3;
}

/* Navigation arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(0,0,0,0.3);
  border: none;
  color: white;

  font-size: 30px;
  padding: 10px 16px;
  border-radius: 10px;

  cursor: pointer;
  z-index: 3;

  transition: background 0.2s ease;
}

.nav-btn:hover {
  background: rgba(0,0,0,0.6);
}

.prev { left: 20px; }
.next { right: 20px; }

.gallery-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 40px;
  gap: 12px;
}

.gallery-logo {
  width: 80px;   /* adjust as needed */
  height: auto;
}

.tagline {
  font-size: 18px;
  font-weight: 500;
}

.accent-line {
  width: 90px;
  height: 3px;
  margin: 20px auto;

  border-radius: 999px;

  opacity: 0.85;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap; /* stacks on small screens */
}

.btn {
  padding: 10px 18px;
  background: #1877f2;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.2s ease;


}

.btn:hover {
  opacity: 0.85;
}

/* Instagram variant */
.btn.instagram {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.logo-circle {
  width: 80px;      /* adjust size */
  height: 80px;     /* must match width */
  object-fit: cover;

  border-radius: 50%;   /* makes it circular */
}

