@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --black:#000000;
    --white:#ffffff;
    --gold:#C6A75E;

    --soft: rgba(255,255,255,.78);
    --muted: rgba(255,255,255,.58);
    --line: rgba(255,255,255,.12);
    --line-strong: rgba(255,255,255,.18);
    --panel: rgba(255,255,255,.03);
}

/* RESET & BASE — with Roboto applied globally */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
*{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-variation-settings: "wdth" 100;
    line-height: 1.5;
    font-weight: 400;  /* default regular */
}

/* === CUSTOM NAVBAR === */
.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid #eaeaea;
    position: relative;
    z-index: 10;
}

/* Logo area */
.navbar-logo a {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: #1e3c3c;
    display: flex;
    align-items: center;
}

.logo-accent {
    color: #c6a75e;
    font-weight: 400;
    margin-left: 4px;
    font-size: 1.4rem;
}

/* Desktop navigation menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-menu li a {
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 500;
    color: #000000;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
    white-space: nowrap;
}

.nav-menu li a:hover {
    border-bottom-color: #c6a75e;
    color: #282727;
}

/* Menu item special highlight (optional) */
.nav-menu li:last-child a {
    color: #c6a75e;
    font-weight: 600;
}

/* mobile toggle button (hidden on desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background-color: #000000;
    margin: 3px 0;
    transition: 0.2s;
    border-radius: 2px;
}

/* === RESPONSIVE BEHAVIOR === */
@media screen and (max-width: 950px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        gap: 1rem;
    }
}

@media screen and (max-width: 820px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.5rem 0 1rem 0;
        margin-top: 1rem;
        border-top: 1px solid #eee;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 0.6rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .nav-menu li a:hover {
        border-bottom-color: #c6a75e;
        background-color: #fcf8f3;
        padding-left: 0.5rem;
    }

    .navbar-logo a {
        font-size: 1.6rem;
    }
}

/* minor fix for very small screens */
@media screen and (max-width: 380px) {
    .navbar {
        padding: 1rem;
    }
    .navbar-logo a {
        font-size: 1.4rem;
    }
    .logo-accent {
        font-size: 1.1rem;
    }
}

/* Section base */
.sanze-framework{
    background: var(--black);
    color: var(--white);
    padding: clamp(56px, 7vw, 92px) 0;
}

.sf-container{
    width: min(1200px, 92vw);
    margin: 0 auto;
}

/* Header */
.sf-header{
    max-width: 900px;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.sf-kicker{
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    margin-bottom: 14px;
}

.sf-title{
    font-size: clamp(36px, 4.6vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    font-weight: 750;
}

.sf-lead{
    max-width: 820px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

/* Rows container */
.sf-rows{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Row */
.sf-row{
    display: grid;
    grid-template-columns: 1.05fr 1.35fr 0.95fr;
    gap: clamp(18px, 3vw, 34px);
    padding: 28px 0;
    border-top: 1px solid var(--line);
}

.sf-row:last-child{
    border-bottom: 1px solid var(--line);
}

/* Highlight row */
.sf-row--highlight{
    background: var(--panel);
    border: 1px solid var(--line-strong);
    padding: 30px 26px;
}

.sf-mini{
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: rgba(255,255,255,.42);
    margin-bottom: 10px;
}

.sf-row-title{
    font-size: 20px;
    line-height: 1.25;
    margin: 0;
    font-weight: 700;
    position: relative;
}

/* subtle gold accent bar */
.sf-row-title::before{
    content:"";
    position:absolute;
    left: -14px;
    top: 6px;
    width: 3px;
    height: 22px;
    background: var(--gold);
    opacity: .9;
}

.sf-desc{
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 14.8px;
}

/* Right bullets with dash */
.sf-list{
    list-style: none;
    padding: 0;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 13.5px;
    line-height: 1.85;
}

.sf-list li{
    position: relative;
    padding-left: 18px;
    margin: 6px 0;
}

.sf-list li a{
    color: #fff;
}

.sf-list li::before{
    content:"—";
    position:absolute;
    left: 0;
    color: rgba(255,255,255,.35);
}

/* Responsive */
@media (max-width: 980px){
    .sf-row{
        grid-template-columns: 1fr;
        padding: 22px 0;
    }

    .sf-row--highlight{
        padding: 22px 18px;
    }

    .sf-row-title::before{
        left: 0;
        top: -10px;
        width: 32px;
        height: 2px;
    }
}

:root{
    --black:#000000;
    --white:#ffffff;
    --gold:#C6A75E;
    --light:#f4f4f4;
    --muted:#6e6e6e;
}

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

body{
    font-family: "Inter", Arial, sans-serif;
    background: var(--white);
    color: var(--black);
}

/* SECTION */
.framework{
    padding:50px 8%;
    /*background: var(--white);*/
}

.framework-kicker{
    font-size:12px;
    letter-spacing:4px;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:20px;
}

.framework-title{
    font-size: clamp(38px, 5vw, 64px);
    font-weight:700;
    line-height:1.05;
    margin-bottom:20px;
}

.framework-text{
    max-width:700px;
    color:#555;
    line-height:1.7;
    margin-bottom:60px;
}

/* GRID */
.destinations-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap:30px;
}

/* CARD */
.destination-card{
    position:relative;
    overflow:hidden;
    height:340px;
    cursor:pointer;
    background:#000;
    border-radius: 20px !important;
}

/* IMAGE */
.destination-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

/* DARK OVERLAY */
.destination-card::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    transition: all 0.5s ease;
}

/* CONTENT */
.destination-content{
    position:absolute;
    bottom:30px;
    left:30px;
    z-index:2;
    color:var(--white);
}

.destination-label{
    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;
    opacity:0.7;
    margin-bottom:8px;
}

.destination-title{
    font-size:24px;
    font-weight:600;
    position:relative;
}

/* GOLD LINE */
.destination-title::after{
    content:"";
    display:block;
    width:40px;
    height:2px;
    background:var(--gold);
    margin-top:8px;
    transition: width 0.4s ease;
}

/* HOVER EFFECT */
.destination-card:hover img{
    transform:scale(1.08);
    filter: grayscale(0%);
}

.destination-card:hover::after{
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.1));
}

