

/* Body & Base Styles */
:root {
    --bg-dark: #050505;
    /* Main background */
    --text-white: #e5e5e5;
    --default: #972f1e; /* Updated: New Primary Red */
    --dark: #5e160a;
    --gold: #ebaf0b;    /* Updated: New Primary Yellow */
    --black: #0a0a0a;
    --gray: #171717;
    --lightred: #DC2626;
}


body {
    background-color: #050505;
    color: #e5e5e5;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
}

/* Background Patterns */
.hero-pattern {
    background-color: #000000;
    background-image: radial-gradient(#1f1f1f 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Glass Panels */
.glass-panel {
    background: rgba(23, 23, 23, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Content Cards */
.content-card {
    background-color: rgba(24, 24, 27, 0.6);
    /* zinc-900/60 */
    border: 1px solid rgba(63, 63, 70, 0.5);
    /* zinc-700/50 */
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.content-card:hover {
    border-color: #972f1e; /* Updated: New Primary Red */
    /* Updated: Primary Red */
    background-color: rgba(24, 24, 27, 0.8);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.5);
}

/* Page Transitions & Animations */
.page-transition {
    animation: fadeIn 0.5s ease-in-out;
}

.page-section {
    opacity: 0;
    animation: none;
}

.page-section.active {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Styles */
.nav-active {
    color: #972f1e !important; /* Updated: New Primary Red */
    /* Updated: Primary Red */
    position: relative;
}

.nav-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    /* Adjust based on nav height */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #972f1e; /* Updated: New Primary Red */
    /* Updated: Primary Red */
    box-shadow: 0 -2px 10px #972f1e; /* Updated: New Primary Red */
}

.nav-active:hover {
    color: #DC2626 !important;
}

.nav-active:hover::after {
    content: '';
    position: absolute;
    bottom: -6px;
    /* Adjust based on nav height */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #DC2626;
    /* Updated: Primary Red */
    box-shadow: 0 -2px 10px #DC2626;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #972f1e; /* Updated: New Primary Red */
    /* Updated: Primary Red */
}

/* Video Container Styling */
.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 1rem;
    border: 1px solid rgba(63, 63, 70, 0.5);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, black, transparent);
}

/* Logo Sizing */
.header-logo {
    height: 60px;
    width: auto;
    margin-right: 5px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.header-brandname-top {
    font-size: 1.25rem;
    letter-spacing: 0.05em;

    text-shadow: 1px 1px 2px #000;
    font-weight: 900;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.header-brandname-bottom {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    line-height: var(--text-xs--line-height);
    /* calc(1 / 0.75) */

    color: var(--default);
    text-shadow: 1px 0 2px #000;
    font-weight: 550;
    font-family: 'Montserrat', sans-serif;
}
