/* Importación de fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400&display=swap');

/* Estilos Generales */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d1117;
    color: #f0f6fc;
    background-image: url('data:image/svg+xml,%3Csvg width="6" height="6" viewBox="0 0 6 6" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%231a2432" fill-opacity="0.4" fill-rule="evenodd"%3E%3Cpath d="M5 0h1L0 6V5zm1 6v-1L1 6z"/%3E%3C/g%3E%3C/svg%3E');
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #e6e6e6;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ffd700; /* Color dorado */
}

a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffeb8c;
}

/* Encabezado y Navegación */
header {
    background-color: rgba(26, 36, 50, 0.9);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2d3748;
}

.logo h1 {
    margin: 0;
    font-size: 2em;
    color: #ffd700;
}

.logo p {
    margin: 0;
    font-size: 0.9em;
    color: #aaa;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav a {
    font-weight: 400;
    text-transform: uppercase;
    color: #f0f6fc;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffd700;
}

/* Sección Principal - Hero */
.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1600x900?text=Imagen+de+Fondo');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-content h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background-color: #ffd700;
    color: #0d1117;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #ffeb8c;
    transform: translateY(-3px);
}

/* Sección de Galería */
.gallery-section {
    padding: 80px 0;
    background-color: #1a2432;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background-color: #2d3748;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.item-info {
    padding: 20px;
    text-align: center;
}

.item-info h3 {
    margin-top: 0;
    font-size: 1.5em;
    color: #ffd700;
}

.item-info p {
    font-size: 0.9em;
    color: #aaa;
}

/* Pie de Página */
footer {
    background-color: #1a2432;
    color: #aaa;
    padding: 20px 40px;
    border-top: 1px solid #2d3748;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.social-links a {
    margin-left: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero-content h2 {
        font-size: 2.5em;
    }

    footer .container {
        flex-direction: column;
        gap: 15px;
    }
}