/* ---------------------------------------
   1) Simple Reset
---------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: "Anton", serif; /* Your chosen font for headings */
    color: #333;
}

/* ---------------------------------------
   2) Hero Section
---------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Full screen height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: url("/images/BG-Image-II.jpg") center center / cover no-repeat;
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.hero-header {
    margin-bottom: 0;
}

.coming-soon-text {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 auto 1rem;
}

.motor-dayz-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    transition: transform 0.5s ease !important;
}

.motor-dayz-logo:hover {
    transform: scale(1.025) !important;
}

.licensed-brands-text {
    font-family: "Inter", serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* ---------------------------------------
   3) Brand Logos Grid
---------------------------------------- */
.brand-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    grid-gap: 1.5rem;
    align-items: center;
    justify-items: center;
    width: 80%;
    max-width: 694px;
    margin: 0 auto 2rem;
}

.brand-logo {
    width: 100%;
    max-width: 150px;
    height: auto;
    transition: transform 0.6s ease;
}

.brand-logo:hover {
    transform: scale(1.05) !important;
}

/* ---------------------------------------
   4) Tagline
---------------------------------------- */
.hero-tagline {
    display: block;
    position: absolute;
    width: 100%;
    bottom: 2rem;
    text-align: center;
}

.tagline-text {
    color: var(--Light-Gray, #EAEAEA);
    text-align: center;
    font-family: "Anton", serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 44.505px; /* 148.351% */
    letter-spacing: 0.202px;
    text-transform: uppercase;
}

/* ---------------------------------------
   5) Fade/Zoom Animation
---------------------------------------- */

/* Keyframes for fade+zoom in */
@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Base class for fade+zoom on load */
.fade-zoom {
    opacity: 0;               /* start hidden */
    transform: scale(0.95);   /* slightly smaller */
    animation: fadeZoomIn 0.6s ease forwards; /* 0.6s duration */
}

/* Stagger the animation so each .fade-zoom animates
   with incremental delay from top to bottom
*/
.fade-zoom:nth-of-type(1)  { animation-delay: 0s; }
.fade-zoom:nth-of-type(2)  { animation-delay: 0.1s; }
.fade-zoom:nth-of-type(3)  { animation-delay: 0.2s; }
.fade-zoom:nth-of-type(4)  { animation-delay: 0.3s; }
.fade-zoom:nth-of-type(5)  { animation-delay: 0.4s; }
.fade-zoom:nth-of-type(6)  { animation-delay: 0.5s; }
.fade-zoom:nth-of-type(7)  { animation-delay: 0.6s; }
.fade-zoom:nth-of-type(8)  { animation-delay: 0.7s; }
.fade-zoom:nth-of-type(9)  { animation-delay: 0.8s; }
.fade-zoom:nth-of-type(10) { animation-delay: 0.9s; }
.fade-zoom:nth-of-type(11) { animation-delay: 1.0s; }
.fade-zoom:nth-of-type(12) { animation-delay: 1.1s; }

/* Add more nth-of-type rules if you have more .fade-zoom elements */

/* ---------------------------------------
   6) Media Queries
---------------------------------------- */
@media (max-width: 800px) {
    .coming-soon-text {
        font-size: 1.8rem;
    }
    .brand-logos {
        grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
        width: 100%;
        max-width: 490px;
        grid-gap: 1rem;
    }
    .brand-logo {
        max-width: 180px;
    }
    .tagline-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 550px) {
    .coming-soon-text {
        font-size: 1.5rem;
    }
    .motor-dayz-logo {
        width: 100%;
        max-width: 320px;
    }
    .licensed-brands-text {
        font-size: 1.2rem;
    }
    .brand-logos {
        grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
        grid-gap: 0.75rem;
    }
    .brand-logo {
        max-width: 100px;
    }
    .tagline-text {
        font-size: 1.1rem;
    }
}
@media (max-height: 560px) {
    .tagline-text {
        display: none;
    }
}