/* 1. RESET Y FUENTE GENERAL (Moderna) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Esta es la tipografía limpia que querías para el texto */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 2. CONTENEDOR PRINCIPAL CON FOTO DE FONDO */
.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* Asegúrate de que la ruta de la imagen sea correcta */
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* 3. CAPA OSCURA (Overlay) */
.overlay {
    flex: 1;
    background-color: rgba(30, 30, 30, 0.85); /* Oscurece la foto para leer mejor */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.content-wrapper {
    max-width: 900px;
    width: 100%;
}

/* 4. DISEÑO DEL LOGO (Elegante con Serifa) */
.logo-container {
    text-align: center;
    color: #f3e5ab; /* Color crema/dorado */
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Mantenemos Serifa solo en el logo por elegancia */
    font-family: 'Times New Roman', Times, serif;
}

.logo-frame {
    border: 3px solid #f3e5ab;
    border-bottom: none; /* Marco abierto abajo como en la imagen */
    padding: 5px 30px;
    margin-bottom: 10px;
}

.logo-letters {
    font-size: 5.5rem;
    font-weight: bold;
    letter-spacing: -4px;
    line-height: 1;
}

.logo-name {
    font-size: 2.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: normal;
}

.logo-divider {
    width: 300px;
    height: 4px;
    background-color: #f3e5ab;
    margin: 10px 0;
}

.logo-subtitle {
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-family: 'Segoe UI', sans-serif; /* Subtítulo limpio */
}

/* 5. TEXTO DESCRIPTIVO (Sans-Serif moderno) */
.description-text p {
    color: #ffffff;
    line-height: 1.8;
    text-align: justify;
    font-size: 1.05rem;
    font-weight: 300; /* Letra delgada y elegante */
}

/* 6. BARRA DE CONTACTO (Footer) */
.contact-bar {
    background-color: #c9a67a; /* Color arena/dorado oscuro */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 18px 10px;
    flex-wrap: wrap;
}

.contact-item {
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    margin: 5px;
}

.contact-item i {
    margin-right: 8px;
}

/* 7. ADAPTACIÓN PARA MÓVILES (Responsive) */
@media (max-width: 768px) {
    .overlay {
        padding: 40px