/* =========================================================
   VOCAL SADI — Red & Black Premium Theme
   Mobile-first, 8 responsive breakpoints
   ========================================================= */

:root {
    --red: #e10600;
    --red-dark: #a80500;
    --red-light: #ff2d20;
    --black: #0a0a0a;
    --black-soft: #141414;
    --black-card: #1b1b1b;
    --gold: #d4af37;
    --white: #f5f5f5;
    --muted: #a0a0a0;
    --radius: 10px;
    --shadow: 0 10px 30px rgba(0,0,0,.5);
    --transition: .3s cubic-bezier(.4,0,.2,1);
    font-size: 15px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Poppins', 'Hind Siliguri', Arial, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 18px; }

section { padding: 60px 0; position: relative; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
    font-size: 2.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    display: inline-block;
    position: relative;
    padding-bottom: 14px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 4px;
}
.section-title p { color: var(--muted); margin-top: 10px; }

.btn {
    display: inline-block;
    padding: 13px 32px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    letter-spacing: .5px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(225,6,0,.35);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(225,6,0,.5); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--red);
    box-shadow: none;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(10,10,10,.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(225,6,0,.25);
    transition: var(--transition);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: flex; align-items: center; gap: 0; font-weight: 800; font-size: 1.4rem; }
.logo span { color: var(--red); }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a {
    padding: 10px 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: .82rem;
    letter-spacing: .8px;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
}
.nav-menu a:hover, .nav-menu a.active { background: var(--red); color: #fff; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    padding: 8px;
}
.menu-toggle span {
    width: 26px; height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--red); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--red); }

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    background: radial-gradient(circle at 30% 30%, rgba(225,6,0,.18), transparent 55%), var(--black);
    overflow: hidden;
    padding-top: 74px;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(225,6,0,.12) 0%, transparent 45%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-eyebrow {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .8rem;
    margin-bottom: 18px;
    animation: fadeInUp .8s ease both;
}
.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp .8s ease .1s both;
}
.hero-content h1 span { color: var(--red); }
.hero-content p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 560px;
    animation: fadeInUp .8s ease .2s both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp .8s ease .3s both; }
.hero-social { display: flex; gap: 14px; margin-top: 34px; animation: fadeInUp .8s ease .4s both; }
.hero-social a {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    transition: var(--transition);
}
.hero-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-4px); }

