/* Custom Styles with Theme Variables */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --secondary-text-color: #4a5568; /* gray-700 */
    --timer-bg-color: rgba(0, 0, 0, 0.05);
    --brand-orange: #EE964B;
    --brand-blue: #2364AA;
    --social-icon-color: #4a5568;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #000000;
        --text-color: #ffffff;
        --secondary-text-color: #a0aec0; /* gray-400 */
        --timer-bg-color: rgba(0, 0, 0, 0.3);
        --social-icon-color: #ffffff;
    }
}

body {
    font-family: 'Futura', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow: hidden; /* Prevents scrollbars from particle canvas */
    transition: background-color 0.3s, color 0.3s;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.content-wrapper {
    position: relative;
    z-index: 1;
}
/* Font families */
.font-brand {
    font-family: 'Cinzel', serif; /* Using Cinzel as a substitute for Navalie Demo */
}
.font-timer {
    font-family: 'Orbitron', sans-serif; /* Updated font for timer numbers */
}
.font-body {
    font-family: 'Futura', sans-serif;
}
/* Custom Colors */
.text-brand-orange { color: var(--brand-orange); }
.text-brand-blue { color: var(--brand-blue); }

.bg-brand-blue { background-color: var(--brand-blue); }

.timer-box {
    background-color: var(--timer-bg-color);
    transition: background-color 0.3s;
}

.text-secondary {
    color: var(--secondary-text-color);
    transition: color 0.3s;
}

.social-icon {
    color: var(--social-icon-color);
    transition: all 0.3s;
}

/* Social Icon Hover Effect */
.social-icon:hover {
    transform: scale(1.1);
    color: var(--brand-orange);
}

/* Responsive Logo Sizing Adjustments */
/* These max-heights will constrain the logos while allowing them to scale down */
#main-logo {
    max-height: 100px; /* Default for mobile/small screens */
    width: auto; /* Maintain aspect ratio */
}

#text-logo {
    max-height: 30px; /* Default for mobile/small screens */
    width: auto; /* Maintain aspect ratio */
}

@media (min-width: 640px) { /* Small screens (sm) */
    #main-logo {
        max-height: 120px;
    }
    #text-logo {
        max-height: 35px;
    }
}

@media (min-width: 768px) { /* Medium screens (md) */
    #main-logo {
        max-height: 150px;
    }
    #text-logo {
        max-height: 40px;
    }
}

@media (min-width: 1024px) { /* Large screens (lg) */
    #main-logo {
        max-height: 180px;
    }
    #text-logo {
        max-height: 45px;
    }
}

@media (min-width: 1280px) { /* Extra large screens (xl) */
    #main-logo {
        max-height: 200px;
    }
    #text-logo {
        max-height: 50px;
    }
}