/* ==========================================
   SINGGAH DULU
   PREMIUM HOSPITALITY LANDING PAGE
   VERSION 1.0
========================================== */

:root {

    --bg-main: #F5F2ED;
    --bg-alt: #EFEAE3;

    --text-main: #5F554F;
    --text-soft: #746A63;

    --accent: #6D625B;
    --accent-dark: #564E48;

    --border: #D8D0C7;

    --white: #FFFFFF;

    --shadow:
        0 10px 30px rgba(0,0,0,0.05);

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;

    --container: 1200px;

}

/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {

    scroll-behavior: smooth;

}

body {

    font-family: "Plus Jakarta Sans", sans-serif;

    background: var(--bg-main);

    color: var(--text-main);

    line-height: 1.8;

    overflow-x: hidden;

}

img {

    display: block;

    max-width: 100%;

}

a {

    text-decoration: none;

    color: inherit;

}

.container {

    width: 90%;

    max-width: var(--container);

    margin: 0 auto;

}

.narrow {

    max-width: 850px;

    margin: 0 auto;

}

/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3 {

    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-style: normal;

    letter-spacing: .2rem;

    color: var(--text-main);

}

h1 {

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1.2;

}

h2 {

    font-size: clamp(2rem, 4vw, 3rem);

    line-height: 1.2;

    margin-bottom: 1rem;

}

h3 {

    font-size: 1.35rem;

    margin-bottom: 0.8rem;

}

p {

    color: var(--text-soft);

    font-size: 1rem;

}

.section-label {

    display: inline-block;

    margin-bottom: 1rem;

    letter-spacing: 2px;

    text-transform: uppercase;

    font-size: 0.8rem;
    font-weight: 600;

    color: var(--accent);

}

.section-intro {

    margin-top: 1.5rem;

    margin-bottom: 3rem;

}

.gilda-display-regular {
  font-family: "Gilda Display", serif;
  font-weight: 400;
  font-style: normal;
}


/* ==========================================
   BUTTONS
========================================== */

.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 30px;

    background: var(--accent);

    color: white;

    border-radius: 999px;

    transition: 0.3s;

}

.btn-primary:hover {

    background: var(--accent-dark);

    transform: translateY(-2px);

}

.btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 30px;

    border: 1px solid var(--border);

    border-radius: 999px;

    background: rgba(255,255,255,0.6);

}

.btn-secondary:hover {

    background: white;

}

/* ==========================================
   FLOATING WA
========================================== */

.floating-wa {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 999;

    background: var(--accent);

    color: white;

    padding: 14px 22px;

    border-radius: 999px;

    box-shadow: var(--shadow);

}

.floating-wa:hover {

    background: var(--accent-dark);

}

/* ==========================================
   NAVBAR
========================================== */

.navbar {

    position: sticky;

    top: 0;

    z-index: 1000;

    backdrop-filter: blur(12px);

    background:
        rgba(245,242,237,0.9);

    border-bottom:
        1px solid rgba(216,208,199,0.5);

    margin-bottom: 2rem;

}

.navbar-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    min-height: 80px;

}

.logo {

    width: 60px;

}

.nav-menu {

    display: flex;

    gap: 2rem;

}

.nav-menu a {

    font-size: 0.95rem;

    color: var(--text-soft);

}

.nav-menu a:hover {

    color: var(--accent);

}

.btn-nav {

    background: var(--accent);

    color: white;

    padding: 12px 20px;

    border-radius: 999px;

}

/* ==========================================
   HERO
========================================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    background-image:
        url("images/hero.jpg");

    background-size: cover;

    background-position: center;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
    rgba(245,242,237,0.78);

}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 950px;

}

.hero-logo {

    margin: 0 auto 2rem;

}

.hero-tagline {

    font-family: "EB Garamond", serif;
    font-weight: 400;
    font-style: italic;

    margin-bottom: 1rem;

    font-size: 3rem;

    color: var(--accent);

}

.hero h1 {

    margin-bottom: 2rem;

}

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 1rem;

    flex-wrap: wrap;

}

/* ==========================================
   SECTION
========================================== */

.section {

    padding: 110px 0;

}

.section-alt {

    background: var(--bg-alt);

}

/* ==========================================
   PHILOSOPHY
========================================== */

.philosophy-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap: 25px;

}

.philosophy-card {

    background: white;

    padding: 30px;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow);

}

/* ==========================================
   VALUES
========================================== */

.values-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap: 25px;

    margin-top: 3rem;

}

.value-item {

    background: white;

    padding: 30px;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow);

}

/* ==========================================
   FACILITIES
========================================== */

.facilities-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap: 20px;

    margin-top: 3rem;

}

.facility-card {

    background: white;

    padding: 25px;

    border-radius: var(--radius-md);

    border: 1px solid var(--border);

    text-align: center;

}

/* ==========================================
   GALLERY
========================================== */

.gallery-grid {

    margin-top: 3rem;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}

.gallery-grid img {

    width: 100%;

    aspect-ratio: 4/3;

    object-fit: cover;

    border-radius: var(--radius-md);

}

/* ==========================================
   PRICING
========================================== */

.pricing-grid {

    margin-top: 3rem;

    display: grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap: 30px;

}

.pricing-card {

    background: white;

    padding: 40px;

    border-radius: var(--radius-lg);

    text-align: center;

    box-shadow: var(--shadow);

}

.featured {

    border: 2px solid var(--accent);

}

.price {

    font-size: 3rem;

    font-family: 'Playfair Display', serif;

    color: var(--accent);

    margin: 20px 0;

}

.period {

    display: block;

    margin-bottom: 20px;

    color: var(--text-soft);

}

/* ==========================================
   LOCATION
========================================== */

.location-address {

    margin-top: 2rem;

    margin-bottom: 2rem;

}

.map-placeholder {

    background: white;

    height: 450px;

    border-radius: var(--radius-lg);

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px dashed var(--border);

}

/* ==========================================
   CTA
========================================== */

.cta-section {

    padding: 120px 0;

    text-align: center;

}

.cta-section h2 {

    margin-bottom: 1rem;

}

.cta-section p {

    margin-bottom: 2rem;

}

/* ==========================================
   FOOTER
========================================== */

.footer {

    background: #E9E2D9;

    padding: 80px 0;

    text-align: center;

}

.footer-logo {

    width: 80px;

    margin: 0 auto 20px;

}

.footer-contact {

    display: flex;

    justify-content: center;

    gap: 60px;

    margin-top: 30px;

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    .nav-menu {

        display: none;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

    }

    .footer-contact {

        flex-direction: column;

        gap: 20px;

    }

}

@media (max-width: 768px) {

    .hero {

        min-height: 90vh;

    }

    .hero-tagline {
        line-height: 1;
        margin-bottom: 2rem;
    }

    .section {

        padding: 80px 0;

    }

    h1 {

        font-size: 2.4rem;

    }

    h2 {

        font-size: 2rem;

    }

}

/* ==========================================
   SCROLL REVEAL
========================================== */

.hidden {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}

.show {

    opacity: 1;

    transform: translateY(0);

}

/* ==========================================
   ACTIVE NAVIGATION
========================================== */

.nav-menu a.active {

    color: var(--accent);

    font-weight: 600;

}

/* ==========================================
   LIGHTBOX
========================================== */

.lightbox {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background:
        rgba(0,0,0,0.85);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

}

.lightbox img {

    max-width: 90%;

    max-height: 90vh;

    border-radius: 12px;

}