/* ==================== Fonts ==================== */
@font-face {
    font-family: 'HelveticaNeueCondensed';
    src: url('../assets/fonts/HelveticaNeue-Condensed.ttf') format('truetype');
}

/* ==================== BASE ==================== */
html,
body {
    font-family: 'Outfit', Arial, sans-serif !important;
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    background-color: #000;
    color: #fff;
    scroll-behavior: smooth;
}

main {
    flex: 1;
}

.main-wrapper {
    min-height: 100vh;
    color: white;
}

/* =========================================================
   MODERN HERO SECTION
========================================================= */

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at top left, rgba(255, 208, 0, 0.12), transparent 40%),
        linear-gradient(180deg, #050505 0%, #0f0f0f 60%, #000000 100%);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 0;
}

/* animated background glows */
.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    z-index: 1;
}

.blur-1 {
    width: 350px;
    height: 350px;
    background: #ffcc00;
    top: -100px;
    left: -100px;
    animation: floatBlob 8s ease-in-out infinite;
}

.blur-2 {
    width: 300px;
    height: 300px;
    background: #ff0055;
    bottom: -100px;
    right: -100px;
    animation: floatBlob 10s ease-in-out infinite;
}

@keyframes floatBlob {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-content {
    position: relative;
    z-index: 5;
}

/* top label */
.hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;
    border-radius: 100px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(12px);
}

/* main logo */
.hero-main-logo {
    width: 100%;
    max-width: 340px;
    margin-bottom: 30px;

    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* hero heading */
.hero-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.95;

    margin-bottom: 25px;

    color: white;
}

.hero-heading span {
    display: block;

    background: linear-gradient(90deg, #ffcc00, #ff7b00);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* subtitle */
.hero-subtitle {
    max-width: 760px;
    margin: 0 auto 35px;

    font-size: 1.1rem;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.75);
}

/* buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 14px 28px;
    border-radius: 100px;

    font-weight: 700;
    letter-spacing: 1px;

    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ffcc00, #ff7b00);
    border: none;
    color: #000;
}

.hero-btn-primary:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.25);

    color: #000;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);

    color: white;

    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);

    transform: translateY(-4px);

    color: white;
}

/* =========================================================
   BRANDS
========================================================= */

.brands-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;

    margin-top: 60px;
    margin-bottom: 70px;
}

.brand-card {
    width: 220px;

    padding: 30px 20px;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(14px);

    transition: all 0.35s ease;
}

.brand-card:hover {
    transform: translateY(-10px);

    border-color: rgba(255, 204, 0, 0.4);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.brand-logo-img {
    max-width: 140px;
    margin-bottom: 15px;

    transition: all 0.3s ease;
}

.brand-card:hover .brand-logo-img {
    transform: scale(1.05);
}

.brand-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
   FEATURED EVENTS SECTION
========================================================= */

.featured-section {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at top right, rgba(255, 0, 102, 0.12), transparent 45%),
        linear-gradient(180deg, #000000 0%, #0f0f0f 40%, #050505 100%);
}

.featured-modern-wrapper {
    margin-top: 20px;
}

.featured-title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    margin-bottom: 25px;
}

.featured-title-wrap h3 {
    margin: 0;

    font-size: 0.95rem;
    letter-spacing: 4px;

    color: #ffcc00;

    font-family: 'Montserrat', sans-serif;
}

.featured-line {
    width: 120px;
    height: 1px;

    background: rgba(255, 255, 255, 0.12);
}

.featured-modern-carousel {
    max-width: 86%;
    margin: 0 auto;
    position: relative;
    /* Added bottom padding to accommodate external indicator lines natively */
    padding-bottom: 40px;
}

