@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* Color amarillo del diseño */
    --text-dark: #000000;
    --bg-light: #eaeaea;
    --font-family: 'Raleway', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: #eaeaea;
    color: var(--text-dark);
    /* Set a smooth scroll behavior if needed */
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

/* --- Site Wrapper --- */
.site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
    /* Optional shadow to distinguish it from the background if viewed on larger screens */
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

/* --- Video & Parallax Hero Section --- */
.video-container {
    position: relative;

    height: 70vh;
    /* Ajustable según cuánto espacio deba ocupar el video */
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    /* Will be translated by JS for parallax */
    will-change: transform;
}

/* Optional subtle overlay to improve contrast if needed */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* --- Content Section --- */
.content-section {
    position: relative;
    width: 100%;
    background-color: var(--bg-light);
    z-index: 2;
    /* Sits above video */
    padding: 4rem 2rem 2rem 2rem;
    display: flex;
    justify-content: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-text {
    font-size: 3.8rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

/* Typography elements */
.typography-section {
    width: 100%;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.subtitle {
    font-size: 3rem;
    color: var(--primary-yellow);
    font-weight: 900;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: -10px;
}

.title-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    justify-content: center;
}

.title-col {
    display: flex;

}

.title-col img {
    height: auto;
    min-height: 250px;
}

.main-title {
    font-size: 10rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 0.9;
    letter-spacing: -3px;
    margin: 0;
    text-transform: uppercase;
}

.slogan {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 600;
    margin-top: 1.5rem;
    letter-spacing: 0.5px;
    color: #111;
}

/* Buttons */
.actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 240px;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e6a600;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.btn-secondary {
    background-color: var(--text-dark);
    color: var(--bg-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn i {
    font-size: 1.2rem;
}

/* Footer text */
.footer-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    text-transform: uppercase;
    margin-top: auto;
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .main-title {
        font-size: 7rem;
    }

    .title-wrapper {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 3rem;
    }

    .logo-wrapper svg {
        width: 45px;
        height: 45px;
    }

    .subtitle {
        font-size: 2.2rem;
    }

    .main-title {
        font-size: 5rem;
        letter-spacing: -2px;
    }

    .video-container {
        height: 50vh;
    }

    .actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 1.8rem;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .slogan {
        font-size: 0.9rem;
    }

    .content-section {
        padding: 2.5rem 1rem 1.5rem 1rem;
    }
}