/* =========================
   ROYAL HÔTEL
   GLOBAL + NAVBAR + HERO
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Roboto',sans-serif;
}

:root{
    --purple:#8a63d2;
    --purple-dark:#5c3fa3;
    --purple-light:#cbb7ff;
    --lavender:#f7f2ff;
    --white:#ffffff;
    --dark:#1d1d28;
    --text:#5b5b6a;
    --gold:#e2c46c;

    --shadow:
    0 25px 60px rgba(92,63,163,.18);
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    overflow-x:hidden;
    color:var(--dark);
}

/* =========================
   HEADER
========================= */

.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    transition:.4s;
}

.site-header.scrolled{
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

/* NAVBAR */

.navbar{
    width:100%;
    padding:22px 7%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */

.logo{
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:10px;

    font-size:26px;
    font-weight:900;

    color:white;

    letter-spacing:.5px;
}

.logo i{
    color:var(--gold);
    font-size:24px;
}

.logo span{
    color:var(--gold);
}

/* SCROLLED LOGO */

.site-header.scrolled .logo{
    color:var(--dark);
}

/* NAV LINKS */

.nav-links{
    list-style:none;
    display:flex;
    gap:35px;
    align-items:center;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
    font-size:14px;
    position:relative;
}

.site-header.scrolled .nav-links a{
    color:var(--dark);
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:var(--gold);

    transition:.35s;
}

.nav-links a:hover::after{
    width:100%;
}

/* BOOK BUTTON */

.nav-btn{
    text-decoration:none;

    background:linear-gradient(
        135deg,
        var(--gold),
        #f6dfa0
    );

    color:var(--dark);

    padding:13px 24px;

    border-radius:40px;

    font-size:14px;
    font-weight:800;

    transition:.35s;
}

.nav-btn:hover{
    transform:translateY(-3px);
}

/* MOBILE */

.mobile-booking{
    display:none;
}

.menu-toggle{
    display:none;
    color:white;
    font-size:24px;
    cursor:pointer;
}

.site-header.scrolled .menu-toggle{
    color:var(--dark);
}

/* =========================
   HERO SECTION
========================= */

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

/* CAROUSEL */

.hero-slide{
    position:absolute;
    inset:0;

    opacity:0;
    transition:1s;
}

.hero-slide.active{
    opacity:1;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY */

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(20,20,30,.55),
        rgba(20,20,30,.65)
    );

    z-index:2;
}

/* CONTENT */

.hero-content{
    position:relative;
    z-index:3;

    max-width:850px;

    height:100%;

    margin:auto;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

    padding:0 20px;
}

/* BADGE */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.18);

    font-size:13px;
    font-weight:700;

    margin-bottom:25px;
}

.hero-badge i{
    color:var(--gold);
}

/* TITLE */

.hero-content h1{
    font-size:clamp(42px,6vw,78px);

    line-height:1.05;

    font-weight:900;

    margin-bottom:22px;
}

.hero-content p{
    max-width:720px;

    font-size:17px;

    line-height:1.8;

    color:#ededed;

    margin-bottom:35px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;

    margin-bottom:45px;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;

    padding:15px 28px;

    border-radius:40px;

    font-weight:800;

    transition:.35s;
}

.btn-primary{
    background:linear-gradient(
        135deg,
        var(--purple),
        var(--purple-dark)
    );

    color:white;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.3);

    background:rgba(255,255,255,.1);

    backdrop-filter:blur(12px);

    color:white;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-3px);
}

/* STATS */

.hero-stats{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero-stats div{
    min-width:180px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.18);

    padding:18px;

    border-radius:22px;
}

.hero-stats strong{
    display:block;
    font-size:20px;
    color:var(--gold);

    margin-bottom:6px;
}

.hero-stats span{
    font-size:13px;
    color:#f3f3f3;
}

/* CAROUSEL BUTTONS */

.carousel-controls{
    position:absolute;

    z-index:5;

    left:50%;
    bottom:35px;

    transform:translateX(-50%);

    display:flex;
    gap:12px;
}

.carousel-controls button{
    width:52px;
    height:52px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    color:white;

    transition:.35s;
}

