.primary-bg{
    background: #C1AA7F;
}
p{
    font-size: 16px;
    color: #060606; 
    font-family: "Lato", sans-serif;
}
.container{
    width: 80%;
    margin: 0 auto;
}
.hero {
    position: relative;
    width: 100%;
    height: 450px;
    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: 40px;
    margin: 0;
    padding: 0 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Miller Display';
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.hero h2 {
    position: relative;
    z-index: 2; 
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Roboto", serif;
    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: normal;
    font-family: "Miller Display";
    font-weight: 500;
}

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: #006F8E;
    margin: 18px 0;
    text-align: center;
    font-family: "Roboto", serif;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.section-modal{
    background: #f9f8f3;
    padding: 30px 0px;
    text-align: center;
    margin-top: 20px;
    border-top: solid 0.5px #c1aa7f;
}
.section-modal p.last-phrase-page{
    text-align: center;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: capitalize;
    font-size: 18px;
    color: #333;
    font-family: 'Miller Display';
    margin-bottom: 20px;
}
.section-modal .btn-primary{
    background: #C1AA7F;
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    border-radius: 2px;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 2.5px;
    padding: 10px 20px;
    text-align: center;
    font-weight: 400;
}
.content-container{
    padding-top: 40px;
    padding-bottom: 40px;
}
/* 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;
}

.modal{
    --bs-modal-width:80%;
}
p.titulo-modal{
    text-align: center;
    color: #e93c43;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    letter-spacing: 2px;
    text-transform: lowercase;
    text-transform: capitalize;
    font-size: 20px;
}
p.subtitulo-modal{
    text-align: center;
    color: #060606;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    text-transform: lowercase;
    text-transform: capitalize;
}
.contactp-container{
    background: #f6f6f65e;
    padding: 30px;
    border-radius: 30px;
}

.star-modal{
    margin-bottom: 20px;
}
.star-modal i{
    color:#C1AA7F;
    font-size: 18px;
}