/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap'); /* Example font, adjust as needed */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap'); /* For a script-like logo text */


:root {
    --primary-color: #11151c; /* Dark blue from header */
    --secondary-color: #d66853; /* Light pink from hero section */
    --accent-color: #d66853; /* Example accent, adjust as needed */
    --text-dark: #333;
    --text-light: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #11151c;
}

.header {
    /*background-color: var(--primary-color);*/
    /*color: var(--text-light);*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a img{
     width: 5.5rem;
    height: auto;
}

.logo p {
    font-family: 'Great Vibes', cursive; /* Example script font for logo text */
    font-size: 2.2em;
    font-weight: 700;
    color: var(--secondary-color); /* Rosa claro para el texto del logotipo */
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    text-transform: uppercase;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Ajuste la altura según sea necesario */
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Alinea el texto a la derecha */
    overflow: hidden; 
}

.hero-image
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* La imagen ocupa aproximadamente el 70% del lado izquierdo */
    height: 100%;
    background-image: url(../img/banner.jpeg); /* Reemplaza con tu archivo de imagen real */
    background-size: cover;
    background-position: center left; /* Enfócate en el lado izquierdo de la imagen. */
    z-index: 1; /* Asegúrese de que la imagen esté detrás del texto. */
}
.hero-image img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* La imagen ocupa aproximadamente el 70% del lado izquierdo */
    height: 100%;
    background-size: cover;
    background-position: center left; /* Enfócate en el lado izquierdo de la imagen. */
    z-index: 1
}
.hero-text {
    position: absolute; /* Position relative to allow z-index */
    z-index: 1; /* Ensure text is above the image */
    text-align: left; /* Align text to the left within its container */
    padding: 0 5%;
    color: var(--primary-color);
    width: 40%; /* Text takes up about 40% of the right side */
    margin-right: 5%; /* Push text slightly from the very right edge */
}

.hero-text h1 {
    font-size: 3.5em; /* Adjust as needed */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
    align-items: center;
}

/* Diseño Responsivo */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.8em;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        padding: 15px 3%;
    }

    .nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav ul li {
        margin: 0 15px 10px;
    }

    .hero-section {
        height: 300px;
        justify-content: center;
        text-align: center;
        padding-right: 0;
    }

    .hero-image {
        width: 100%;
        height: 500px; /* Ajusta la altura para pantallas más pequeñas. */
        position: relative; /* Elimina el posicionamiento absoluto para un mejor flujo */
        margin-bottom: 30px;
    }

    .hero-text {
        width: 100%;
        text-align: center;
        margin: 0 auto;
        padding-bottom: 50px;
        align-items: center;
    }

    .hero-text h1 {
    font-size: 3.2rem;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }
}

@media (max-width: 480px) {
    .logo p {
        font-size: 1.8em;
    }

    .nav ul li {
        margin: 0 10px 10px;
    }

    .hero-text h1 {
        font-size: 1.8em;
    }
}
/* --- Servicios Section Styles --- */

.services-section {
    background-color: var(--primary-color); /* Fondo oscuro como en la imagen */
    color: var(--text-light);
    padding: 80px 5%;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: var(--secondary-color); /* Color rosa/claro para el título principal */
    letter-spacing: 2px;
}

.service-category {
    margin: 50px 0;
}

.service-category h3 {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
}

.gallery-grid {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center; /* Centra verticalmente los elementos */
}

/* Estilo para la grilla de MAQUILLAJES */
.makeup-grid {
    /* Por defecto: Imagen grande a la izquierda, pequeña a la derecha */
    flex-direction: row; 
}

/* Estilo para la grilla de UÑAS */
.nails-grid {
    /* Imagen grande a la derecha, pequeña a la izquierda (inverso al maquillaje) */
    flex-direction: row; 
}

.grid-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Transición suave para el efecto hover */
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: scale(1.02);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Estilo para la imagen principal de MAQUILLAJE (Calabera) */
.main-makeup {
    flex: 2; /* Ocupa más espacio */
    max-height: 500px;
}

/* Estilo para la imagen principal de UÑAS (Mano con flores) */
.main-nails {
    flex: 2; /* Ocupa más espacio */
    max-height: 500px;
}

