@import url('https://fonts.googleapis.com/css2?family=Playwrite+US+Modern:wght@100..400&display=swap');

:root {
    --color-gray-100: hsl(220, 12%, 98%);
    --color-blue-300: hsl(217, 80%, 55%);
    --color-dark-500: hsl(240, 10%, 3%);
    --shadow-medium: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

/* ===== RESETEO GENERAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    color: var(--color-gray-100);
    background: var(--color-dark-500);
}

.main {
    padding-top: 6rem;
    /* separa del menú fijo */
}

/* ===== FORMATO CINE ===== */
.banner-video {
    position: relative;
    width: 100%;
    height: 90vh;
    /* formato panorámico, menos alto */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* texto hacia la izquierda */
    overflow: hidden;
    color: var(--color-gray-100);
}

/* ===== VIDEO ===== */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* mantiene proporción */
    z-index: 1;
    filter: brightness(0.45);
    /* oscurece sutilmente */
}

/* ===== TEXTO SOBRE VIDEO ===== */
.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 6%;
}

.banner-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* ===== TITULOS ===== */
.title-large {
    font-family: "Playwrite US Modern", cursive;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    /* sutil ajuste tipográfico */
}


/* ===== PÁRRAFO ===== */
.text-base {
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(220, 12%, 90%);
}

/* ===== BOTÓN ===== */
.cta-button {
    text-align: center;
    font-weight: 500;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
    border: 1px solid #ccc;
    background-color: #000000;
    padding: 10px;
}

.cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .main {
        padding-top: 12rem;
        /* separa del menú fijo */
    }

    .banner-video {
        height: 55vh;
        justify-content: center;
        text-align: center;
    }

    .banner-content {
        padding-left: 0;
        padding-inline: 1.5rem;
    }

    .banner-inner {
        align-items: center;
    }
}



/* Hero Section */
.hero {
    margin-top: 150px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #000;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.hero-image video {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}


.hero-content {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #f7f0e9;
    text-align: center;
}

.hero-content h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #f7f0e9;
}

.hero-content p {
    color: #ffffff;
    font-size: 17px;
    margin-bottom: 30px;
    max-width: 600px;
    text-align: justify;
    padding-left: 70px;
}