.destination-card:hover .destination-title::after{
    width:80px;
}

/* DESCRIPTION BELOW GRID */
.destination-desc{
    margin-top:20px;
    color:#666;
    line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:900px){
    .destinations-grid{
        grid-template-columns:1fr;
    }

    header {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: blur(10px);
        /*padding: 20px 13px !important;*/
        padding: 0 !important;
    }

    .hero .card {
        border: 1px solid rgba(255, 255, 255, 0.2);
        /*width: 70px;*/
    }

    .hero .reveal {
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 285px !important;
    }
}

/* =========================================
           HERO SLIDER
           ========================================= */
.slider{
    position:relative;
    overflow:hidden;
    border-radius:16px;
    border:1px solid var(--line);
    background:linear-gradient(135deg, rgba(10,10,10,.03), rgba(255,255,255,.9));
    height:270px;
    margin-top:14px;
}
.slides{
    display:flex;
    width:100%;
    height:100%;
    transition: transform .55s ease;
    will-change: transform;
}
.slide{
    min-width:100%;
    height:80%;
    padding:18px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    gap:8px;
    position:relative;
}
.slide::before{
    content:"";
    position:absolute; inset:0;
    background:
        radial-gradient(700px 260px at 20% 20%, rgba(176,141,87,.18), transparent 60%),
        linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.65));
    pointer-events:none;
}
.slide > *{position:relative; z-index:1}
.slide-title{font-weight:900;font-size:18px}
.slide-sub{font-size:13px;color:rgba(10,10,10,.72);line-height:1.5;max-width:95%}

.slider-ui{
    position:absolute; inset:auto 12px 12px 12px;
    display:flex; align-items:center; justify-content:space-between; gap:10px;
    z-index:3;
}
.dots{display:flex; gap:8px; align-items:center}
.dot{
    width:9px;height:9px;border-radius:999px;
    border:1px solid var(--line);
    background:rgba(10,10,10,.06);
    cursor:pointer;
    transition:.2s;
}
.dot.active{
    width:22px;
    background:rgba(176,141,87,.45);
    border-color:rgba(176,141,87,.55);
}
.arrows{display:flex; gap:8px}
.icon-btn{
    width:36px;height:36px;border-radius:12px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.8);
    cursor:pointer;
    transition:.2s;
    display:grid; place-items:center;
}
.icon-btn:hover{border-color:rgba(176,141,87,.55); transform:translateY(-1px)}
.progress{
    position:absolute; left:0; right:0; bottom:0; height:3px;
    background:rgba(10,10,10,.06);
}
.progress > span{
    display:block; height:100%; width:0%;
    background:rgba(176,141,87,.65);
    transition: width linear;
}

/* ----- FLOATING ACTION BUTTON (back to top) ----- */
.float-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 9999px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 4px 10px -6px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(8px);
    background-color: rgba(255,255,255,0.9);
    border-color: rgba(198,167,94,0.2);
}

/* visible state */
.float-btn.show {
    opacity: 1;
    visibility: visible;
}

/* hover effect: gold & lift */
.float-btn:hover {
    background-color: #c6a75e;
    border-color: #c6a75e;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 28px -10px rgba(198,167,94,0.4);
}

/* arrow icon */
.float-btn svg {
    width: 1.8rem;
    height: 1.8rem;
    stroke: #334155;
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.2s;
}

.float-btn:hover svg {
    stroke: #ffffff;
    transform: translateY(-3px);
}

/* mini floating label (tooltip) - optional */
.float-tooltip {
    position: absolute;
    right: 4.5rem;
    background: #1e293b;
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    letter-spacing: 0.3px;
}

.float-btn:hover .float-tooltip {
    opacity: 1;
}

/* accessibility focus */
.float-btn:focus-visible {
    outline: 3px solid #c6a75e;
    outline-offset: 3px;
}

footer{
}
