p{
    font-size: 16px;
    color: #060606;
}
.container{
    width: 80%;
    margin: 0 auto;
}
.hero {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-position-y: 35%;
    text-align: center;

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; 
}

.hero h1 {
    position: relative;
    z-index: 2; 
    font-size: 3rem;
    margin: 0;
    padding: 0 20px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.hero h2 {
    position: relative;
    z-index: 2; 
    font-size: 1.5rem;
    margin-top: 10px; 
    color: rgba(255, 255, 255, 0.8); 
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); 
}
p.page-text-intro{
    text-align: center;
    font-size: 20px;
    font-style: italic;
    font-family: "Raleway", serif;
    margin-bottom: 0px;
    font-weight: 700;
}

hr.hr-page-intro{
    width: 60%;
    margin: 0 auto;
    border: 0.5px solid #060606;
    margin-top:15px;
    margin-bottom:15px
}

.gallery-page{
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: center;
}
p.red-phrase-page{
    font-size: 18px;
    color: #e93c43c7;
    margin: 18px 0;
    text-align: center;
    font-family: "Raleway", serif;
    font-weight: 700;
    letter-spacing: 4px;
}
.section-modal{
    background: #e93c43;
    padding: 30px 0px;
    text-align: center;
}
.section-modal p.last-phrase-page{
    text-align: center;
    font-family: "Raleway", serif;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 18px;
    color:#fff;
}
.section-modal .btn-primary{
    display: inline-flex;
    text-align: center;
    justify-content: center;
    font-size: 20px;
    background: #fff;
    color: #e93c43;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

/* Estilo del botón para abrir el formulario */
.open-form-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Estilo para el overlay (fondo oscuro que cubre toda la pantalla) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);  /* Fondo oscuro translúcido */
    display: none;  /* Inicialmente oculto */
    z-index: 9998;  /* Aparece detrás del formulario */
}

/* Estilo del contenedor del formulario (fuera de la pantalla a la derecha inicialmente) */
.form-container {
    position: fixed;
    top: 0;
    right: -50%;  /* Comienza fuera de la pantalla */
    width: 50%;
    height: 100vh;
    background-color: white;
    box-shadow: -4px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: block;
    z-index: 9999;  /* Asegúrate de que el formulario esté por encima del overlay */
    transition: right 0.3s ease-in-out;
}

/* Estilos para el botón de cerrar */
.close-form-btn {
    margin-top: 10px;
    width: 100%;
}

/* Estilos generales para el formulario */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
}

form input,
form textarea {
    margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background-color: #218838;
}
