/* ============================================
   LOADING SCREEN
   ============================================ */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease; /* Slower fade out */
}

.loading-logo {
    width: 100px;
    height: 100px;
    /* Removed pulse animation */
}

.loading-brand {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 1rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--emerald-400), var(--teal-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fade-in-out 2s infinite; /* Applying existing animation */
}

.loading-spinner {
    color: var(--emerald-400);
    font-size: 1.5rem;
    margin-top: 1.5rem;
    animation: spin 2s linear infinite;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

:root {
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --cyan-400: #22d3ee;
    --white: #ffffff;
    --black: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px; /* Base font size for desktop */
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 767px) {
    body {
        font-size: 15px; /* Slightly smaller base font size on mobile */
    }
    .container {
        padding: 0 0.8rem; /* Reduced padding on mobile */
    }
    .section-title {
        font-size: 2.5rem; /* Smaller section titles on mobile */
    }
    .section-subtitle {
        font-size: 1rem; /* Smaller section subtitle on mobile */
    }
    .btn {
        padding: 0.8rem 1.5rem; /* Smaller buttons on mobile */
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px; /* Even smaller base font size on very small mobiles */
    }
    .section-title {
        font-size: 2rem; /* Even smaller section titles on very small mobiles */
    }
    .hero-title {
        font-size: 3rem !important; /* Force smaller hero title on very small mobile */
    }
    .hero-description {
        font-size: 1rem !important; /* Force smaller hero description on very small mobile */
    }
}

/* ============================================
   FLOATING NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1536px;
    z-index: 1000;
    padding: 0 1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    max-width: 1280px;
}

.nav-container {
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 1rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-container {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--emerald-400), var(--teal-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.brand-icon img.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%; /* Ensure logo is also circular if desired */
}

.brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--emerald-400), var(--teal-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--emerald-400);
}

.mobile-menu-btn {
    display: block;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 0.6rem; /* Slightly larger touch target */
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem; /* Larger icon for mobile */
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu {
    display: none;
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.08); /* Slightly more opaque */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Slightly more prominent border */
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.9rem 0; /* Increased padding for easier tapping */
    transition: color 0.3s ease;
    font-size: 1rem; /* Slightly larger font */
}

.mobile-nav-link:hover {
    color: var(--emerald-400);
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* Adjustments for smaller mobile screens */
@media (max-width: 480px) {
    .navbar .nav-container {
        padding: 0.7rem 1.2rem; /* Reduce navbar padding */
    }
    .brand-icon {
        width: 2.2rem; /* Smaller icon */
        height: 2.2rem;
    }
    .brand-text {
        font-size: 1.1rem; /* Smaller brand text */
    }
    .mobile-menu-btn {
        padding: 0.5rem;
        font-size: 1.2rem;
    }
    .mobile-menu {
        padding: 1rem;
    }
    .mobile-nav-link {
        font-size: 0.9rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

/* ================= BACKGROUND ================= */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 3s ease-in-out infinite;
}

.blob-1 {
    top: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(52, 211, 153, 0.2);
}

.blob-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(45, 212, 191, 0.2);
    animation-delay: 700ms;
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 37.5rem;
    height: 37.5rem;
    background: linear-gradient(
        135deg,
        rgba(52, 211, 153, 0.1),
        rgba(45, 212, 191, 0.1)
    );
    animation-delay: 1000ms;
}

/* ================= CONTENT ================= */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 1536px;
    margin: 0 auto;
}

/* ================= BADGE (PURWOKERTO) ================= */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;

    margin-top: 3.5rem;   /* ⬅️ INI YANG MENURUNKAN */
    margin-bottom: 2rem;

    animation: move-up-down 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--emerald-400);
}

