@font-face {
    font-family: 'TT Norms Pro';
    src: url('../fonts/TT Norms Pro Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Linotype Didot';
    src: url('../fonts/Linotype Didot Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* CSS Variables for legacy code compatibility */
:root {
    --color-gold: #DAA520;
    --color-navy: #031142;
    --color-white: #FFFFFF;
    --font-main: 'TT Norms Pro', sans-serif;
    --font-accent: 'Linotype Didot', serif;
    --font-size-base: 0.875rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero {
    background-image: linear-gradient(rgba(13, 31, 45, 0.6), rgba(13, 31, 45, 0.6)), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero .golden-text {
    color: var(--color-gold);
    font-family: var(--font-accent);
    font-weight: 700;
    font-style: normal;
    display: inline;
    position: relative;
}

.hero .golden-text sup {
    font-size: 0.5em;
    position: absolute;
    top: 3em;
    right: -0.5em;
    line-height: 0;
}

.hero .subtitle {
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.video-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
}

.cta-button {
    background-color: var(--color-navy);  /* Usando el azul marino definido en las variables */
    color: var(--color-white);           /* Texto en blanco */
    font-family: var(--font-main);       /* Usando TT Norms Pro */
    text-transform: uppercase;           /* Texto en mayúsculas */
    letter-spacing: 2px;                 /* Espaciado entre letras */
    padding: 15px 40px;                  /* Espacio interno */
    border: 1px solid var(--color-white); /* Borde blanco */
    display: inline-block;
    font-size: 1rem;                     /* Tamaño de fuente */
    font-weight: 500;                    /* Peso de la fuente */
    text-decoration: none;               /* Quita el subrayado si es un enlace */
    transition: all 0.3s ease;           /* Transición suave para efectos hover */
}

.cta-button:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
    cursor: pointer;
}

.slogan {
    position: relative;
    overflow: hidden;
    padding: 0; /* Elimina el padding si lo había */
}

.slogan .container {
    position: relative;
    z-index: 2;
    padding: 80px 20px; /* Ajusta según tus necesidades */
}

.slogan-text {
    font-family: var(--font-accent);
    font-size: 3rem;
    line-height: 1.4;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slogan-line {
    display: block;
}

.slogan-line:first-child {
    color: var(--color-gold);
}

.section-title {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-navy);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.community, .approach, .challenges-transformations, .benefits, .testimonials {
    padding: 100px 0;
}

.community-content, .approach-grid, .challenges-grid, .benefits-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.approach-item, .challenge-item, .benefit-item, .testimonial-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.approach-item:hover, .challenge-item:hover, .benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.approach-item i, .challenge-item i, .benefit-item i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.approach-item h3, .challenge-item h3, .benefit-item h3 {
    font-size: 1.3rem;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.challenge-item .challenge {
    margin-bottom: 20px;
}

.challenge-item .transformation h4 {
    color: var(--color-gold);
    margin-bottom: 10px;
}

.testimonial-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
    font-weight: 100;

}

.testimonial-author {
    font-weight: bold;
    color: var(--color-gold);
}

.contact {
    background-color: var(--color-navy);
    color: var(--color-white);
    text-align: center;
    padding: 80px 0;
}

.contact .section-title {
    color: var(--color-white);
    margin-bottom: 30px;
}

.beta-info, .spots-left {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.call-to-action {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.highlight {
    color: var(--color-gold);
    font-weight: bold;
}

#videoask-embed {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    text-align: center;
    padding: 20px 0;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    color: var(--color-white);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--color-gold);
}

footer p {
    margin-bottom: 10px;
}

.created-by {
    font-size: 0.9rem;
    margin-top: 15px;
}

.created-by a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.created-by a:hover {
    color: #fff;
    text-decoration: underline;
}

.gray-background {
    background-color: #f5f5f5; /* Un gris muy claro */
    padding: 60px 0;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1); /* Sombra interior sutil */
}

/* Variante más oscura */
.gray-background-dark {
    background-color: #e0e0e0; /* Un gris un poco más oscuro */
    padding: 60px 0;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

/* Para mejorar el contraste del texto en fondo gris */
.gray-background h2,
.gray-background-dark h2 {
    color: var(--color-navy);
}

.gray-background p,
.gray-background-dark p {
    color: #333; /* Un gris oscuro para el texto */
}



@media (max-width: 768px) {
    .container {
        padding: 0 15px; /* Reducimos el padding lateral */
    }

    /* Mobile menu styles now handled by Tailwind components */

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .golden-text sup {
        font-size: 0.4em;
        top: 4em;
        right: -0.8em;
    }

    .hero .subtitle {
        font-size: 1.4rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .slogan .container {
        padding: 60px 20px;
    }

    .slogan-text {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .community, .approach, .challenges-transformations, .benefits, .testimonials {
        padding: 60px 0;
    }

    .contact {
        padding: 60px 0;
    }

    .beta-info, .spots-left {
        font-size: 1.5rem;
    }

    .call-to-action {
        font-size: 1rem;
    }

    #videoask-embed {
        margin-top: 30px;
    }

    #videoask-embed iframe {
        height: 500px; /* Ajusta esto según sea necesario para dispositivos móviles */
    }

    .video-section {
        padding: 40px 0;
    }
}