.featured-modern-carousel .carousel-inner {
    border-radius: 0px;
    overflow: hidden;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.featured-modern-carousel img {
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: 0px;
}

.featured-modern-carousel .carousel-control-prev,
.featured-modern-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0.85;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.featured-modern-carousel .carousel-control-prev {
    left: -70px;
}

.featured-modern-carousel .carousel-control-next {
    right: -70px;
}

.featured-modern-carousel .carousel-control-prev:hover,
.featured-modern-carousel .carousel-control-next:hover {
    background-color: rgba(255, 204, 0, 0.2);
    border-color: #ffcc00;
    opacity: 1;
}

.featured-modern-carousel .carousel-control-prev-icon,
.featured-modern-carousel .carousel-control-next-icon {
    filter: invert(13%) sepia(93%) saturate(5423%) hue-rotate(43deg) brightness(99%) contrast(106%);
    width: 20px;
    height: 20px;
}

/* Shifted indicators below the image frame and styled as horizontal lines */
.featured-modern-carousel .carousel-indicators {
    position: absolute;
    bottom: 0px;
    margin-bottom: 0px;
}

.featured-modern-carousel .carousel-indicators [data-bs-target] {
    width: 35px;
    height: 3px;
    border-radius: 0px;
    background-color: #ffcc00;
    border-top: none;
    border-bottom: none;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.featured-modern-carousel .carousel-indicators .active {
    opacity: 1;
}

/* =========================================================
   UPCOMING SECTION (UNCHANGED STYLE)
========================================================= */

.upcoming-section {
    background-color: #050505;
    padding: 80px 0;
}

/* titles */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    color: #ffcc00;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* event cards */
.event-card {
    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 20px;

    transition: all 0.35s ease;

    position: relative;
    overflow: hidden;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: #ffcc00;

    transform: translateY(-10px);
}

/* date badge */
.date-badge {
    position: absolute;

    top: 15px;
    right: 15px;

    background: #ffcc00;
    color: #000;

    padding: 5px 15px;

    border-radius: 50px;

    font-weight: 800;
    font-size: 0.85rem;

    font-family: 'Montserrat', sans-serif;
}

/* event title */
.event-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
}

/* buttons */
.btn-outline-warning {
    border: 1px solid rgba(255, 204, 0, 0.6);
    color: #ffcc00;

    transition: all 0.3s ease;
}

.btn-outline-warning:hover {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    border-color: transparent;
    color: #000;
}

/* =========================================================
   FOOTER
========================================================= */

footer.transparent-footer {
    background: transparent !important;
    border: none;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-heading {
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .featured-modern-carousel {
        max-width: 100%;
        padding-bottom: 35px;
    }

    .featured-modern-carousel .carousel-control-prev {
        left: 10px;
    }

    .featured-modern-carousel .carousel-control-next {
        right: 10px;
    }

    .featured-modern-carousel img {
        height: auto;
        object-fit: contain;
        border-radius: 0px;
    }

    .brand-card {
        width: 100%;
        max-width: 320px;
    }

    .featured-title-wrap {
        justify-content: center;
        text-align: center;
    }

    .featured-line {
        width: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .event-title {
        font-size: 1.5rem;
    }
}


/* ================= SAFE MODERN HERO ENHANCEMENTS ================= */

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
    z-index: 0;
}

.hero-glow-1 {
    background: #ffcc00;
    top: -120px;
    left: -120px;
}

.hero-glow-2 {
    background: #ff0055;
    bottom: -120px;
    right: -120px;
}

/* smoother brand interaction (no layout shift) */
.brand-card {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.brand-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.featured-modern-carousel img {
    height: auto;
    object-fit: contain;
    border-radius: 0px !important;
}

/* hero spacing refinement */
.hero-section {
    padding: 60px 0;
}


/* ================= FLOATING BRAND STRIP (MODERN CLEAN) ================= */

.floating-brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;             

    flex-wrap: nowrap;     

    margin-top: 70px;
}

/* item (NO BOXES) */
.brand-item {
    text-align: center;
    transition: all 0.25s ease;

    opacity: 0.85;
}

/* hover lift only */
.brand-item:hover {
    transform: translateY(-8px);
    opacity: 1;
}

/* BIGGER LOGOS (key change) */
.brand-item .brand-logo-img {
    max-width: 215px;
    width: 100%;

    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.5));

    transition: all 0.3s ease;
}

/* subtle glow only on hover */
.brand-item:hover .brand-logo-img {
    transform: scale(1.05);
    filter:
        drop-shadow(0 15px 35px rgba(0,0,0,0.6))
        drop-shadow(0 0 25px rgba(255, 204, 0, 0.15));
}

/* label (minimal + secondary) */
.brand-label {
    margin-top: 12px;

    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.55);
}

/* mobile spacing and dividers */
@media (max-width: 768px) {
    .floating-brands {
        flex-direction: column; 
        gap: 40px;             
        flex-wrap: wrap;        
    }

    .brand-item {
        width: 100%;
        max-width: 240px;       
        padding-bottom: 25px;
    }

    .brand-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .brand-item .brand-logo-img {
        max-width: 185px;      
    }
}

/* ================= CREATIVE SCROLL DOWN ARROW ================= */

.scroll-down-arrow {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    z-index: 10;
    transition: color 0.3s ease, transform 0.3s ease;
    animation: bounceArrow 2s infinite;
    text-decoration: none;
}

.scroll-down-arrow:hover {
    color: #ffcc00;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}