/* Reset & Base */
body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
}

.font-playfair {
    font-family: var(--font-secondary) !important;
}

.text-gold {
    color: var(--color-primary) !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Buttons - Dark Theme Fixes & Animations */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
    /* Distinct text color on gold button */
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(191, 158, 88, 0.4);
    /* Gold glow */
}

.btn-outline-dark {
    color: var(--color-text-main);
    border-color: var(--color-text-main);
}

.btn-outline-dark:hover {
    background-color: var(--color-text-main);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline-light {
    color: var(--color-text-main);
    border-color: var(--color-text-main);
}

/* Gallery Image Hover */
.gallery-item {
    cursor: pointer;
}

.gallery-item img.transition-hover {
    transition: transform 0.5s ease;
}

.gallery-item:hover img.transition-hover {
    transform: scale(1.1);
}

/* Header */
.top-bar {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(191, 158, 88, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 rgba(220, 53, 69, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(220, 53, 69, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.top-bar-link:hover {
    color: white !important;
}

.top-bar-link:hover i {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}


.main-header {
    background-color: var(--color-bg-body) !important;
    border-bottom: 1px solid var(--color-border);
}

.navbar-nav .nav-link {
    font-size: 0.90rem;
    font-weight: 500;
    color: var(--color-text-main);
    text-transform: uppercase;
}


.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-primary);
}

/* Hero Carousel */
.hero-slide {
    height: 70vh;
    /* Reduced from 90/80vh */
    min-height: 550px;
    background-color: #000;
}

.hero-slide img {
    opacity: 0.9;
}

.hero-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 0;
}

.carousel-caption {
    z-index: 10;
    right: 0;
    left: 0;
    bottom: 0;
}

/* Hero Animations */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Specific Section Styles */
.section-padding {
    padding: var(--section-padding);
}

@media (max-width: 768px) {
    :root {
        --section-padding: 2.5rem 0;
    }
}

.bg-light {

    background-color: var(--color-bg-surface) !important;
    color: var(--color-text-main);
}

.bg-white {
    background-color: var(--color-bg-card) !important;
    color: var(--color-text-main);
}

.text-muted {
    color: var(--color-text-muted) !important;
}

.border {
    border-color: var(--color-border) !important;
}

.narrow-container {
    max-width: 900px;
}

.section-padding {
    padding: var(--section-padding);
}

/* Upcoming Awards Premium Design */
.ticket-container {
    max-width: 900px;
    background: rgba(20, 20, 20, 0.8);
    border: 2px dashed var(--color-primary);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.ticket-badge {
    border-radius: 0 0 10px 10px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(191, 158, 88, 0.5);
}

.upcoming-awards {
    background-color: #0b0b0b;
}

.award-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(191, 158, 88, 0.1) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 0;
    pointer-events: none;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 8px 32px 0 rgba(191, 158, 88, 0.2);
}

.text-gradient-gold {
    background: linear-gradient(45deg, #bf9e58, #ffdb8b, #bf9e58);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: gold-shimmer 3s linear infinite;
    text-shadow: 0 0 30px rgba(191, 158, 88, 0.3);
}

@keyframes gold-shimmer {
    to {
        background-position: 200% center;
    }
}

.shadow-gold {
    box-shadow: 0 0 20px rgba(191, 158, 88, 0.4);
}

/* Video Section */
.play-icon {
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Wave Animation */
.play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: -1;
    animation: wave-pulse 2s infinite;
}

.play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
    animation: wave-pulse 2s infinite 0.5s;
}

@keyframes wave-pulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 250%;
        height: 250%;
        opacity: 0;
    }
}

.video-card:hover .play-icon {
    transform: scale(1.1);
}

/* Winners */
.winner-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.winner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Process Section */
.process-row {
    margin-top: 3rem;
}

.process-line {
    position: absolute;
    background-color: var(--color-border);
    z-index: 0;
}

/* Desktop Line */
@media (min-width: 769px) {
    .process-line {
        top: 60px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
    }
}

/* Mobile Line */
@media (max-width: 768px) {
    .process-line {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        transform: translateX(-50%);
    }

    /* Add background to text to mask the line if it crosses */
    .process-row h5 {
        background-color: var(--color-bg-body);
        display: inline-block;
        padding: 0 10px;
        position: relative;
        z-index: 1;
    }

    .process-row .col-md-3 {
        margin-bottom: 2rem;
    }
}

.process-step {
    background-color: var(--color-bg-card) !important;
    color: var(--color-text-main);
    border: 2px solid var(--color-primary);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    /* Keep above line */
}


.process-step:hover {
    transform: scale(1.05);
    background-color: var(--color-primary) !important;
    color: white !important;
}

/* Media Logos */
.grayscale-logos .media-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.grayscale-logos .media-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.bg-gold {
    background-color: var(--color-primary);
}

/* Social Icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: white;
}

/* Brand Colors on Hover */
.social-icon:hover .fa-facebook-f {
    color: #1877f2;
}

.social-icon:hover:has(.fa-facebook-f) {
    background-color: white;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.6);
}

.social-icon:hover .fa-twitter {
    color: #1da1f2;
}

.social-icon:hover:has(.fa-twitter) {
    background-color: white;
    box-shadow: 0 0 15px rgba(29, 161, 242, 0.6);
}

.social-icon:hover .fa-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icon:hover:has(.fa-instagram) {
    background-color: white;
    box-shadow: 0 0 15px rgba(214, 36, 159, 0.6);
}

.social-icon:hover .fa-linkedin-in {
    color: #0077b5;
}

.social-icon:hover:has(.fa-linkedin-in) {
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.6);
}

.social-icon:hover .fa-youtube {
    color: #ff0000;
}

.social-icon:hover:has(.fa-youtube) {
    background-color: white;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
}

/* Footer Link Hover */
.text-white-50:hover {
    color: white !important;
}