* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

/* Navegación superior */
nav {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    list-style: none;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e91e63;
}

/* Encabezado con imagen de fondo */
header {
    background: url('./images/banner.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 50px;
    text-align: center;
    border-radius: 10px;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

header p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: #e91e63;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #d81b60;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #e91e63;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

#about p {
    margin: 20px 0;
    text-align: justify;
    line-height: 1.8;
}

#gallery {
    background: #f9f9f9;
    padding: 50px 0;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.photo-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.photo-card:hover img {
    transform: scale(1.1);
}

.photo-info {
    padding: 20px;
    text-align: center;
}

.photo-info h3 {
    font-size: 1.5rem;
    color: #e91e63;
    margin-bottom: 10px;
}

.photo-info p {
    font-size: 1rem;
    color: #555;
}

/* Estilo para el footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: left;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-container h3 {
    margin-bottom: 15px;
}

.footer-contact-info,
.footer-links,
.footer-legal {
    margin: 20px;
}

.footer-contact-info p,
.footer-legal p,
.footer-links ul {
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a {
    color: #e91e63;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

footer p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}


/* Sección del video */
#video {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

#video h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.video-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

video {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-description {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
    text-align: center;
}
