:root {
    --dark-red: #990100;
    --bright-red: #ee2d29;
    --light-gray: #c8c7c5;
    --white-pose: #fbfbfb;
    --black-pose: #000000;
}

@font-face {
    font-family: bodoniComp;
    src: url(/fonts/Bodoni\ Z37\ M\ Compressed\ Bold.otf);
}

@font-face {
    font-family: harold26;
    src: url(/fonts/harold26.otf);
}

@font-face {
    font-family: higuenSerif;
    src: url(/fonts/Higuen\ Serif.otf);
}

body {
    font-family: higuenSerif;
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.6;
    background-color: #000000;
}

nav {
    background-color: var(--black-pose);
}

/* Hero section example - add your homepage hero */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

div#beforeCDown{
        max-width: 100%;
        width: 100%;
        max-height: 800px;
        display: block;
        padding: 0px;
        margin: 0px;
}

div#beforeCDown img{
        width: 100%;
        height: auto;
        display: block;
}

div#countDown{
        width: 100%;
        color: #fbfbfb;
        font-family: 'BodoniZ37Compressed';
        text-align: center;
        display: block;
        /* existing */
        text-shadow: 0 2px 5px rgba(0,0,0,0.5); /* ← NEW */
        backdrop-filter: blur(3px); /* ← NEW */
        background: rgba(0,0,0,0.3); /* ← NEW */
        border-radius: 16px; /* ← NEW */
        padding: 20px; /* ← NEW */
        margin: 0px;
}

div#countDown div.oneLine h2{
    font-size: 40px;
}

div#afterCDown{
        width: 100%;
        padding-bottom: 30px;
}

div#afterCDown img{
        width: 100%;
        height: auto;
        display: block;
}

/* Responsive grid for homepage content */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
}
    
    .col-md-6 {
        width: 100%;
        margin-bottom: 20px;
    }
}




/* Mobile First (default styles) */
/* Already optimized for mobile */

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Adjustments for tablets */
}

/* Desktop Styles */
@media (min-width: 1024px) {
    /* Adjustments for desktop */
}

/* Large Desktop */
@media (min-width: 1440px) {
    /* Adjustments for large screens */
}







/* :root {
    --dark-red: #990100;
    --bright-red: #ee2d29;
    --light-gray: #c8c7c5;
    --white-pose: #fbfbfb;
    --black-pose: #000000;
}

ul.dropdown-menu {
    background-color: var(--black-pose);
}

span .dropdown-item-text {
    color: var(--light-gray);
}

li .dropdown-item {
    background-color: var(--black-pose);
    color: var(--white-pose);
} */