.carousel-controls button:hover{
    background:var(--purple);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .desktop-booking{
        display:none;
    }

    .mobile-booking{
        display:block;
        width:100%;
    }

    .mobile-booking .nav-btn{
        display:block;
        text-align:center;
        margin-top:10px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;

        top:90px;
        right:20px;

        width:280px;

        background:white;

        display:none;
        flex-direction:column;

        padding:25px;

        border-radius:24px;

        box-shadow:var(--shadow);
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links a{
        color:var(--dark);
    }

    .hero-content h1{
        font-size:48px;
    }
}

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-stats{
        flex-direction:column;
        width:100%;
    }

    .hero-stats div{
        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }
}

@media(max-width:480px){

    .navbar{
        padding:18px 5%;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:14px;
    }

    .logo{
        font-size:20px;
    }

    .nav-links{
        width:90%;
        right:5%;
    }
}



/* =========================
   Rooms + Experiences + Special Moments + Ceremonies
========================= */

/* GENERAL SECTIONS */

section{
    padding:100px 7%;
}

.section-heading{
    text-align:center;
    max-width:780px;
    margin:0 auto 55px;
}

.section-heading span,
.moments-text span,
.reservation-text span,
.contact-info span{
    display:inline-block;
    color:var(--purple);
    font-size:13px;
    font-weight:900;
    letter-spacing:1.6px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-heading h2,
.moments-text h2,
.reservation-text h2,
.contact-info h2{
    font-size:clamp(30px,3.4vw,46px);
    line-height:1.12;
    color:var(--dark);
    margin-bottom:14px;
}

.section-heading p,
.moments-text p,
.reservation-text p,
.contact-info p{
    color:var(--text);
    font-size:15px;
    line-height:1.8;
}

/* ROOMS */

.rooms-section{
    background:var(--lavender);
}

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

.room-card{
    background:var(--white);
    border-radius:32px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:1px solid rgba(138,99,210,.12);
    transition:.35s ease;
}

.room-card:hover{
    transform:translateY(-10px);
}

.room-card.featured{
    border:1px solid rgba(226,196,108,.45);
}

.room-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.room-info{
    padding:26px;
}

.room-info span{
    display:inline-block;
    background:var(--lavender);
    color:var(--purple);
    padding:7px 13px;
    border-radius:30px;
    font-size:12px;
    font-weight:900;
    margin-bottom:13px;
}

.room-info h3{
    color:var(--dark);
    font-size:22px;
    margin-bottom:10px;
}

.room-info p{
    color:var(--text);
    font-size:14px;
    line-height:1.7;
    margin-bottom:16px;
}

.room-info ul{
    list-style:none;
    display:grid;
    gap:10px;
    margin-bottom:22px;
}

.room-info li{
    color:var(--text);
    font-size:14px;
}

.room-info li i{
    color:var(--purple);
    margin-right:8px;
}

.room-btn{
    display:inline-flex;
    text-decoration:none;
    background:linear-gradient(135deg,var(--purple),var(--purple-dark));
    color:var(--white);
    padding:12px 22px;
    border-radius:40px;
    font-weight:800;
    transition:.35s ease;
}

.room-btn:hover{
    transform:translateY(-3px);
}

/* EXPERIENCES */

.experiences-section{
    background:var(--white);
}

.experiences-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.experience-card{
    background:linear-gradient(180deg,#fff,var(--lavender));
    border:1px solid rgba(138,99,210,.12);
    border-radius:28px;
    padding:34px 24px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s ease;
}

.experience-card:hover{
    transform:translateY(-10px);
}

.experience-card i{
    width:62px;
    height:62px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--purple),var(--purple-dark));
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 18px;
    font-size:23px;
}

.experience-card h3{
    color:var(--dark);
    margin-bottom:10px;
    font-size:18px;
}

.experience-card p{
    color:var(--text);
    line-height:1.7;
    font-size:14px;
}

/* SPECIAL MOMENTS */

.special-moments{
    background:linear-gradient(135deg,#fff,var(--lavender));
}

.moments-layout{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:50px;
    align-items:center;
}

.moments-image{
    position:relative;
    height:520px;
    border-radius:36px;
    overflow:hidden;
    box-shadow:var(--shadow);
    border:10px solid rgba(255,255,255,.75);
}

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

.moments-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(29,29,40,.45),transparent 60%);
}

.moments-badge{
    position:absolute;
    left:22px;
    bottom:22px;
    z-index:2;
    background:rgba(255,255,255,.9);
    border:1px solid rgba(138,99,210,.15);
    border-radius:22px;
    padding:14px 18px;
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--dark);
    backdrop-filter:blur(14px);
}

.moments-badge i{
    color:var(--purple);
}

.moments-list{
    display:grid;
    gap:14px;
    margin:25px 0 28px;
}