/* Estilo para el grupo de 4 imágenes pequeñas */
.small-gallery {
    flex: 1; /* Ocupa menos espacio */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.small-gallery .grid-item {
    aspect-ratio: 1 / 1; /* Asegura que las imágenes pequeñas sean cuadradas */
}

/* --- Responsive Design para Servicios --- */

@media (max-width: 1024px) {
    .gallery-grid {
        flex-direction: column !important; /* Apila las secciones para móviles */
        gap: 40px;
    }
    
    .main-makeup,
    .main-nails {
        flex: none;
        width: 100%;
        max-height: none;
    }

    .small-gallery {
        flex: none;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 3%;
    }
    .service-category h3 {
        font-size: 1.3em;
        margin-bottom: 20px;
    }
    .small-gallery {
        grid-template-columns: 1fr; /* Una columna en pantallas muy pequeñas */
    }
}
/* --- FOOTER Section Styles --- */

.footer {
    font-size: 0.95em;
}

/* Estilos de la parte superior (las 3 columnas) */
.footer-top {
    background-color: #212d40; /* Color borgoña/púrpura oscuro del top footer */
    color: #f8f8f8;
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    /*max-width: 100px;*/
    margin: 0 auto;
}

.footer-col {
    text-align: center;
    flex: 1;
    min-width: 250px; /* Asegura que no se hagan demasiado pequeñas */
}

.footer-col h3 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #f8f8f8; /* Títulos en color claro */
    
}

.footer-col p,
.footer-col ul {
    font-size: 0.95em;
    line-height: 1.6;
    color: #e0e0e0;
    list-style: none; /* Quita las viñetas */
    padding: 0;
    text-align: center;
}

.footer-col ul li {
    margin-bottom: 8px;
    
    align-items: center;
    text-align: center;
}

.footer-col ul li .icon {
    margin-right: 8px;
    font-size: 1.1em;
}

/* Estilos de la barra inferior (Derechos y Redes) */
.footer-bottom {
    /*background-color: var(--primary-color); /* Color azul oscuro/negro */
    color: #e0e0e0;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
    color: #d66853;
    font-size: 1.2em;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color); /* Rosa claro al pasar el ratón */
}

/* --- Responsive Design para Footer --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-col {
        min-width: auto;
        width: 100%;
    }
    
    .footer-col ul {
        text-align: center;
        padding-left: 0;
    }
    
    .footer-col ul li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        margin-top: 10px;
    }
    .social-links a {
        margin: 0 8px;
    }
}



/*NOSOTROS*/
/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap'); /* Example font, adjust as needed */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap'); /* For a script-like logo text */


:root {
    --primary-color: #2c3e50; /* Dark blue from header */
    --secondary-color: #fce4ec; /* Light pink from hero section */
    --accent-color: #e91e63; /* Example accent, adjust as needed */
    --text-dark: #333;
    --text-light: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body*/ {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f8f8f8;
}

.header {
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px; /* Adjust logo size */
    margin-right: 10px;
    filter: brightness(0) invert(1); /* Makes the logo white if it's a dark color */
}

.logo p {
    font-family: 'Great Vibes', cursive; /* Example script font for logo text */
    font-size: 2.2em;
    font-weight: 700;
    color: var(--secondary-color); /* Light pink for logo text */
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    text-transform: uppercase;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}



/* Diseño Responsivo */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.8em;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        padding: 15px 3%;
    }

    .nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav ul li {
        margin: 0 15px 10px;
    }

    .hero-section {
        height: 300px;
        justify-content: center;
        text-align: center;
        padding-right: 0;
    }

    .hero-image {
        width: 100%;
        height: 500px; /* Ajusta la altura para pantallas más pequeñas. */
        /*position: relative; /* Elimina el posicionamiento absoluto para un mejor flujo */
        margin-bottom: 30px;
    }

    .hero-text {
        width: 100%;
        text-align: center;
        margin: 0 auto;
        /*padding-bottom: 50px;*/
        align-items: center;
    }

    .hero-text h1 {
    font-size: 3.2rem;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }
}

@media (max-width: 480px) {
    .logo p {
        font-size: 1.8em;
    }

    .nav ul li {
        margin: 0 10px 10px;
    }

    .hero-text h1 {
        font-size: 1.8em;
    }
}

/* --- Nosotros Section Styles (Modificado para 2 columnas oscuras) --- */

.about-section.two-columns {
    /* Fondo oscuro: Usaremos el color primario o un negro muy oscuro */
    /*background-color: #1a1a1a; /* Negro oscuro, similar a la imagen */
    color: #f8f8f8; /* Color de texto claro */
    padding: 80px 5%;
    text-align: center;
}

