/* Custom CSS for F2IE 2025 */

/* Variables */
:root {
    --primary-color: #b24607;
    --secondary-color: #b24607 ;
    --accent-color: #b24607;
    --text-light: #ffffff;
    --text-dark: #333333;
}

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

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

/* Hero Overlay */
.hero-overly::before {
    position: absolute;
    content: "";
    background-color: rgba(0, 6, 53, 0.6);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.slider-active {
    position: relative;
    z-index: 2;
}

/* Animation Classes */
.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-500 {
    animation-delay: 0.5s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Countdown Timer */
.cd-timer {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 5px;
    display: inline-block;
}

.cd-item {
    color: var(--primary-color);
}

/* Speaker Cards Hover */
.single-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.single-card.active {
    border-color: var(--primary-color);
}

/* Gallery Hover Effects */
.single-gallery img:hover {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

/* Tabs for Schedule */
.tab-link.active div {
    background-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Marquee Animation for Sponsors */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

.animate-marquee-reverse {
    animation: marquee-reverse 20s linear infinite;
}

@keyframes marquee-reverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .hero__caption h1 {
        font-size: 32px;
    }

    .cd-timer {
        padding: 10px;
    }

    .cd-item {
        margin: 0 5px;
    }
}

@media (max-width: 576px) {
    .hero__caption h1 {
        font-size: 24px;
    }

    .section-tittle h2 {
        font-size: 28px;
    }
}