.hero-badge span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ================= TITLE ================= */
.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line-1 {
    display: block;
    background: linear-gradient(
        90deg,
        var(--white),
        #d1fae5,
        #99f6e4
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    display: block;
    background: linear-gradient(
        90deg,
        var(--emerald-400),
        var(--teal-400),
        var(--cyan-400)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================= DESCRIPTION ================= */
.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ================= BUTTONS ================= */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

/* ================= BUTTON STYLE ================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(
        90deg,
        var(--emerald-500),
        var(--teal-500)
    );
    color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ================= RESPONSIVE ================= */
@media (min-width: 768px) {
    .hero-title {
        font-size: 5rem;
    }
}

@media (max-width: 767px) {
    .hero-badge {
        margin-top: 4.5rem; /* ⬅️ mobile lebih turun */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 8rem 1rem;
    position: relative;
    background: linear-gradient(180deg, #1a1a1a 0%, #242424 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(45, 212, 191, 0.2));
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--emerald-400);
}

.about-badge i {
    font-size: 1rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--emerald-400), var(--teal-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 211, 153, 0.5);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--emerald-400);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-box {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    transition: all 0.5s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: rgba(52, 211, 153, 0.5);
    box-shadow: 0 20px 40px rgba(52, 211, 153, 0.1);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(45, 212, 191, 0.2));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--emerald-400);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .about-title {
        font-size: 3rem;
    }
}

@media (max-width: 1023px) { /* Adjust for smaller desktops/large tablets */
    .about-section {
        padding: 6rem 1rem;
    }
    .about-grid {
        gap: 3rem;
    }
    .about-title {
        font-size: 2.2rem;
    }
    .about-description {
        font-size: 1rem;
    }
    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Smaller stats items */
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Smaller feature boxes */
        gap: 1rem;
    }
    .feature-box {
        padding: 1.5rem;
    }
    .feature-title {
        font-size: 1.1rem;
    }
    .feature-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) { /* Mobile specific adjustments */
    .about-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 2.5rem;
    }
    .about-section {
        padding: 5rem 0.8rem; /* Mobile padding */
    }
    .about-title {
        font-size: 2rem;
        text-align: center;
    }
    .about-description {
        font-size: 0.95rem;
        text-align: center;
    }
    .about-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .about-stats {
        grid-template-columns: 1fr 1fr; /* 2 columns for stats on mobile */
    }
    .about-features {
        grid-template-columns: 1fr; /* Stack features on mobile */
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .feature-title {
        font-size: 1rem;
    }
}

/* ============================================
   FACILITIES SECTION
   ============================================ */
.facilities-section {
    padding: 8rem 1rem;
    position: relative;
    background-color: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--emerald-400), var(--teal-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.facility-card {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.facility-card:hover {
    transform: scale(1.05);
    border-color: rgba(52, 211, 153, 0.5);
    box-shadow: 0 25px 50px -12px rgba(52, 211, 153, 0.2);
}

.facility-content {
    position: relative;
    z-index: 10;
}

.facility-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.2), rgba(45, 212, 191, 0.2));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-icon {
    transform: scale(1.1);
}

.facility-icon i {
    font-size: 1.5rem;
    color: var(--emerald-400);
}

.facility-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.facility-card:hover .facility-title {
    color: var(--emerald-400);
}

.facility-desc {
    color: rgba(255, 255, 255, 0.6);
}

.facility-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0), rgba(45, 212, 191, 0));
    border-radius: 1.5rem;
    transition: all 0.5s ease;
}

.facility-card:hover .facility-bg {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(45, 212, 191, 0.1));
}