@keyframes fadeInUp { from { opacity:0; transform: translateY(24px);} to {opacity:1; transform:translateY(0);} }
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.about-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid rgba(225,6,0,.3);
    aspect-ratio: 4/5;
    object-fit: cover;
}
.about-text p { color: var(--muted); margin-bottom: 16px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.card {
    background: var(--black-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    transition: var(--transition);
}
.card:hover { transform: translateY(-6px); border-color: rgba(225,6,0,.4); box-shadow: var(--shadow); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card-body p { color: var(--muted); font-size: .9rem; }
.card-meta { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display:block; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.08); }

/* ---------- Music ---------- */
.music-item { display: flex; gap: 16px; align-items: center; padding: 16px; }
.music-item img { width: 76px; height: 76px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.music-info { flex: 1; min-width: 0; }
.music-info h3 { font-size: 1rem; }
.music-info audio { width: 100%; margin-top: 10px; height: 34px; }

/* ---------- Pagination ---------- */
.pagination-bar {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap; margin-top: 40px;
}
.pagination-count { color: var(--muted); font-size: .85rem; width: 100%; text-align: center; }
.pagination { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pagination-page, .pagination-arrow {
    min-width: 40px; height: 40px; padding: 0 6px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    transition: var(--transition);
    font-size: .88rem;
}
.pagination-page:hover, .pagination-arrow:hover { background: rgba(255,255,255,.08); }
.pagination-page.active { background: var(--red); border-color: var(--red); }
.pagination-arrow.disabled { opacity: .3; pointer-events: none; }
.pagination-ellipsis { padding: 0 4px; color: var(--muted); }
.per-page-form { display: flex; align-items: center; gap: 8px; }
.per-page-form label { color: var(--muted); font-size: .85rem; }
.per-page-form select {
    background: var(--black-soft, #141414); color: var(--white);
    border: 1px solid rgba(255,255,255,.15); border-radius: 8px;
    padding: 8px 12px; font-size: .85rem; cursor: pointer;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); }
.form-control {
    width: 100%; padding: 13px 16px;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,6,0,.15); }
textarea.form-control { resize: vertical; min-height: 130px; }
.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; }
.alert-success { background: rgba(46,160,67,.15); border: 1px solid rgba(46,160,67,.4); color: #7ee787; }
.alert-error { background: rgba(225,6,0,.15); border: 1px solid rgba(225,6,0,.4); color: #ff8a80; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-item i { color: var(--red); font-size: 1.2rem; margin-top: 3px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-soft); border-top: 1px solid rgba(225,6,0,.2); padding: 50px 0 20px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 30px; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { width: 38px; height: 38px; display:flex; align-items:center; justify-content:center; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); transition: var(--transition); }
.footer-social a:hover { background: var(--red); border-color: var(--red); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: var(--muted); font-size: .85rem; }
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 1500;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    font-size: 1.5rem; color: #fff;
    animation: pulse 2.4s infinite;
}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 70%{box-shadow:0 0 0 14px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

/* =========================================================
   RESPONSIVE — 8 variants
   1) <=360   extra-small mobile
   2) 361-480 small mobile
   3) 481-600 large mobile
   4) 601-767 small tablet / phablet  (4 mobile variants above)
   5) 768-991 tablet
   6) 992-1199 small laptop
   7) 1200-1439 desktop
   8) >=1440  large desktop
   ========================================================= */

/* 1) up to 360px */
@media (max-width: 360px) {
    :root { font-size: 12.5px; }
    .container { padding: 0 12px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn { width: 100%; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }
}

/* 2) 361px - 480px */
@media (min-width: 361px) and (max-width: 480px) {
    :root { font-size: 13px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 3) 481px - 600px */
@media (min-width: 481px) and (max-width: 600px) {
    :root { font-size: 13.5px; }
    .about-grid { grid-template-columns: 1fr; }
}

/* 4) 601px - 767px (largest mobile variant) */
@media (min-width: 601px) and (max-width: 767px) {
    :root { font-size: 14px; }
    .grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Shared: hide desktop nav, show hamburger below 992px */
@media (max-width: 991px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 74px; right: -100%;
        flex-direction: column;
        width: min(320px, 82%);
        height: calc(100vh - 74px);
        background: var(--black-soft);
        padding: 30px 22px;
        gap: 4px;
        align-items: flex-start;
        border-left: 1px solid rgba(225,6,0,.25);
        transition: right .4s cubic-bezier(.4,0,.2,1);
        overflow-y: auto;
        z-index: 1000;
    }
    .nav-menu.open { right: 0; }
    .nav-menu a { width: 100%; }
}

/* 5) 768px - 991px tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .about-grid { grid-template-columns: .8fr 1fr; }
    .grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 6) 992px - 1199px small laptop */
@media (min-width: 992px) and (max-width: 1199px) {
    .about-grid { grid-template-columns: .8fr 1fr; }
    .grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* 7) 1200px - 1439px desktop */
@media (min-width: 1200px) and (max-width: 1439px) {
    .about-grid { grid-template-columns: .7fr 1fr; }
    .grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* 8) >=1440px large desktop */
@media (min-width: 1440px) {
    .container { max-width: 1320px; }
    .about-grid { grid-template-columns: .7fr 1fr; }
    .grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- "Original" link / "Watch Video" buttons ---------- */
.btn-sm-icon, .btn-watch {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 22px; font-size: .82rem;
}
.btn-watch i, .btn-sm-icon i { font-size: .95rem; }

/* ---------- YouTube watch-video modal ---------- */
.video-modal {
    position: fixed; inset: 0; z-index: 2000;
    display: none; align-items: center; justify-content: center;
    padding: 20px;
}
.video-modal.is-open { display: flex; }
.video-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(6,6,6,.86);
    backdrop-filter: blur(4px);
}
.video-modal-box {
    position: relative; width: 100%; max-width: 900px;
    background: var(--black-soft, #141414);
    border: 1px solid rgba(225,6,0,.3);
    border-radius: var(--radius, 10px);
    box-shadow: 0 20px 60px rgba(0,0,0,.6);
    overflow: hidden;
    animation: videoModalPop .25s ease;
}
@keyframes videoModalPop {
    from { transform: scale(.94); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}
.video-modal-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; color: #fff; font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.video-modal-close {
    background: none; border: none; color: #fff;
    font-size: 1.6rem; line-height: 1; cursor: pointer;
    padding: 0 4px; opacity: .8;
}
.video-modal-close:hover { opacity: 1; color: var(--red); }
.video-modal-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
