/* Shaitan Singh Vavdi - Design System & Custom Styles */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Syne:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Color & Variable System */
:root {
    --bg-primary: #fdf2f4;
    --bg-secondary: #f8e5e8;
    --bg-tertiary: #f2d5db;
    --accent-red: #dd3400;
    --accent-orange: #ff5500;
    --accent-gold: #c78000;
    --text-primary: #23161a;
    --text-muted: #5c4750;
    --text-grey: #7a636e;
    --border-color: rgba(221, 52, 0, 0.12);
    --glass-bg: rgba(253, 242, 244, 0.88);
    --glass-blur: blur(16px);
    --glass-border: rgba(221, 52, 0, 0.1);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-alt: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.site {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.text-logo {
    color: var(--text-primary) !important;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Layout Utilities */
.section-padding {
    padding: 100px 5% 100px;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0 60px !important;
    }
}

.bg-dark-2 {
    background-color: var(--bg-secondary);
}

.text-accent {
    color: var(--accent-red);
}

.text-gold {
    color: var(--accent-gold);
}

.heading-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .heading-title {
        font-size: clamp(1.4rem, 7vw, 2rem);
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
}

.heading-subtitle {
    font-family: var(--font-alt);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-red);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

/* Header & Sticky Nav */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header-nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.text-logo {
    white-space: nowrap;
    display: inline-block;
}

.nav-logo img {
    height: 48px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    padding: 10px 0;
    text-transform: uppercase;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--accent-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-item.active .nav-link::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent-red);
    min-width: 220px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    list-style: none;
    padding: 10px 0;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 35px rgba(221, 52, 0, 0.08);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
}

.dropdown-link:hover {
    background: rgba(0, 0, 0, 0.03);
    color: var(--accent-red);
    padding-left: 25px;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 20px;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 30px rgba(0,0,0,0.08);
        border-left: 1px solid var(--border-color);
    }

    .nav-menu.active {
        right: 0;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        border: none;
        box-shadow: none;
        padding-left: 15px;
        max-height: 0;
        overflow: hidden;
        background: transparent;
    }

    .nav-item.dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* Primary Button Design */
.btn-primary {
    font-family: var(--font-body);
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    color: #ffffff;
    border-color: var(--accent-red);
    box-shadow: 0 0 25px rgba(221, 52, 0, 0.3);
    transform: translateY(-2px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-red);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Footer Section */
.main-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 80px 5% 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr;
    gap: 60px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-logo img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 25px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 380px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-red);
}

.footer-address {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-contact-item {
    margin-bottom: 15px;
}

.footer-contact-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 3px;
}

.footer-contact-value {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-top: 25px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.footer-social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-social-link:hover {
    background: var(--accent-red);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(221, 52, 0, 0.4);
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-grey);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-fade-up {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Streaming Badges */
.badge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.badge-item:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: var(--accent-red);
    transform: scale(1.05);
}

.badge-item img {
    height: 22px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.8);
    transition: var(--transition-smooth);
}

.badge-item:hover img {
    filter: none;
}

/* Form Styles */
.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--accent-red);
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(221, 52, 0, 0.15);
    background-color: var(--bg-primary);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

/* Event Slider Styles */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 40px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    min-width: 33.333%;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .slider-slide {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .slider-slide {
        min-width: 100%;
    }
}

.event-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.event-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.event-content {
    padding: 25px;
}

