* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about {
    display: flex;
    justify-content: center; /* centra horizontalmente */
    align-items: center;     /* centra verticalmente */
    min-height: 80vh;        /* ocupa casi toda la pantalla */
    text-align: center;      /* centra el texto dentro del div */
    padding: 40px;           /* espacio interno */
    background: rgba(0,0,0,0.3); /* opcional: mejora contraste con el fondo */
}

.about-content h1 {
    font-size: 3rem;         /* título más grande */
    margin-bottom: 20px;
    color: #f5f5f5;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7); /* más legible sobre el fondo */
}

.about-content p {
    font-size: 1.5rem;       /* párrafos más grandes */
    line-height: 1.8;        /* mejor lectura */
    margin-bottom: 15px;
    color: #f5f5f5;
}

.about-content p.extra {
    font-size: 1.7rem;       /* un poco más destacado */
    font-weight: bold;
}

body {
    font-family: 'Special Elite', serif;
    background-image: url("img/fondo.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #f5f5f5;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3); /* ajusta opacidad según necesites */
    z-index: -1; /* para que quede detrás del contenido */
}

.contacto {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: rgba(0,0,0,0.6);
}

.contacto h2 {
    font-size: 3.5rem;      /* TÍTULO grande */
    margin-bottom: 25px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
}

.contacto p {
    font-size: 1.8rem;      /* TEXTO más grande */
    margin-bottom: 15px;
    line-height: 1.6;
}

/* HERO */

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.3); /* ligera capa oscura para mejorar contraste */
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    letter-spacing: 4px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8); /* sombra más pronunciada */
}

.logo-ayla {
    width: 850px;       /* ajusta tamaño */
    max-width: 100%;
    mix-blend-mode: screen;
}

/* CATEGORIAS */
.categorias {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.categoria {
    width: 80%;
    padding: 20px 40px;
    border: 2px solid white;
    text-decoration: none;
    color: white;
    font-size: 2.5rem;
    text-align: center;
    background: rgba(0,0,0,0.3);
}

.categoria:hover {
    background: rgba(255,255,255,0.2);
}

.instagram-link {
    margin-top: 20px;
    font-size: 2.4rem;
    color: #e6d8b5;
    text-decoration: none;
    border: 2px solid #e6d8b5;
    padding: 28px 64px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: #e6d8b5;
    color: black;
}

/* HEADER SIMPLE */
.simple-header {
    text-align: center;
    padding: 40px;
    background: rgba(0,0,0,0.7);
}

.simple-header a {
    color: #e6d8b5;
    text-decoration: none;
}

/* PRODUCTOS */
.productos {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas iguales */
    gap: 30px;
    padding: 60px;
}

.producto {
    background: rgba(0,0,0,0.6);
    font-family: 'Special Elite', cursive;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.producto h3 {
    font-size: 1.2rem;
    margin-top: 10px;
}

.precio {
    margin-top: 10px;
    font-weight: bold;
    color: #e6d8b5;
    font-size: 1.4rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}


.producto img {
    width: 100%;          /* ocupa todo el ancho del contenedor */
    height: 250px;        /* altura fija para todas las imágenes */
    object-fit: cover;    /* mantiene proporción y recorta si es necesario */
    border-radius: 8px;   /* opcional: bordes redondeados */
}

.precio {
    margin-top: 10px;
    font-weight: bold;
    color: #e6d8b5;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
