: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);
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    min-width: 100%;
}

html {
    scroll-behavior: smooth;
}

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

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

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

img, video, iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
#header {
    background: #ffffff;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-hotel);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100% !important;
    z-index: 1000;
    transition: all 0.3s ease;
}

#header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

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

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

.logo-nanobanana {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--hotel-blue);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .logo-nanobanana {
        width: 70px;
        height: 70px;
    }
}

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

.brand-naming h1 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--hotel-blue);
    margin: 0;
}

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

@media (min-width: 768px) {
    .brand-naming h1 { font-size: 1.4rem; }
    .brand-naming span { font-size: 0.7rem; letter-spacing: 2px; }
}

/* Mobile Nav */
.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--hotel-blue);
    transition: all 0.3s ease;
}

@media (min-width: 968px) {
    .menu-btn { display: none; }
}

.nav-executive {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    list-style: none;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.nav-executive.active {
    right: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

@media (min-width: 968px) {
    .nav-executive {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        right: 0;
        gap: 3rem;
        visibility: visible;
        opacity: 1;
        pointer-events: all;
    }
}

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

@media (min-width: 968px) {
    .nav-executive a { font-size: 0.9rem; }
}

.btn-book {
    padding: 0.8rem 1.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.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .btn-book { padding: 1rem 2rem; font-size: 0.8rem; }
}

.btn-book:hover {
    background: var(--hotel-gold);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('assets/fachada prn.jpg') no-repeat center center/cover;
    padding-top: 120px;
    padding-bottom: 4rem;
}

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

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

.hero-inner span {
    color: var(--hotel-gold);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.7rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-inner h2 {
    font-size: 2.22rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

@media (min-width: 768px) {
    .hero-inner h2 { font-size: 4.5rem; line-height: 1.1; }
    .hero-inner p { font-size: 1.4rem; }
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

@media (max-width: 480px) {
    .hero-btns .btn-book { width: 100%; }
}

/* Services / Features */
.py-section { padding: 4rem 0; }

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 500px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 968px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--hotel-gold);
    margin-bottom: 1.5rem;
}

.feature-item h5 {
    color: var(--hotel-blue);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--hotel-grey);
    font-size: 0.9rem;
}

/* Rooms */
.bg-cream { background: var(--hotel-cream); }

.section-title-wrap {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-wrap span {
    color: var(--hotel-gold);
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.section-title-wrap h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .section-title-wrap h3 { font-size: 3.5rem; }
}

.grid-rooms {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .grid-rooms { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

.room-card {
    background: #fff;
    border: 1px solid var(--border-hotel);
    transition: all 0.3s ease;
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.room-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.roomSwiper {
    width: 100%;
    height: 100%;
}

.roomSwiper .swiper-slide {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roomSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .roomSwiper .swiper-slide img {
    transform: scale(1.05);
}

.roomSwiper .swiper-button-next,
.roomSwiper .swiper-button-prev {
    color: var(--hotel-gold);
    transform: scale(0.6);
    background: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--hotel-gold);
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: auto;
}

.roomSwiper .swiper-button-next:hover,
.roomSwiper .swiper-button-prev:hover {
    background: var(--hotel-gold);
    color: #fff;
}

.roomSwiper .swiper-button-next:after,
.roomSwiper .swiper-button-prev:after {
    font-weight: 900;
}

.roomSwiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.roomSwiper .swiper-pagination-bullet-active {
    background: var(--hotel-gold);
    opacity: 1;
}

.room-detail {
    padding: 1.75rem;
}

@media (min-width: 768px) {
    .room-detail { padding: 2.5rem; }
}

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

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

.feat-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--hotel-gold);
    text-transform: uppercase;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid var(--border-hotel);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.review-card .stars {
    color: var(--hotel-gold);
    margin-bottom: 1.5rem;
}

.review-card p {
    font-style: italic;
    color: var(--hotel-blue);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.review-card .author {
    font-weight: 800;
    color: var(--hotel-blue);
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Location Block */
.location-block {
    display: grid;
    grid-template-columns: 1fr;
    background: #fff;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

@media (min-width: 968px) {
    .location-block { grid-template-columns: 1fr 1fr; }
}

.location-content {
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .location-content { padding: 4rem 3rem; }
}

.location-content span {
    color: var(--hotel-gold);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.location-content h2 {
    font-size: 2rem;
    margin: 1.5rem 0;
    color: var(--hotel-blue);
    font-weight: 900;
}

.location-content p {
    color: var(--hotel-grey);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.location-visual {
    height: 300px;
}

@media (min-width: 968px) {
    .location-visual { height: 450px; }
}

.location-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

@media (min-width: 768px) {
    footer { padding: 6rem 0; }
}

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

@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr; gap: 5rem; }
}

.footer-brand h2 {
    color: var(--hotel-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 400px;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--hotel-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column p {
    margin-bottom: 0.8rem;
}

.footer-column p a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column p a:hover {
    color: var(--hotel-gold);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