.event-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.event-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Custom Audio Player Controls */
.audio-player {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .audio-player {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

.audio-info {
    flex-grow: 1;
}

.audio-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.audio-artist {
    font-size: 0.85rem;
    color: var(--text-grey);
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.audio-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.audio-btn:hover {
    color: var(--accent-red);
}

.audio-play-trigger {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.audio-play-trigger:hover {
    background: var(--accent-orange);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(221, 52, 0, 0.4);
    color: #ffffff;
}

.audio-progress-container {
    width: 100%;
    height: 4px;
    background: var(--bg-tertiary);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    margin-top: 15px;
}

.audio-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 35%;
    background: var(--accent-red);
    border-radius: 2px;
}

/* Custom Mobile Responsiveness Fixes */
a[href^="mailto:"],
.contact-text a, 
.footer-contact-value {
    word-break: break-all !important;
    overflow-wrap: break-word !important;
}

@media (max-width: 991px) {
    .header-nav {
        background: rgba(253, 242, 244, 0.96) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border-bottom: 1px solid var(--border-color) !important;
        padding-top: env(safe-area-inset-top, 0px);
    }

    .nav-container {
        padding: 14px 20px !important;
    }

    .inner-hero {
        height: auto !important;
        min-height: 240px !important;
        padding-top: calc(110px + env(safe-area-inset-top, 0px)) !important;
        padding-bottom: 50px !important;
    }

    .hero-section {
        height: auto !important;
        min-height: 100vh;
        min-height: 100svh;
        padding-top: calc(115px + env(safe-area-inset-top, 0px)) !important;
        padding-bottom: 50px !important;
        align-items: flex-start !important;
    }

    .hero-content {
        padding-top: 0 !important;
    }
}

@media (max-width: 768px) {
    /* Override page heading titles that have inline font-size declarations */
    [style*="font-size: 3.5rem"], 
    [style*="font-size: 3rem"],
    [style*="font-size: 2.6rem"],
    [style*="font-size: 2.5rem"],
    [style*="font-size: 2.4rem"] {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    }
}

@media (max-width: 576px) {
    /* Hide header button on small viewports to prevent layout wrapping */
    .header-nav .btn-primary {
        display: none !important;
    }
}

/* ===== GLOBAL MOBILE OVERFLOW PREVENTION ===== */
/* Prevents any element from exceeding viewport width */
img, video, iframe, embed, object {
    max-width: 100% !important;
    height: auto;
}

/* Prevent long strings from stretching layout */
p, span, a, li, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Container safety on all pages */
.section-padding > div,
.section-padding > section {
    max-width: 100%;
    overflow: visible;
}

@media (max-width: 768px) {
    /* Prevent any grid/flex from breaking layout */
    .hero-content,
    .about-intro-grid,
    .feature-columns,
    .sub-grid,
    .bio-grid,
    .footer-grid,
    .contact-container,
    .team-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Ensure all images scale correctly */
    img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Ensure hero section and content padding on mobile prevent header overlap */
    .hero-section {
        height: auto !important;
        min-height: 100vh;
        padding-top: 105px !important;
        padding-bottom: 40px !important;
        align-items: flex-start !important;
    }

    .hero-content {
        padding: 0 20px !important;
        padding-top: 0 !important;
    }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    animation: waPulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff !important;
}

.whatsapp-float .wa-tooltip {
    position: absolute;
    right: 70px;
    background: #23161a;
    color: #ffffff;
    font-size: 0.8rem;
    font-family: var(--font-alt);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== MODERN BUTTON ENHANCEMENTS ===== */
.btn-primary {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 25px rgba(221, 52, 0, 0.25);
}

.btn-primary:hover {
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(221, 52, 0, 0.4);
}

.btn-secondary-modern {
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 32px;
    background: var(--glass-bg);
    color: var(--text-primary) !important;
    border: 2px solid var(--accent-red);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary-modern:hover {
    background: var(--accent-red);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(221, 52, 0, 0.3);
}

/* Premium Social Media Pills */
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    background: var(--glass-bg);
}

.social-pill:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.social-pill.insta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff !important;
    border: none;
}

.social-pill.fb {
    background: #1877F2;
    color: #ffffff !important;
    border: none;
}

.social-pill.yt {
    background: #FF0000;
    color: #ffffff !important;
    border: none;
}

.social-pill.wa {
    background: #25D366;
    color: #ffffff !important;
    border: none;
}

.social-pill.x {
    background: #111111;
    color: #ffffff !important;
    border: none;
}

/* ===== HD HERO PORTRAIT CARD ===== */
.hero-hd-portrait {
    position: relative;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid var(--accent-red);
    box-shadow: 0 25px 60px rgba(221, 52, 0, 0.22);
    transition: var(--transition-smooth);
    animation: floatHero 5s ease-in-out infinite;
}

.hero-hd-portrait:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 70px rgba(221, 52, 0, 0.35);
}

.hero-hd-portrait img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-hd-portrait:hover img {
    transform: scale(1.05);
}

.hero-hd-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(35, 22, 26, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(221, 52, 0, 0.4);
    padding: 10px 24px;
    border-radius: 50px;
    color: #ffffff;
    font-family: var(--font-alt);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== GALLERY SLIDER CAROUSEL ===== */
.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 30px;
}

.gallery-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-slider-slide {
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .gallery-slider-slide {
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .gallery-slider-slide {
        min-width: 100%;
    }
}

.gallery-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gallery-slider-btn:hover {
    background: var(--accent-red);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.gallery-slider-btn.prev { left: 10px; }
.gallery-slider-btn.next { right: 10px; }

/* ===== DISTINCT LIGHT GALLERY SECTION STYLING ===== */
.gallery-section-light {
    background: linear-gradient(135deg, #fdf0f3 0%, #f5e2e6 100%) !important;
    border-top: 1px solid rgba(221, 52, 0, 0.1);
    border-bottom: 1px solid rgba(221, 52, 0, 0.1);
}

.gallery-section-light .event-card {
    background: #ffffff !important;
    border: 1px solid rgba(221, 52, 0, 0.14) !important;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(221, 52, 0, 0.08);
}
