*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --bg:#f7f3ee;
    --white:#ffffff;
    --dark:#101826;
    --dark-soft:#1e293b;
    --text:#5f6773;
    --text-light:#7b8494;
    --gold:#c6a56b;
    --gold-dark:#a9884f;
    --gold-soft:#ead8b6;
    --line:rgba(255,255,255,0.18);
    --overlay:rgba(8,12,20,0.56);
    --shadow:0 20px 60px rgba(16,24,38,0.14);
    --shadow-lg:0 30px 90px rgba(15,23,42,0.18);
    --container:1280px;
}

html{
    scroll-behavior:smooth;
}

html,
body{
    max-width:100%;
    overflow-x:hidden;
}

body{
    font-family:'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(231,214,186,0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(198,165,107,0.08), transparent 30%),
        var(--bg);
    color:var(--dark);
    line-height:1.7;
    overflow-x:hidden;
}

img,
iframe{
    max-width:100%;
    height:auto;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

h1,h2,h3,h4{
    font-family:'Cormorant Garamond', serif;
    font-weight:700;
    line-height:1.1;
}

section,
div,
article,
aside,
main,
header,
footer,
nav{
    max-width:100%;
}

#progress-bar{
    position:fixed;
    top:0;
    left:0;
    width:0%;
    height:4px;
    background:linear-gradient(90deg,var(--gold),#ecd7b0);
    z-index:3000;
}

/* Header */
.blog-header{
    min-height:72vh;
    position:relative;
    background:
        linear-gradient(var(--overlay), var(--overlay)),
        url("Images/rooms.jpg") center center / cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.08), transparent 35%),
        linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.28));
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:5;
    width:90%;
    max-width:860px;
    text-align:center;
    color:#fff;
    padding-top:70px;
}

.hero-subtitle{
    display:inline-block;
    margin-bottom:16px;
    color:var(--gold-soft);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:13px;
    font-weight:600;
}

.hero-content h1{
    font-size:76px;
    color:#fff;
    margin-bottom:16px;
    text-shadow:0 12px 40px rgba(0,0,0,0.28);
}

.hero-content p{
    font-size:18px;
    color:rgba(255,255,255,0.92);
}

/* Nav */
nav{
    position:fixed;
    top:18px;
    left:50%;
    transform:translateX(-50%);
    width:min(92%, var(--container));
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 28px;
    border-radius:20px;
    background:rgba(16,24,38,0.22);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border:1px solid var(--line);
    z-index:2500;
    transition:all .35s ease;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

nav.scrolled{
    top:10px;
    background:rgba(16,24,38,0.84);
    box-shadow:var(--shadow-lg);
}

.logo{
    position:relative;
    z-index:2600;
    display:inline-flex;
    align-items:center;
}

.logo img{
    width:100px;
    height:auto;
}

.nav-links{
    display:flex;
    align-items:center;
}

.nav-links ul{
    margin:0;
    padding:0;
    list-style:none;
}

.nav-links ul li{
    display:inline-block;
    margin:0 14px;
}

.nav-links ul li a{
    color:#fff;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1.8px;
    font-weight:500;
    position:relative;
    padding-bottom:6px;
}

.nav-links ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--gold);
    transition:width .35s ease;
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after{
    width:100%;
}

.nav-actions{
    display:flex;
    align-items:center;
    gap:16px;
    position:relative;
    z-index:2600;
}

.nav-book-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:11px 20px;
    border-radius:999px;
    background:var(--gold);
    color:#fff;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    transition:.3s ease;
    box-shadow:0 14px 30px rgba(198,165,107,0.25);
}

.nav-book-btn:hover{
    background:var(--gold-dark);
    transform:translateY(-2px);
}

nav .fa{
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

.menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:1900;
}

.menu-overlay.active{
    opacity:1;
    visibility:visible;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    cursor:pointer;
    font-size:24px;
    padding:6px;
}

.menu-close{
    display:none;
    position:absolute;
    top:24px;
    right:22px;
    background:none;
    border:none;
    color:#fff;
    cursor:pointer;
    font-size:28px;
    z-index:2700;
}