.moments-list div{
    display:flex;
    align-items:center;
    gap:12px;
    background:var(--white);
    padding:15px 16px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(92,63,163,.08);
    color:var(--text);
}

.moments-list i{
    width:28px;
    height:28px;
    border-radius:50%;
    background:var(--purple);
    color:var(--white);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

.section-btn{
    display:inline-flex;
    text-decoration:none;
    background:linear-gradient(135deg,var(--purple),var(--purple-dark));
    color:var(--white);
    padding:14px 24px;
    border-radius:40px;
    font-weight:900;
    transition:.35s ease;
}

.section-btn:hover{
    transform:translateY(-3px);
}

/* CEREMONIES */

.ceremony-section{
    background:var(--white);
}

.ceremony-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.ceremony-card{
    background:var(--lavender);
    border:1px solid rgba(138,99,210,.12);
    border-radius:28px;
    padding:34px 24px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s ease;
}

.ceremony-card:hover{
    transform:translateY(-10px);
}

.ceremony-card i{
    width:60px;
    height:60px;
    margin:0 auto 18px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--gold),#f6dfa0);
    color:var(--dark);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.ceremony-card h3{
    color:var(--dark);
    margin-bottom:10px;
}

.ceremony-card p{
    color:var(--text);
    line-height:1.7;
    font-size:14px;
}

/* RESPONSIVE PART 2 */

@media(max-width:1024px){

    .rooms-grid,
    .experiences-grid,
    .ceremony-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .moments-layout{
        grid-template-columns:1fr;
    }

    .moments-text{
        text-align:center;
        max-width:760px;
        margin:auto;
    }

    .moments-list div{
        justify-content:center;
    }
}

@media(max-width:768px){

    section{
        padding:80px 6%;
    }

    .rooms-grid,
    .experiences-grid,
    .ceremony-grid{
        grid-template-columns:1fr;
    }

    .room-card img{
        height:230px;
    }

    .moments-image{
        height:380px;
        border-radius:28px;
    }
}

@media(max-width:480px){

    section{
        padding:70px 5%;
    }

    .room-info,
    .experience-card,
    .ceremony-card{
        padding:24px 20px;
    }

    .moments-image{
        height:310px;
    }

    .moments-badge{
        left:12px;
        right:12px;
        bottom:12px;
    }
}


/* =========================
   Reservation + Gallery + Contact + Footer
========================= */

/* RESERVATION */

.reservation-section{
    background:
    linear-gradient(
        135deg,
        var(--lavender),
        #ffffff
    );
}

.reservation-layout{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:50px;
    align-items:center;
}

.reservation-options{
    display:flex;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.call-btn,
.whatsapp-btn{
    text-decoration:none;
    padding:14px 24px;
    border-radius:40px;
    font-weight:800;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.35s;
}

.call-btn{
    background:var(--white);
    color:var(--dark);
    border:1px solid rgba(0,0,0,.08);
    box-shadow:var(--shadow);
}

.whatsapp-btn{
    background:#25D366;
    color:white;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-3px);
}

/* FORM */

.reservation-form{
    background:white;
    padding:35px;
    border-radius:32px;
    box-shadow:var(--shadow);
    border:1px solid rgba(138,99,210,.12);
}

.reservation-form h3{
    font-size:28px;
    margin-bottom:22px;
    color:var(--dark);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea{
    width:100%;
    padding:14px 16px;
    margin-bottom:15px;
    border-radius:16px;
    border:1px solid rgba(0,0,0,.1);
    outline:none;
    font-size:14px;
}

.reservation-form textarea{
    min-height:120px;
    resize:none;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.reservation-form button{
    width:100%;
    border:none;
    cursor:pointer;
    padding:15px;
    border-radius:40px;
    font-weight:800;
    font-size:15px;

    background:linear-gradient(
        135deg,
        var(--purple),
        var(--purple-dark)
    );

    color:white;

    transition:.35s;
}

.reservation-form button:hover{
    transform:translateY(-3px);
}

/* GALLERY */

.gallery-section{
    background:white;
}

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    grid-template-rows:260px 260px;
    gap:20px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    box-shadow:var(--shadow);
}

.gallery-item.large{
    grid-row:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;

    padding:25px;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );

    color:white;
}

.gallery-overlay h4{
    font-size:22px;
    margin-bottom:5px;
}

/* CONTACT */

.contact-section{
    background:var(--lavender);
}

.contact-container{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:40px;
    align-items:center;
}

.contact-items{
    display:grid;
    gap:15px;
    margin-top:30px;
}

.contact-item{
    background:white;
    border-radius:22px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:var(--shadow);
}

.contact-item i{
    width:52px;
    height:52px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--purple),
        var(--purple-dark)
    );

    color:white;
}

