/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}




/* HEADER Y NAVEGACIÓN */
header {
    background: rgba(0, 0, 0, 0.7); /* Fondo oscuro semitransparente */
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo h1 {
    font-size: 2rem;
    color: white;
    font-weight: normal;
    text-transform: uppercase;
}

.menu {
    display: flex;
    list-style: none;
    gap: 3rem; 

}


.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.menu a:hover {
    color: #FFD700;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #FFD700;
}

/* Texto de misión */
.mission-text {
    margin-top: 60px;
}

.mission-text h2 {
    font-size: 2rem;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.mission-text p {
    font-size: 1.3rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    margin: 0;
}

/* HERO SECTION - ESTILO EXACTO COMO LA IMAGEN */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('imagenes/pizza-fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white (255, 255, 255);
}


.hero-content h2 {
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    max-width: 800px;
    margin: 0 auto;
}

/* No footer para que se parezca más a la imagen */
footer {
    display: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .simple-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .simple-menu a {
        font-size: 1rem;
    }
    
    .mission-text h2 {
        font-size: 1.5rem;
    }
    
    .mission-text p {
        font-size: 1.1rem;
    }
}

/* HERO SECTION - INDEX */
.hero {
    background: url('imagenes/pizza-fondo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(0, 0, 0);
    position: relative;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* BLOG STYLES */
.blog-main {
    max-width: 1200px;
    margin: 100px auto 2rem;
    padding: 0 2rem;
}

.blog-post {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #8B4513;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid #8B4513;
}

.author-details h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.date {
    color: #666;
    font-style: italic;
}

.blog-post h2 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-align: center;
}

.blog-content {
    line-height: 1.8;
}

.blog-image {
    max-width: 400px;
    border-radius: 10px;
    margin: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.float-left {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1rem;
    text-align: justify;
}
.blog-comiendo{

    text-align: center;
}



/* GALLERY STYLES */
.gallery-main {
    max-width: 1200px;
    margin: 100px auto 2rem;
    padding: 0 2rem;
    text-align: center;
}

.gallery-main h2 {
    color: #8B4513;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.gallery-item:hover img {
    filter: brightness(0.7) sepia(0.5);
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* VIDEOS STYLES */
.videos-main {
    max-width: 1200px;
    margin: 100px auto 2rem;
    padding: 0 2rem;
}

.videos-main h2 {
    color: #8B4513;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.video-description {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #666;
}

.videos-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.video-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1.5rem;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-item h3 {
    color: #8B4513;
    margin-bottom: 20rem;
}

.video-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* SOCIAL SECTIONS */
.social-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #111110, #141312);
    border-radius: px;
    color: white;
}

.social-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: white;
    color: #8B4513;
    transform: translateY(-3px);
}

.social-links i {
    margin-right: 0.5rem;
}

/* FOOTER */
footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .menu {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .gallery-container {
        gap: 1rem;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 300px;
    }
    
    .blog-image.float-left {
        float: none;
        margin: 1rem auto;
        display: block;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}