/* ============================================
   contacto.css — Estilos específicos de contacto.html
   Requiere: shared.css
   ============================================ */

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
    background-color: var(--dark);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Contacto usa hover dorado diferente */
a:hover * {
    color: #f3d05d;
}

h1 {
    font-family: "Bebas Neue", sans-serif;
    color: white;
}

/* ============ HEADER (igual que paquetes.css) ============ */
header {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    margin-left: 100px;
    margin-right: 100px;
    z-index: 10;
    padding: 20px 60px;
    transition: all 0.3s ease;
}

header:hover {
    scale: 1.1;
}

#nav-container {
    display: flex;
    justify-self: center;
    margin-top: 40px;
}

#logo {
    display: flex;
    justify-self: center;
    align-items: center;
    margin-right: 40px;
}

#logo img {
    height: 80px;
    width: auto;
}

#logo h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin: 0;
}

#nav-bar {
    display: grid;
    align-items: center;
    justify-content: center;
}

#nav-bar ul {
    display: flex;
    gap: 40px;
    font-family: "Bebas Neue", sans-serif;
}

#nav-bar ul li {
    font-family: "Bebas Neue", sans-serif;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

#nav-bar ul li:hover {
    color: var(--gold-alt);
}

/* ============ TAGLINE ============ */
.first {
    display: block;
    padding: 0 70px;
    width: 100%;
}

.tagline {
    display: grid;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.tagline h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 100px;
    margin: 0;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.tagline h2:hover {
    transform: translateY(-10px);
}

.tagline p {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
    font-family: "Inter", sans-serif;
}

/* ============ LAYOUT PRINCIPAL ============ */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

/* ============ COLUMNA IZQUIERDA — CONTACTO ============ */
.contact-info {
    background: var(--dark-card);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-family: "Inter", sans-serif;
}

.contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #2a2a2a;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: "Inter", sans-serif;
}

.contact-value {
    font-size: 1rem;
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    font-family: "Inter", sans-serif;
}

a.contact-value:hover {
    color: var(--gold);
}

.reservation .contact-value {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ============ COLUMNA DERECHA — IMAGEN ============ */
.image-container {
    border-radius: 24px;
    overflow: hidden;
    max-height: 473px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#img-cont {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-image: url('img/bg-logo.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============ FOOTER SIMPLE ============ */
.footer {
    text-align: center;
    padding: 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid #2a2a2a;
    margin-top: 2rem;
    /* resetea el footer del shared que tiene gradient */
    background: none;
}

/* ============ ANIMACIONES ============ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.container > * {
    animation: fadeIn 0.5s ease forwards;
}

.image-container {
    opacity: 0;
    animation: fadeIn 0.5s ease 0.1s forwards;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    .services-header h2 { font-size: 60px; }
}

@media (max-width: 768px) {
    header { 
        padding: 16px 20px; 
        margin-left: 20px;
        margin-right: 20px;
    }
    
    #nav-container { 
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
    }
    
    #logo { 
        margin-right: 0; 
    }
    
    #logo img { 
        height: 50px;
    }
    
    #logo h1 { 
        font-size: 20px;
    }
    
    #nav-bar ul { 
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #nav-bar ul li {
        font-size: 14px;
    }
    
    .first { 
        padding: 0 20px; 
    }
    
    .tagline h2 { 
        font-size: 52px; 
    }
    
    .container { 
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
        padding: 1.5rem; 
    }
    
    .contact-info { 
        padding: 1.5rem; 
    }
    
    .image-container { 
        min-height: 350px; 
    }
}

@media (max-width: 480px) {
    #nav-container {
        flex-direction: column;
        align-items: center;
    }
    
    #logo {
        justify-content: center;
    }
    
    #nav-bar ul {
        justify-content: center;
    }
    
    .container { 
        padding: 1rem; 
    }
    
    .contact-info { 
        padding: 1.25rem; 
    }
    
    .tagline h2 { 
        font-size: 2.5rem; 
    }
    
    .image-container { 
        min-height: 280px; 
    }
}