/* Variabel Warna & Font */
:root {
    --bg-sage: #fafafa;
    --sage-light: #e8ede8;
    --sage-primary: #5c765d;
    --sage-dark: #3f5240;
    --stone-900: #1c1917;
    --stone-800: #292524;
    --stone-600: #57534e;
    --stone-500: #78716c;
    --stone-200: #e2e8e2;
    --gold: #b39974;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-sage);
    color: var(--stone-800);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: rgba(244, 246, 244, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(226, 232, 226, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--sage-dark);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--sage-primary);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--stone-800);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--sage-primary);
}

/* Tombol Reservasi Pojok Kanan Atas Diperkecil */
.btn-nav {
    padding: 8px 20px;
    background-color: var(--sage-dark);
    color: #fff;
    border-radius: 9999px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.btn-nav:hover {
    background-color: var(--sage-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sage-dark);
    background-image: linear-gradient(rgba(63, 82, 64, 0.75), rgba(41, 37, 36, 0.85)), url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #ffffff;
    padding: 0 24px;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-subtitle, .badge {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #d1e0d1;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    font-style: italic;
    font-weight: 300;
}

.hero p {
    color: #e2e8e2;
    font-size: 16px;
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 32px;
    background-color: #d1e0d1;
    color: var(--sage-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 9999px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #fff;
}

.btn-outline {
    padding: 16px 32px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 9999px;
    transition: background 0.3s;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Services Section */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header .badge {
    color: var(--sage-primary);
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--stone-900);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--stone-600);
    font-size: 14px;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: #b7dbb6;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--stone-200);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(92, 118, 93, 0.08);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-body {
    padding: 30px;
}

.service-title-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}

.service-title-price h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--stone-900);
}

.price {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--sage-primary);
}

.service-body p {
    color: var(--stone-600);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--stone-200);
    padding-top: 16px;
    font-size: 12px;
    color: var(--stone-500);
    font-weight: 500;
}

.service-footer a {
    color: var(--sage-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s;
}

.service-footer a:hover {
    color: var(--sage-primary);
}

/* About Section */
.about {
    background-color: var(--sage-light);
    border-top: 1px solid var(--stone-200);
    border-bottom: 1px solid var(--stone-200);
    padding: 100px 24px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .badge {
    color: var(--sage-primary);
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: var(--stone-900);
    margin: 12px 0 20px;
    line-height: 1.3;
}

.about-text h2 span {
    font-style: italic;
    font-weight: 300;
    color: var(--sage-primary);
}

.about-text p {
    color: var(--stone-600);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 30px;
}

.about-image {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(92, 118, 93, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--sage-dark);
    color: #cdd6cd;
    padding: 40px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
}

.footer-logo span {
    color: #d1e0d1;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    color: #cdd6cd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

/* Styling Dropdown Google Translate di Footer */
.goog-te-combo {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid var(--stone-300, #cbd5e0);
    background: #fff;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #333;
    outline: none;
    cursor: pointer;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Responsive Media Query untuk HP */
@media(max-width: 768px) {
    .navbar {
        text-align: center;
    }
    .nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .logo {
        margin: 0 auto;
        display: inline-block;
    }
    .nav-links {
        display: flex;
        gap: 15px;
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}