:root {
    --hotel-blue: #0f172a;
    --hotel-gold: #b59410;
    --hotel-cream: #f8fafc;
    --hotel-grey: #64748b;
    --border-hotel: rgba(0,0,0,0.08);
    --glass: rgba(255, 255, 255, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #ffffff;
    color: var(--hotel-blue);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Global Proportions */
img {
    max-width: 100%;
    object-fit: cover;
    display: block;
}

/* Header Executive */
#header {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-hotel);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo-executive {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

/* The Logo Seal - Authentic Branding (Quality Seal Style) */
.logo-nanobanana {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1), inset 0 0 10px rgba(30, 41, 59, 0.05);
    border: 2px solid var(--hotel-blue);
}

.logo-nanobanana img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.brand-naming h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--hotel-blue);
    letter-spacing: 1px;
}

.brand-naming span {
    font-size: 0.7rem;
    color: var(--hotel-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
}

.nav-executive {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-executive a {
    text-decoration: none;
    color: var(--hotel-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-book {
    padding: 1rem 2.5rem;
    background: var(--hotel-blue);
    color: #fff !important;
    font-weight: 800 !important;
    border-radius: 4px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: background 0.3s;
}

.btn-book:hover {
    background: transparent;
    color: var(--hotel-blue) !important;
    box-shadow: inset 0 0 0 2px var(--hotel-blue);
}

/* Hero Section */
#hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('assets/fachada prn.jpg') no-repeat center center/cover;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-inner h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.hero-inner p {
    font-size: 1.4rem;
    max-width: 700px;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.9);
}

/* Grid Sections */
.py-section { padding: 8rem 0; }
.bg-cream { background: var(--hotel-cream); }

.grid-rooms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.room-card {
    background: #fff;
    border: 1px solid var(--border-hotel);
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.room-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.room-photo img {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-photo img {
    transform: scale(1.08);
}

.room-detail {
    padding: 2.5rem;
}

.room-detail h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--hotel-blue);
}

.room-detail p {
    color: var(--hotel-grey);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Features List */
.feat-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--hotel-gold);
    text-transform: uppercase;
}

/* High-Contrast Section */
.info-block {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.info-visual {
    flex: 1;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

.info-text { flex: 1; }
.info-text h3 { font-size: 3rem; margin-bottom: 2rem; }
.info-text p { font-size: 1.1rem; color: var(--hotel-grey); }

/* Footer */
footer {
    padding: 6rem 0;
    background: var(--hotel-blue);
    color: #fff;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
}

.footer-brand h2 { color: var(--hotel-gold); font-size: 1.8rem; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.6); }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    animation: fadeInUp 0.8s forwards;
}

/* Reviews Wall */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.review-card {
    background: #fff;
    padding: 2.5rem;
    border: 1px solid var(--border-hotel);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.social-icons-footer {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons-footer a {
    color: var(--hotel-gold);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.social-icons-footer a:hover {
    transform: translateY(-5px);
}



@media (max-width: 968px) {
    .container { padding: 0 2rem; }
    .grid-rooms { grid-template-columns: 1fr; }
    .info-block { flex-direction: column; }
    .footer-inner { grid-template-columns: 1fr; gap: 4rem; }
}