@media (max-width: 767px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
        gap: 1rem;
    }
    .facilities-section {
        padding: 5rem 0.8rem;
    }
    .section-header {
        margin-bottom: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    .facility-card {
        padding: 1.5rem;
    }
    .facility-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .facility-title {
        font-size: 1.1rem;
    }
    .facility-desc {
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    padding: 8rem 1rem;
    position: relative;
    background: linear-gradient(180deg, #1a1a1a 0%, #242424 100%);
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.filter-btn.active {
    background: linear-gradient(90deg, var(--emerald-500), var(--teal-500));
    border-color: var(--emerald-400);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.menu-items-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    opacity: 0; /* For JavaScript animation */
    transform: translateY(20px); /* For JavaScript animation */
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--emerald-400);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.item-image-wrapper {
    width: 100%;
    height: 220px; /* Fixed height for images */
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .item-image {
    transform: scale(1.1);
}

.item-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.item-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.menu-item:hover .item-name {
    color: var(--emerald-400);
}

.item-price {
    color: var(--emerald-400);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.item-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.menu-note {
    margin-top: 3rem;
    text-align: center;
}

.note-price {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.note-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 767px) {
    .menu-section {
        padding: 5rem 0.8rem;
    }
    .section-header {
        margin-bottom: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    .menu-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    .menu-item {
        border-radius: 1rem;
    }
    .item-image-wrapper {
        height: 170px; /* Smaller image height on mobile */
    }
    .item-info {
        padding: 1rem;
    }
    .item-name {
        font-size: 1.1rem;
    }
    .item-price {
        font-size: 1.1rem;
    }
    .item-desc {
        font-size: 0.8rem;
    }
    .menu-note {
        margin-top: 2rem;
    }
    .note-price {
        font-size: 1rem;
    }
    .note-disclaimer {
        font-size: 0.75rem;
    }
}

/* Responsive adjustments for menu grid */
@media (max-width: 767px) {
    .menu-items-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
    }
}

@media (min-width: 768px) {
    .menu-items-container {
        grid-template-columns: repeat(3, 1fr); /* 3 columns for tablet */
    }
}

@media (min-width: 1024px) {
    .menu-items-container {
        grid-template-columns: repeat(4, 1fr); /* 4 columns for desktop */
    }
}

.menu-note {
    margin-top: 3rem;
    text-align: center;
}

.note-price {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.note-disclaimer {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 6rem 1rem;
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(16, 185, 129, 0.02) 100%
    );
}

/* ============================================
   GRID
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-bottom: 3rem;
}

/* ============================================
   ITEM (SEMUA SAMA)
   ============================================ */
.gallery-item {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(
        135deg,
        rgba(52, 211, 153, 0.08),
        rgba(45, 212, 191, 0.03)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.2rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.6s ease,
        border-color 0.4s ease;
}

/* Hover effect */
.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--teal-400);
    box-shadow: 0 22px 50px rgba(16, 185, 129, 0.45);
    z-index: 5;
}

/* ============================================
   IMAGE
   ============================================ */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
}

/* ============================================
   OVERLAY
   ============================================ */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   CAPTION
   ============================================ */
.gallery-caption {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.15s;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CTA
   ============================================ */
.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

.gallery-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .gallery-section {
        padding: 4rem 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .gallery-item {
        aspect-ratio: 1 / 1;
        border-radius: 0.9rem;
    }

    .gallery-caption {
        font-size: 0.85rem;
    }
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: 8rem 1rem;
    position: relative;
    background: linear-gradient(180deg, #242424 0%, #1a1a1a 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 767px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
        gap: 1rem;
    }
    .reviews-section {
        padding: 5rem 0.8rem;
    }
    .section-header {
        margin-bottom: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
    .review-card {
        padding: 1.2rem;
        border-radius: 1rem;
    }
    .review-rating i {
        font-size: 1rem;
    }
    .review-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .review-author {
        font-size: 0.9rem;
    }
}

.review-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    transition: all 0.5s ease;
}

.review-card:hover {
    border-color: rgba(52, 211, 153, 0.5);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-rating i {
    color: var(--emerald-400);
    font-size: 1.25rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    color: var(--emerald-400);
    font-weight: 600;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 7.5rem 1rem;
}

/* ================= GRID ================= */
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    position: relative;
    gap: 3rem;
}

/* ================= MAP ================= */
.map-container {
    height: 420px;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ================= INFO ================= */
.contact-details {
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ================= ITEM ================= */
.contact-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    background: rgba(52, 211, 153, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--emerald-400);
}

/* ================= TEXT ================= */
.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-label {
    font-weight: 600;
    color: var(--white);
}

.contact-value,
.contact-link {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

.contact-link {
    color: var(--emerald-400);
    text-decoration: none;
}

/* ================= BUTTON (DITURUNKAN LAGI) ================= */
.btn-full {
    grid-column: 1 / -1;
    justify-self: center;
    align-self: center;
    margin-top: -20px; /* ⬅️ TURUN LAGI */
    width: 100%;
    max-width: 420px;
    padding: 1.05rem 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    z-index: 5;
}

/* ================= MOBILE ================= */
@media (max-width: 1023px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        height: auto;
        gap: 2rem;
    }

    .btn-full {
        margin-top: 2rem;
        max-width: 90%;
    }
}



/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 3rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--emerald-400), var(--teal-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon img.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%; /* Ensure logo is also circular if desired */
}

.footer-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.footer-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--emerald-400), var(--teal-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    text-align: center; /* Ensures copyright text is centered */
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 4rem 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(16, 185, 129, 0.03) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ensure left alignment for column items */
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--emerald-400), var(--teal-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon img.footer-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%; /* Ensure logo is also circular if desired */
}

.footer-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.footer-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--emerald-400), var(--teal-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--emerald-500), var(--teal-500));
    border-color: var(--emerald-400);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--emerald-400);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--emerald-400);
    transform: translateX(5px);
}

