@font-face {
    font-family: 'Montaser-Arabic';
    src: url('./assets/fonts/Montaser-Arabic-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-color: #0A0A0A;
    --platinum: #E5E4E2;
    --white: #FFFFFF;
    --crimson: #8B0000;
    --transition-speed: 0.8s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--platinum);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 4rem;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), transparent);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5rem;
    opacity: 0.8;
}

.logo-img {
    height: 1.5rem;
    width: auto;
    opacity: 0.85;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('file:///C:/Users/mario/.gemini/antigravity/brain/7e4a67e8-e0be-461f-98c2-cc6fe465576b/mockup_landing_sello_rojo_premium_afmx_1773103370167.png');
    background-size: cover;
    background-position: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

h2 {
    font-family: 'Montaser-Arabic', serif;
    font-weight: bold;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    margin-bottom: 1.2rem;
    opacity: 0;
}

h1 {
    font-family: 'Montaser-Arabic', serif;
    font-size: 3.8rem;
    font-weight: bold;
    letter-spacing: 0.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    color: var(--white);
    opacity: 0;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--crimson);
    margin: 0 auto 2rem;
}

p {
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(229, 228, 226, 0.8);
    opacity: 0;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3rem;
    border: 1px solid var(--platinum);
    color: var(--platinum);
    text-decoration: none;
    letter-spacing: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.4s ease;
    background: transparent;
}

.cta-button:hover {
    background-color: var(--platinum);
    color: var(--bg-color);
}

/* Animations */
.reveal-text {
    animation: fadeInUp var(--transition-speed) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#sub-headline {
    animation-delay: 0.2s;
}

#main-headline {
    animation-delay: 0.4s;
}

#body-text {
    animation-delay: 0.6s;
}

.cta-container {
    opacity: 0;
    animation: fadeIn 1s forwards 1s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    .header {
        padding: 1.5rem 2rem;
    }
}