/* Sections */
.intro-section,
.blog-section,
.seo-content-section,
.cta-section{
    width:92%;
    max-width:var(--container);
    margin:0 auto;
}

.intro-section{
    padding:95px 0 35px;
}

.blog-section{
    padding:10px 0 35px;
}

.seo-content-section{
    padding:20px 0 35px;
}

.cta-section{
    padding:35px 0 110px;
}

.section-heading{
    max-width:860px;
    margin:0 auto 44px;
    text-align:center;
}

.section-heading.left{
    max-width:none;
    margin:0 0 28px 0;
    text-align:left;
}

.section-heading span,
.cta-box span{
    display:inline-block;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.section-heading h2,
.cta-box h2{
    font-size:56px;
    margin-bottom:16px;
}

.section-heading p,
.cta-box p{
    color:var(--text);
    font-size:17px;
}

/* Intro */
.intro-card{
    background:rgba(255,255,255,0.82);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-radius:28px;
    padding:38px;
    box-shadow:var(--shadow);
    text-align:center;
    border:1px solid rgba(255,255,255,0.7);
}

.intro-card h2{
    font-size:44px;
    margin-bottom:12px;
}

.intro-card p{
    max-width:920px;
    margin:0 auto;
    color:var(--text);
    font-size:16px;
}

/* Blog grid */
.blog-wrap{
    width:100%;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
}

.blog-card{
    background:rgba(255,255,255,0.94);
    border-radius:26px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:transform .35s ease, box-shadow .35s ease;
    border:1px solid rgba(255,255,255,0.7);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 28px 70px rgba(16,24,38,0.16);
}

.blog-image-link{
    display:block;
    overflow:hidden;
}

.blog-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:transform .5s ease;
}

.blog-card:hover img{
    transform:scale(1.05);
}

.blog-card-content{
    padding:24px;
}

.blog-meta{
    margin-bottom:14px;
    color:var(--text-light);
    font-size:13px;
    letter-spacing:.4px;
}

.blog-meta i{
    margin-right:6px;
    color:var(--gold);
}

.blog-card h2{
    font-size:34px;
    margin-bottom:14px;
}

.blog-card h2 a{
    color:var(--dark);
    transition:color .3s ease;
}

.blog-card h2 a:hover{
    color:var(--gold-dark);
}

.blog-card p{
    color:var(--text);
    font-size:15px;
    margin-bottom:18px;
}

.blog-read{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--gold-dark);
    font-size:14px;
    font-weight:600;
    letter-spacing:.3px;
    transition:gap .25s ease, color .25s ease;
}

.blog-read:hover{
    gap:14px;
    color:var(--dark);
}

.blog-empty{
    text-align:center;
    background:rgba(255,255,255,0.9);
    border-radius:28px;
    padding:50px 28px;
    box-shadow:var(--shadow);
    border:1px solid rgba(255,255,255,0.7);
}

.blog-empty h3{
    font-size:36px;
    margin-bottom:10px;
}

.blog-empty p{
    color:var(--text);
    font-size:16px;
    max-width:680px;
    margin:0 auto;
}

/* SEO content */
.seo-content-card{
    background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(251,248,243,0.96));
    border-radius:32px;
    padding:42px 36px;
    box-shadow:var(--shadow);
    border:1px solid rgba(255,255,255,0.75);
}

.seo-content-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
}

.seo-content-grid p{
    color:var(--text);
    font-size:16px;
    line-height:1.85;
    margin-bottom:16px;
}

.seo-content-grid a{
    color:var(--gold-dark);
    text-decoration:underline;
    text-underline-offset:3px;
}

.seo-content-grid a:hover{
    color:var(--dark);
}