.about-section.two-columns .column-wrapper {
    display: flex;
    gap: 80px; /* Separación entre las columnas */
    max-width: 1200px;
    margin: 0 auto;
}

.about-column {
    flex: 1;
    text-align: center;
}

.about-column h3 {
    /* Títulos en un tono rosado/oscuro, similar al color de la imagen */
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a07a88; /* Tono rojizo/rosado oscuro como en la imagen */
}

.about-column p {
    font-size: 1.1em;
    line-height: 1.8;
    /* Texto en un tono rojizo/rosado, diferente al blanco */
    color: #d8b8c2; 
    text-align: center;
}


/* --- Responsive Design para Nosotros (2 Columnas) --- */

@media (max-width: 992px) {
    .about-section.two-columns .column-wrapper {
        flex-direction: column; /* Apila las columnas verticalmente */
        gap: 50px;
    }
}

/*SERVICIOS*/
/* --- Servicios Section Styles (Lista Detallada) --- */

.services-section.detailed-list {
    /*background-color: #1a1a1a; /* Fondo oscuro igual que la sección Nosotros */
    color: #d66853;
    padding: 80px 5%;
    text-align: center;
}

.services-section.detailed-list .subtitle {
    font-size: 1.2em;
    margin-bottom: 50px;
    /* Color rojizo/rosado oscuro similar al de los títulos de Nosotros */
    color: #d66853; 
}

.services-section.detailed-list h3 {
    font-size: 1.5em;
    font-weight: 400;
    margin: 40px 0 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d66853; /* Color de los títulos de categoría */
}

.service-grid {
    display: grid;
    /* 3 columnas iguales */
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.service-card {
    background-color: #7d4e57; /* Color de fondo de las tarjetas (rojizo/borgoña) */
    color: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-height: 120px; /* Altura mínima para que sean uniformes */

}

.service-card:hover {
    background-color: #7d576a; /* Ligeramente más claro al pasar el ratón */
    transform: translateY(-3px);
}

.service-card .icon {
    width: 50px;
    font-size: 2.2em;
    margin-bottom: 10px;
    /* Hace que el icono sea más visible con un contorno naranja, similar a la imagen */
    color: transparent; 
    border: 3px solid #ff7f50; /* Color naranja coral */
    border-radius: 50%;
    padding: 5px;
    line-height: 1; /* Para centrar el contenido del span */
    display: inline-block;
}

.service-card h4 {
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 5px;
    color: #f8f8f8;
}

.service-card p {
    font-size: 0.95em;
    color: #e0e0e0;
}


/* --- Responsive Design para Servicios (Lista Detallada) --- */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tabletas */
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr; /* 1 columna en móviles */
    }
    .services-section.detailed-list {
        padding: 50px 3%;
    }
}


/* --- CONTACTOS Section Styles (Moderno) --- */

.contact-section.modern {
    background-color: #11151c;
    padding: 80px 5%;
}

.contact-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Columna de info un poco más ancha que el formulario */
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* --- Estilos de la Columna Derecha (Formulario) --- */

.contact-form-column h2 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-form-column .form-description {
    color: #666;
    margin-bottom: 30px;
}

.simple-contact-form input,
.simple-contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1em;
    background-color: #fff;
}

.submit-button-modern {
    background-color: #d66853; /* Color marrón/tostado del botón */
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button-modern:hover {
    background-color: #a07a61;
}

/* --- Estilos de la Columna Izquierda (Tarjetas) --- */

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.info-card .card-icon {
    font-size: 1.8em;
    color: #8c7270; /* Color ícono marrón/gris */
    display: block;
    margin-bottom: 10px;
}

.info-card .title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Estilos para el mapa */
.map-container {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 300px; /* Altura fija para el mapa */
}
.map-link-text {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
}

/* --- Responsive Design para Contactos Moderno --- */

@media (max-width: 992px) {
    .contact-grid-container {
        grid-template-columns: 1fr; /* Una sola columna en tabletas */
    }
    .info-cards-grid {
        grid-template-columns: 1fr; /* Tarjetas apiladas en tabletas */
    }
    .contact-form-column {
        order: -1; /* Mueve el formulario arriba en móviles */
    }
    .map-container {
        height: 250px;
    }
}