@import url('https://fonts.googleapis.com/css?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color:  #31363F; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.headerr {
    background-image: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(Tekax/tekax\ \(14\).jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 10vh;
    display: flex;
    align-items: center;
    
    
}

.header {
    background-image: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(Tekax/tekax\ \(14\).jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(black 90%, transparent);
}

/* Estilos para el contenedor y el menú desplegable */
.menu {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #F2EFE5;
    font-size: 25px;
    font-weight: bold;
}

.menu-icono {
    width: 25px;
}

.menu label {
    cursor: pointer;
    display: none;
}

/* Estilos para la barra de navegación */
.navbar {
    display: flex;
    justify-content: center;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar li {
    margin: 0 10px;
}

.navbar li button {
    background: none;
    border: none;
    color: #F2EFE5;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.navbar li button:hover {
    color: #99627A;
}


.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 50px 20px;
}

.header-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #FFCACA;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.header-content p {
    color: #F9FAFC;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.profile-info {
    color: white;
    font-size: 18px;
}

#menu {
    display: none;
}

/*secciones */

/* Estilos para las secciones */
.section {
    display: flex;
    background-color: #222831; /* Cambiado a #B4B4B8 */
    padding: 50px;
    margin-bottom: 0px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent),
                linear-gradient(to top, transparent, black 10%, black 90%, transparent);


}

.section .section-image {
    flex: 1;
    margin-right: 50px;
   
}

.section .section-image img {
    width: 100%;
    border-radius: 10px;
}

.section .section-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.section .section-content h1 {
    color: #BFCFE7; /* Cambia el color a tu preferencia, por ejemplo, rojo (#FF0000) */
    margin-bottom: 20px;
    font-size: 60px; /* Ajusta el tamaño de fuente según sea necesario */
}


.section .section-content h2 {
    color: #EEEEEE;
    margin-bottom: 20px;
    font-size: 28px;
}



.section .section-content p {
    color: #DDDDDD;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.section-content p,
.section-content li {
    text-align: justify;
}

.section-content ul {
    list-style: none; /* Eliminar los puntos por defecto */
    color: #F8EDFF;
    padding-left: 20px; /* Añadir espacio a la izquierda para la viñeta personalizada */
}

.section-content ul li:before {
    content: "\2022"; /* Código Unicode para el punto */
    color: #704264; /* Color azul para la viñeta */
    display: inline-block; /* Mostrar la viñeta como parte del flujo de texto */
    width: 1em; /* Ancho del espacio entre la viñeta y el texto */
    margin-left: -1em; /* Mover la viñeta hacia la izquierda */
}

/*carrucel*/

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.carousel-item {
    display: none;
}

.carousel-item.active {
    display: block;
}

.carousel img {
    width: 100%; /* La imagen ocupará todo el ancho del contenedor */
    height: auto; /* La altura se ajustará automáticamente para mantener la relación de aspecto */
    max-width: 100%; /* La imagen no superará el 100% del ancho del contenedor */
    max-height: 600px; /* Altura máxima deseada para las imágenes */
    object-fit: cover; /* La imagen se ajustará para cubrir el contenedor */
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    width: 100%;
    text-align: center;
}


/*galeria*/

/* Estilos para la sección de galería específica para Tekax */
.tekax-gallery {
    background-color: #31363F; /* Cambiado a #E3E1D9 */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent),
                linear-gradient(to top, transparent, black 10%, black 90%, transparent);
}

.tekax-gallery h1 {
    color: #F8EDFF;
    margin-bottom: 20px;
    font-size: 80px;
}

/* Estilos para la galería de imágenes */
.image-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

.image-gallery img {
    max-width: 30%;
    border-radius: 10px;
    margin: 10px;
}

/* Estilos para el botón */
.btn {
    background-color: #B3C8CF; /* Cambiado a #C7C8CC */
    color: #8C6A5D;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #F8EDFF; /* Cambiado a #99627A */
}



/* Estilos generales del footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

/* Estilos de la sección de redes sociales */
.social-media {
    margin-bottom: 30px;
}

.social-icons {
    list-style-type: none;
    padding: 0;
}

.social-icons li {
    display: inline-block;
    margin: 0 10px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ccc;
}

/* Estilos de la sección de información de contacto */
.contact-info ul {
    list-style-type: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
}

.contact-info ul li i {
    margin-right: 10px;
}