.footer-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-info i {
    color: var(--emerald-400);
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

.footer-love {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-love i {
    color: #ef4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 3rem 0.8rem 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .footer-column {
        align-items: flex-start; /* Changed from center to flex-start */
    }
    .footer-brand {
        justify-content: flex-start; /* Changed from center to flex-start */
    }
    .footer-text {
        font-size: 1.3rem;
    }
    .footer-tagline {
        font-size: 0.9rem;
    }
    .footer-description {
        font-size: 0.85rem;
    }
    .footer-social {
        justify-content: center; /* Center social icons */
    }
    .footer-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.footer-links li a,
.footer-info li {
    font-size: 0.85rem;
}
.footer-info li i {
    font-size: 1rem;
}
.footer-bottom {
    padding-top: 1.5rem;
    flex-direction: column; /* Stack copyright and love message */
}
.footer-copyright, .footer-love {
    font-size: 0.75rem;
}
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes move-up-down {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: linear-gradient(90deg, var(--emerald-400), var(--teal-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* ============================================
   DECORATIVE BACKGROUND ICONS
   ============================================ */
.section-bg-icon {
    position: absolute;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    animation: float-subtle 8s ease-in-out infinite;
}

.icon-coffee {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.icon-leaf {
    bottom: 15%;
    right: 8%;
    font-size: 6rem;
    animation-delay: 4s;
    animation-duration: 10s;
}

.icon-wifi {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.icon-music {
    bottom: 10%;
    left: 10%;
    font-size: 7rem;
    animation-delay: 6s;
}

.icon-utensils {
    top: 15%;
    left: 8%;
    font-size: 7rem;
    animation-delay: 1s;
}

.icon-mug {
    bottom: 20%;
    right: 5%;
    animation-delay: 5s;
    animation-duration: 9s;
}

.icon-camera {
    top: 10%;
    right: 8%;
    font-size: 7rem;
    animation-delay: 3s;
}

.icon-image {
    bottom: 10%;
    left: 5%;
    animation-delay: 7s;
    animation-duration: 11s;
}

.icon-star {
    top: 15%;
    left: 10%;
    font-size: 6rem;
    animation-delay: 2s;
}

.icon-quote {
    bottom: 10%;
    right: 12%;
    font-size: 8rem;
    animation-delay: 6s;
    animation-duration: 10s;
}

.icon-map {
    top: 20%;
    left: 15%;
    font-size: 7rem;
    animation-delay: 3s;
    animation-duration: 12s;
}

.icon-phone {
    bottom: 25%;
    right: 18%;
    font-size: 6rem;
    animation-delay: 7s;
}

@keyframes float-subtle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}
