/* --- CSS VARIABLES --- */
:root {
    --bg-color: #F4F1EA; /* Creamy White - Minimalist */
    --text-primary: #2C2420; /* Dark Espresso - Vintage */
    --text-secondary: #6D5E56;
    --accent-color: #A67B5B; /* Wood Tone */
    --accent-hover: #8C6246;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --spacing-container: 120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

p {
    font-weight: 300;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* --- UTILITIES --- */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: var(--text-primary);
    color: var(--bg-color);
    border: 1px solid var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 0; /* Sharp edges for minimalist look */
    transition: transform 0.2s, background-color 0.3s;
}

.btn:hover {
    background-color: transparent;
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

/* --- HEADER / NAV --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.4s ease, padding 0.4s ease;
    background-color: rgba(244, 241, 234, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05); /* Optional: slight shadow for separation */
}

header.scrolled {
    background-color: rgba(244, 241, 234, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--text-primary);
    transition: width 0.3s;
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image Placeholder Logic - Using CSS background for easy replacement */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ganti URL ini dengan hasil AI Image Generator Anda */
    background-image: url('images/dari-depan.webp'); 
    background-size: cover;
    background-position: center;
    filter: brightness(0.6) sepia(0.2); /* Vintage warm filter */
    z-index: -1;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.0); }
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem); /* Responsive huge text */
    margin-bottom: 20px;
    line-height: 1;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-family: var(--font-heading);
    font-style: italic;
}

.hero .btn {
    background-color: #fff;
    color: var(--text-primary);
    border-color: #fff;
}

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

/* --- SECTIONS GENERAL --- */
section {
    padding: var(--spacing-container) 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 600px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
}

/* --- VIBE SECTION (Collage) --- */

/* --- SPOTS SECTION --- */
.spots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.spot-card {
    text-align: center;
}

.spot-img-wrapper {
    height: 300px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.spot-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.spot-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .spots-grid {
        grid-template-columns: 1fr;
    }
}

.vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 40px;
    align-items: center;
}

.vibe-text h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 30px;
}

.vibe-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 450px;
}

.collage-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    height: 600px;
    position: relative;
}

/* Asymmetrical Layout for Magazine Feel */
.collage-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: grayscale(20%); /* Sedikit vintage */
    transition: filter 0.3s;
}

.collage-img:hover {
    filter: grayscale(0%);
}

.img-1 {
    grid-column: 1 / 9;
    grid-row: 1 / 10;
    z-index: 1;
}
        
.img-2 {
    grid-column: 8 / 13;
    grid-row: 6 / 13;
    z-index: 2;
    border: 10px solid var(--bg-color); /* Frame effect */
    margin-top: 20px;
}

/* --- MENU HIGHLIGHT (Horizontal Scroll) --- */
.menu-section {
    background-color: #EAE6dc; /* Slightly darker cream */
    overflow: hidden;
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-gallery {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 40px;
}

.menu-card {
    min-width: 300px;
    max-width: 350px;
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

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

.card-img-wrapper {
    height: 400px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

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

.menu-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-family: var(--font-body); /* Modern clean feel for titles */
    font-weight: 600;
}

.menu-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- LOCATION / FOOTER --- */
.location {
    background-color: #1A120E; /* Very Dark Brown */
    color: #F4F1EA;
    padding-bottom: 40px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.location-info h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #F4F1EA;
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    margin-top: 5px;
    color: var(--accent-color);
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}
        
.info-text p {
    color: rgba(244, 241, 234, 0.7);
}

.map-wrapper {
    height: 100%;
    min-height: 400px;
    filter: grayscale(100%) contrast(1.2); /* Stylish B&W Map */
    transition: filter 0.3s;
}

.map-wrapper:hover {
    filter: grayscale(0%);
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

footer {
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* --- REVIEWS SECTION --- */
.reviews-section {
    background-color: var(--bg-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-radius: 4px; /* Minimal border radius */
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.review-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-author::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background-color: var(--accent-color);
}

/* --- ANIMATIONS (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simplification for mobile */
    }
    
    .menu-toggle {
        display: block;
    }

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

    .collage-container {
        height: 400px;
    }

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

    .map-wrapper {
        min-height: 300px;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}