/* @import url("https://fonts.googleapis.com/css?family=Roboto:100,300,100italic,300italic"); */



@font-face {
    font-family: 'DolceVita';
    src: url('../webfonts/Dolce Vita.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* GLOBAL STYLES */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DolceVita', sans-serif;
}


html {
    /* margin: 0;
    padding: 0; */
	background-color: #000;
    box-sizing: border-box;
}




body {
    background-image: url('../img/blackout.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* margin: 0;
    padding: 0; */
    min-height: 100vh; /* Mínimo el alto de la ventana, pero crece según el contenido */
}


/* Estilos para la cabecera */
#header {
    text-align: center; /* Centra el texto */
    background-color: transparent; /* Fondo oscuro */
    color: white; /* Texto blanco */
    padding: 0px; /* Espaciado arriba y abajo */
    font-size: 36px; /* Tamaño de fuente grande */
    font-weight: bold; /* Texto en negrita */
    letter-spacing: 5px; /* Espaciado entre letras */
    text-transform: uppercase; /* Convierte el texto a mayúsculas */
}


/* MAIN CONTAINER */
#main-container {
    background-color: transparent; /* Fondo transparente, la imagen será el fondo */
    color: white; /* Texto legible sobre el fondo oscuro */
    padding: 0px; /* Espaciado interno */
    text-align: center;
    min-height: 100vh; /* La altura mínima cubre toda la pantalla */
}

#social-media {
    background-size: cover; /* Escala la imagen para cubrir */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita repeticiones */
    padding: 10px 10px; /* Espaciado interno */
    border-radius: 10px; /* Bordes redondeados */
    margin: 10px auto; /* Centrado horizontal */
    width: 100%;
    max-width: 600px; /* Limita el ancho */
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); /* Sombra */
    color: white; /* Texto legible */
    display: flex;
    flex-direction: column; /* Alinea los botones verticalmente */
    align-items: center; /* Centra los elementos dentro */
}




.social-buttons {
    display: flex;
    flex-direction: column; /* Alineación vertical */
    gap: 15px; /* Espaciado uniforme entre botones */
    width: 100%;
    max-width: 400px; /* Tamaño máximo */
    justify-content: center; /* Centra los botones */
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Ícono y texto alineados a la izquierda */
    padding: 10px 15px;
    width: 100%; /* Ocupa todo el ancho disponible */
    color: white;
    background-color: #000; /* Fondo de los botones */
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    border: 1px solid white;
    transition: background-color 0.3s;
}

.btn-social:hover {
    background-color: white; /* Efecto hover */
}

.btn-social img {
    width: 30px; /* Tamaño del ícono */
    height: 30px;
    margin-right: 120px; /* Espacio entre ícono y texto */
}
/* UBICACIÓN */
#location {
    background-color: transparent; /* Fondo transparente */
    color: white; /* Texto blanco */
    padding: 5px; /* Elimina padding para que el mapa ocupe todo el contenedor */
    text-align: center;
    position: relative; /* Esto permite que el texto se posicione con respecto a este contenedor */
    margin-bottom: 30px;
}

/* Título del mapa */
#location-text {
    z-index: 5; /* Asegura que el texto esté por encima del mapa */
    text-align: center; /* Centra el texto */
    background-color: transparent; /* Fondo oscuro */
    color: white; /* Texto blanco */
    padding: 0px 0; /* Espaciado arriba y abajo */
    font-size: 36px; /* Tamaño de fuente grande */
    font-weight: bold; /* Texto en negrita */
    letter-spacing: 5px; /* Espaciado entre letras */
    text-transform: uppercase; /* Convierte el texto a mayúsculas */
}

/* Contenedor de mapa */
#location .map-container {
    width: 100%; /* El mapa se adapta al contenedor */
    max-width: 600px; /* Tamaño máximo */
    height: 400px; /* Altura fija para el mapa */
    margin: 20px auto 0; /* Centrado horizontal y separación del texto */
    border-radius: 10px; /* Bordes redondeados */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7); Sombra ligera */
}





#location iframe {
    width: 100%; /* Acomoda el mapa al ancho del contenedor */
    height: 450px;
    border: none;
    border-radius: 5px; /* Bordes redondeados */
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background-color: transparent; /* Fondo oscuro */
    color: white; /* Texto claro */
    font-size: 14px;
    border-top: 1px solid #111; /* Línea superior */
}

footer p {
    margin: 0; /* Elimina margen extra */
}


/* SECCIÓN OCULTA */
#seccion-oculta {
    display: none;
    background-color: #222;
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

#seccion-oculta h2 {
    margin-bottom: 15px;
    font-weight: 300;
}

.btn-formulario {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    background-color: #444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #555;
    transition: background-color 0.3s;
}

.btn-formulario:hover {
    background-color: #666;
}


/* RESPONSIVE DESIGN PARA CELULARES */
@media (max-width: 600px) {

    #header h1 {
        font-size: 32px;
        letter-spacing: 3px;
    }

    #header h6 {
        font-size: 16px;
    }

    #social-media {
        padding: 20px 10px;
        max-width: 90%;
        margin: 15px auto;
    }

    /* .btn-social {
        font-size: 14px;
        padding: 8px 12px;
    }

    .btn-social img {
        width: 24px;
        height: 24px;
    } */

    .social-buttons {
        width: 100%;
        max-width: 100%;
    }

    .btn-social {
        width: 95%; /* Ocupan casi todo el ancho visible */
        font-size: 18px;
        padding: 14px 20px;
        margin: 5px auto;
    }

    .btn-social img {
        width: 28px;
        height: 28px;
        margin-right: 60px;
    }

    #location .map-container {
        width: 90%;
        height: auto;
    }

    #location iframe {
        height: 300px;
    }

    #location-text {
        font-size: 18px;
        letter-spacing: 2px;
    }

    #seccion-oculta {
        width: 90%;
        padding: 20px 10px;
    }

    .btn-formulario {
        padding: 10px 20px;
        font-size: 14px;
    }

    footer {
        font-size: 12px;
        padding: 15px;
    }

    #location {
        margin-bottom: 0px;
    }
}
