/* Reset de estilo base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fuente principal */
body {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #cbcbcb;
    color: #ffffff;
    line-height: 2;
    
}

/* Header (Barra de navegación) */
/* Estilos para el contenedor del logo y la barra de navegación */
header {
    display: flex;
    justify-content: space-between; /* Espacio entre logo y navegación */
    align-items: center; /* Alineación vertical */
    padding: 1rem 2rem;
    background-color: #333;
}

.logo-container {
    display: flex;
    justify-content: flex-start; /* Alineación del logo a la izquierda */
}

.logo {
    height: 40px; /* Ajusta el tamaño del logo */
    width: auto; /* Mantiene la relación de aspecto */
}

/* Estilos para la barra de navegación */
nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #b69803;
}


nav ul {
    display:flex;
    justify-content: end;
    list-style-type: none;
    
}

nav ul li {
    margin: 0 3rem;
}

nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration:none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #b69803;
}

/* Sección About (Biografía) */
#about {
    background: #000000;
    padding: 5rem 2rem;
    text-align: center;
}

#about h2 {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.about-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-left {
    flex: .5;
}

.about-photo {
    width: 100%;
    border-radius: 0px;
    box-shadow: 0 10px 20px rgba(247, 247, 247, 0.1);
}

.about-right {
    flex: 2;
    text-align: left;
    max-width: 5000px;
}

.about-logo img {
    width: 400px;
    margin-top: 5rem;
    transition: transform 0.1s ease;
}

.about-logo img:hover {
    transform: scale(1.1);
}

.social-media {
    margin-top: 5rem;
}

.social-icon {
    margin: 10 10px;
    display: inline-block;
}

.social-icon img {
    width:min-content;
    height:min-content;
    padding-right: 3rem;
    justify-content:center;
}

/* Sección Gallery */
#gallery {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f5f5f5;
}

#gallery h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

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

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}
/* Estilos del botón "Ver Más" */
.btn-ver-mas {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background-color: #b69803;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Aseguramos que el botón se vea bien alineado con el video */
.gallery-video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Sección Contacto */
#contact {
    padding: 5rem 2rem;
    background-color: #fff;
    text-align: center;
}

#contact h2 {
    font-family: 'verdana-light', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

form label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #121212;
}

form input,
form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

form button {
    width: 100%;
    padding: 1rem;
    background-color: #b69803;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #d4c57c;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 1rem;
}
