
 /* ESTILOS GLOBALES */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif;

background-image:
    linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(42, 42, 42, 0.85)), url('../images/fondo.webp');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;    
}


.sitio-titulo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sitio-titulo a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease, opacity .3s ease;
}

.sitio-titulo a:hover {
    opacity: .85;
}
        
/* MENÚ NAVEGACIÓN */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    padding: 15px 20px;
    z-index: 1000;
    border-bottom: 2px solid #f7c948;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.navbar .sitio-titulo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #f7c948;
    text-shadow: 0 0 20px rgba(247, 201, 72, 0.3);
}
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links a:hover {
    color: #f7c948;
}
.nav-links .carta-link {
    color: #f7c948;
    font-weight: 700;
}
.nav-links .carta-link:hover {
    color: #ff6b35;
}

/* BOTONES GENERALES */
.btn-primary {
    background: #f7c948;
    color: #000;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #f7c948;
}
.btn-primary:hover {
    background: transparent;
    color: #f7c948;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(247, 201, 72, 0.3);
}
.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #fff;
}
.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    .nav-links {
        justify-content: center;
        gap: 12px;
    }
    .nav-links a {
        font-size: 0.7rem;
    }
}

/* REDES SOCIALES */
.tramontana-galeria-frontend-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin: 30px 0;
}

.tramontana-galeria-frontend-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    
    /*background: rgba(247, 201, 72, 0.3);*/
    color: #333;
    color: #9b51e0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    transition: all .3s ease;
}

.tramontana-galeria-frontend-social a:hover {
    transform: translateY(-4px) scale(1.08);
    color: #fff;
}

.tramontana-galeria-frontend-social a:nth-child(1):hover {
    background: #1877F2;
}

.tramontana-galeria-frontend-social a:nth-child(2):hover {
    background: #E4405F;
}

.tramontana-galeria-frontend-social a:nth-child(3):hover {
    background: #000;     
}


.tramontana-galeria-frontend-social a:nth-child(4):hover {
    background: #25D366;
}

/* CARD */
.tramontana-card {
    /*background: linear-gradient(135deg, #1a1a1a, #2a2a2a);*/
    padding: 40px 30px;
    border: 1px solid #f7c948;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    transition: transform .3s ease, box-shadow .3s ease;
    
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: unset;
}

.tramontana-card.piso1 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, .75), rgba(42, 42, 42, .75)), url('../images/piso1.webp');
}

.tramontana-card.piso2 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, .75), rgba(42, 42, 42, .75)), url('../images/piso2.webp');
}

.tramontana-card.piso3 {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, .75), rgba(42, 42, 42, .75)), url('../images/piso3.webp');
}

.tramontana-card.cocteles, .tramontana-card.gastronomia {
    max-width: 500px;
    min-height: 200px;
}
 
.tramontana-card.cocteles {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, .75), rgba(42, 42, 42, .75)), url('../images/cocteles.webp');
}
.tramontana-card.gastronomia {
    background-image: linear-gradient(135deg, rgba(26, 26, 26, .75), rgba(42, 42, 42, .75)), url('../images/gastronomia.webp');
}


.tramontana-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .6);
}

.tramontana-card__icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tramontana-card__title {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: #f7c948;
}

.tramontana-card__subtitle {
    margin: 10px 0 20px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
}

.tramontana-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #ccc;
    font-size: 1rem;
    line-height: 2;
}

.tramontana-card__list li {
    margin: 5px 0;
}
.tramontana-card__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/*seccion */
.tramontana-section {
    padding: 80px 20px;
}

.tramontana-section-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #f7c948;
    margin-bottom: 30px;
}

.tramontana-section-content {
    display: flex;
    justify-content: center;
}

.tramontana-section-actions {
    text-align: center;
    margin-top: 40px;
}

/* SECCION HERO */
.tramontana-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px 60px;
}

.tramontana-hero__content {
    width: 100%;
    max-width: 800px;
}

.tramontana-hero__subtitle {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
}

.tramontana-hero__description {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ddd;
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
}

.tramontana-hero__location {
    margin: 20px 0 40px;
    color: #f7c948;
    font-size: .9rem;
}

.tramontana-hero__logo {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto 30px;
}