/* CTA */
.cta-box{
    text-align:center;
    background:linear-gradient(180deg, #ffffff, #fbf8f3);
    border-radius:32px;
    padding:70px 35px;
    box-shadow:var(--shadow-lg);
    border:1px solid rgba(255,255,255,0.7);
}

.cta-box p{
    max-width:760px;
    margin:0 auto 28px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 32px;
    border-radius:999px;
    background:var(--gold);
    color:#fff;
    border:1px solid var(--gold);
    font-size:14px;
    font-weight:600;
    transition:.35s ease;
    box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

.hero-btn:hover{
    background:var(--gold-dark);
    border-color:var(--gold-dark);
    transform:translateY(-3px);
}

.hero-btn-secondary{
    background:transparent;
    border:1px solid rgba(17,24,39,0.16);
    color:var(--dark);
}

.hero-btn-secondary:hover{
    background:var(--dark);
    color:#fff;
    border-color:var(--dark);
}

.dark-outline{
    color:var(--dark);
}

/* Footer */
.footer{
    background:#0f1724;
    padding:90px 20px 45px;
}

.footer-inner{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.footer-inner h2{
    color:#fff;
    font-size:48px;
    margin-bottom:12px;
}

.footer-inner p{
    color:rgba(255,255,255,0.72);
    margin-bottom:20px;
}

.icons{
    margin:26px 0 18px;
}

.icons a{
    width:52px;
    height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 8px;
    background:rgba(255,255,255,0.08);
    color:var(--gold);
    font-size:18px;
    transition:.35s ease;
}

.icons a:hover{
    background:var(--gold);
    color:#fff;
    transform:translateY(-4px);
}

.footer-text{
    font-size:14px;
    color:rgba(255,255,255,0.55);
}

/* Reveal */
.reveal{
    opacity:0;
    transform:translateY(45px);
    transition:all .85s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* Back to top */
#backToTop{
    position:fixed;
    right:24px;
    bottom:24px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:var(--gold);
    color:#fff;
    font-size:22px;
    box-shadow:var(--shadow);
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:2200;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    background:var(--gold-dark);
    transform:translateY(-3px);
}

/* Responsive */
@media (max-width: 1100px){
    .blog-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .seo-content-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:62px;
    }

    .section-heading h2,
    .cta-box h2{
        font-size:44px;
    }
}

@media (max-width: 768px){
    nav{
        width:94%;
        padding:14px 16px;
        border-radius:18px;
    }

    .logo img{
        width:78px;
    }

    .nav-book-btn{
        display:none;
    }

    .menu-toggle{
        display:inline-flex;
        align-items:center;
        justify-content:center;
    }

    .menu-close{
        display:block;
    }

    .nav-actions{
        display:flex;
        align-items:center;
        gap:12px;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:78%;
        max-width:320px;
        height:100vh;
        background:rgba(15,23,42,0.98);
        box-shadow:-10px 0 30px rgba(0,0,0,0.3);
        transition:right .35s ease;
        z-index:2300;
        padding:90px 28px 30px;
        display:flex;
        flex-direction:column;
        justify-content:flex-start;
        align-items:flex-start;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links ul{
        padding:0;
        margin:0;
        width:100%;
    }

    .nav-links ul li{
        display:block;
        margin:0 0 22px 0;
    }

    .nav-links ul li a{
        display:inline-block;
        font-size:14px;
        letter-spacing:2px;
        color:#fff;
    }

    .hero-content{
        width:92%;
        padding-top:50px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-subtitle{
        letter-spacing:2px;
        font-size:11px;
    }

    .intro-section{
        padding:75px 0 20px;
    }

    .section-heading h2,
    .cta-box h2,
    .intro-card h2{
        font-size:34px;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-card-content,
    .intro-card,
    .seo-content-card{
        padding:24px;
    }

    .cta-box{
        padding:50px 22px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .hero-btn{
        width:100%;
        max-width:310px;
    }

    .footer-inner h2{
        font-size:38px;
    }
}

@media (max-width: 480px){
    .hero-content h1{
        font-size:36px;
    }

    .section-heading h2,
    .cta-box h2,
    .intro-card h2{
        font-size:30px;
    }

    .intro-card,
    .seo-content-card,
    .blog-card-content,
    .cta-box{
        padding:20px;
    }

    .blog-card h2{
        font-size:28px;
    }

    #backToTop{
        right:16px;
        bottom:16px;
        width:46px;
        height:46px;
    }
}