.contact-item strong{
    display:block;
    color:var(--dark);
    margin-bottom:4px;
}

.contact-item span{
    color:var(--text);
}

.contact-map{
    height:500px;
    overflow:hidden;
    border-radius:32px;
    box-shadow:var(--shadow);
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:none;
}

/* FOOTER */

.footer{
    background:#161620;
    color:white;
    padding:80px 7% 25px;
}

.footer-container{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:40px;
}

.footer-logo{
    text-decoration:none;
    color:white;

    display:flex;
    align-items:center;
    gap:10px;

    font-size:24px;
    font-weight:900;
}

.footer-logo i{
    color:var(--gold);
}

.footer-logo span{
    color:var(--gold);
}

.footer-brand p{
    margin-top:20px;
    color:#cfcfe4;
    line-height:1.8;
}

.footer-links h4,
.footer-social h4{
    margin-bottom:18px;
}

.footer-links a,
.footer-social a{
    display:block;
    text-decoration:none;
    color:#cfcfe4;
    margin-bottom:12px;
    transition:.35s;
}

.footer-links a:hover,
.footer-social a:hover{
    color:var(--gold);
    transform:translateX(6px);
}

.footer-social i{
    width:22px;
    color:var(--gold);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:22px;
    text-align:center;
}

.footer-bottom p{
    color:#bdbdd5;
    font-size:13px;
}

/* SCROLL ANIMATION */

.reveal{
    opacity:0;
    transform:translateY(35px);
    transition:.8s ease;
}

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

/* RESPONSIVE */

@media(max-width:1024px){

    .reservation-layout,
    .contact-container{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
        grid-template-rows:auto;
    }

    .gallery-item.large{
        grid-row:auto;
        height:300px;
    }

    .gallery-item{
        height:250px;
    }

    .contact-map{
        height:350px;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .reservation-form{
        padding:25px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:480px){

    .reservation-options{
        flex-direction:column;
    }

    .call-btn,
    .whatsapp-btn{
        justify-content:center;
        width:100%;
    }

    .reservation-form{
        padding:20px;
    }

    .contact-map{
        height:280px;
    }

    .footer{
        padding:60px 5% 20px;
    }
}

/* =========================
   HERO BADGE + CAROUSEL ARROW FIX
========================= */
/* =========================
   FINAL CLEAN HERO MOBILE FIX
========================= */

.hero-content{
    height:100%;
    padding:95px 20px 105px !important;
    justify-content:center;
}

.hero-badge{
    margin-top:0 !important;
    margin-bottom:20px;
}

.hero-stats{
    margin-top:0 !important;
}

.carousel-controls{
    position:absolute;
    z-index:6;
    right:35px;
    bottom:35px;
    left:auto !important;
    transform:none !important;
}

/* Tablet */
@media(max-width:991px){

    .hero-content{
        padding:110px 20px 115px !important;
    }

    .hero-badge{
        font-size:12px;
        line-height:1.5;
        text-align:center;
    }

    .carousel-controls{
        right:25px;
        bottom:25px;
    }
}

/* Mobile */
@media(max-width:768px){

    .hero{
        min-height:100vh;
        height:auto;
    }

    .hero-content{
        min-height:100vh;
        padding:105px 20px 120px !important;
        justify-content:center;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.12;
        margin-bottom:16px;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.6;
        margin-bottom:22px;
    }

    .hero-buttons{
        margin-bottom:22px;
    }

    .hero-stats{
        gap:10px;
    }

    .hero-stats div{
        padding:13px;
        border-radius:18px;
    }

    .carousel-controls{
        left:50% !important;
        right:auto !important;
        bottom:18px;
        transform:translateX(-50%) !important;
    }

    .carousel-controls button{
        width:42px;
        height:42px;
    }
}

/* Small phones */
@media(max-width:480px){

    .hero-content{
        padding:100px 16px 125px !important;
    }

    .hero-badge{
        max-width:100%;
        padding:8px 12px;
    }

    .hero-content h1{
        font-size:28px;
    }

    .hero-stats div{
        min-width:0;
        width:100%;
    }

    .carousel-controls{
        bottom:14px;
    }
}