/* --- Global & Variables (Diambil dari Logo Oars) --- */
:root {
    --oars-blue: #004b9c; /* Biru terang teks Oars */
    --oars-navy: #0a1930; /* Biru super gelap ala laut malam / anchor */
    --oars-navy-light: #122b50; /* Navy sedikit lebih terang buat card */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--oars-navy);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }

/* --- Typography --- */
h1, h2, h3 { font-weight: 800; line-height: 1.2; }

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.section-heading span {
    color: var(--oars-blue);
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    background: transparent;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 25, 48, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 0 5%;
}

.brand-logo { height: 65px; transition: transform 0.3s; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
.brand-logo:hover { transform: scale(1.05); }

.nav-links { display: flex; gap: 35px; }
.nav-links a {
    color: var(--white); text-decoration: none; font-size: 14px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s ease;
}
.nav-links a:hover { color: #60a5fa; } /* Light blue hover */

.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

/* --- Hero Section --- */
.hero {
    position: relative; height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding-top: 80px; overflow: hidden;
}

.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
    transform: scale(1.05); /* Sedikit di-zoom biar estetik */
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    /* Gradient dari biru gelap logo Oars ke transparan */
    background: linear-gradient(180deg, rgba(10,25,48,0.3) 0%, rgba(10,25,48,0.95) 100%);
    z-index: -1;
}

.hero-content { max-width: 800px; padding: 0 20px; z-index: 1; display: flex; flex-direction: column; align-items: center; }

.badge {
    background: rgba(0, 75, 156, 0.2); border: 1px solid var(--oars-blue);
    color: #93c5fd; padding: 6px 16px; border-radius: 50px;
    font-size: 0.9rem; font-weight: 600; margin-bottom: 25px; letter-spacing: 1px;
}

.title { font-size: clamp(3rem, 8vw, 5.5rem); margin-bottom: 25px; text-shadow: 2px 2px 15px rgba(0,0,0,0.5); }
.title span { color: var(--oars-blue); }

.hero p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; }

.cta-button {
    padding: 16px 45px; background-color: var(--oars-blue); color: var(--white);
    text-decoration: none; font-weight: 800; border-radius: 50px; font-size: 1.1rem;
    transition: all 0.3s ease; box-shadow: 0 10px 20px rgba(0, 75, 156, 0.3);
}

.cta-button:hover {
    background-color: var(--white); color: var(--oars-blue); transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 75, 156, 0.5);
}

/* --- Concept Section --- */
.concept-section { padding: 120px 0; background-color: var(--oars-navy); }
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.concept-image { position: relative; }
.concept-image img { width: 100%; border-radius: 20px; z-index: 2; position: relative; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

.glow-effect {
    position: absolute; top: -10%; left: -10%; width: 120%; height: 120%;
    background: radial-gradient(circle, rgba(0,75,156,0.2) 0%, rgba(10,25,48,0) 70%);
    z-index: 1;
}

.concept-text p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; line-height: 1.8; }

.features { display: flex; flex-direction: column; gap: 20px; }
.feature-item { display: flex; align-items: flex-start; gap: 20px; background: var(--oars-navy-light); padding: 20px; border-radius: 12px; }
.feature-item i { font-size: 28px; color: var(--oars-blue); }
.feature-item h4 { font-size: 1.1rem; color: var(--white); margin-bottom: 5px; }
.feature-item span { color: var(--text-muted); font-size: 0.95rem; }

/* --- Menu Section --- */
.menu-section { padding: 120px 0; background-color: #081426; }
.menu-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 80px; }

/* Desain Card Glassmorphism Premium */
.card {
    background: rgba(10, 25, 48, 0.6); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px; 
    overflow: hidden;
    transition: all 0.4s ease; 
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

/* Garis atas yang muncul pas digeser mouse */
.card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--oars-blue); transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease; z-index: 10;
}

.card:hover::before { transform: scaleX(1); }
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 75, 156, 0.2); border-color: rgba(0, 75, 156, 0.3); }

.card-img-wrapper { height: 250px; overflow: hidden; position: relative; }
.card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover img { transform: scale(1.1); }

/* Badge Signature/Best Seller */
.card-badge {
    position: absolute; top: 15px; right: 15px; background: rgba(0, 75, 156, 0.9);
    color: var(--white); padding: 5px 12px; border-radius: 8px; font-size: 0.8rem; font-weight: bold; letter-spacing: 1px;
}
.card-badge.hot { background: #e11d48; }

.card-content { padding: 30px; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.card-header h3 { font-size: 1.4rem; color: var(--white); }

.price { background: rgba(0, 75, 156, 0.2); color: #93c5fd; padding: 6px 14px; border-radius: 8px; font-weight: 800; font-size: 1.1rem; border: 1px solid rgba(0, 75, 156, 0.5); }
.card-content p { color: var(--text-muted); font-size: 0.95rem; }

/* Desain Daftar Menu (List) */
.menu-list-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    background: var(--oars-navy-light); padding: 50px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.03);
}

.category-title { color: var(--oars-blue); font-size: 1.5rem; margin-bottom: 30px; display: flex; align-items: center; gap: 12px; border-bottom: 1px dashed rgba(255,255,255,0.1); padding-bottom: 15px; }
.category-title i { font-size: 1.2rem; }

.menu-item { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 25px; position: relative; }
.menu-item::after { content: ''; flex-grow: 1; border-bottom: 1px dotted rgba(255,255,255,0.2); margin: 0 15px; position: relative; top: 12px; }

.menu-item-info { flex-shrink: 0; max-width: 75%; }
.menu-item-info h4 { font-size: 1.15rem; color: var(--white); margin-bottom: 5px; }
.menu-item-info p { font-size: 0.9rem; color: var(--text-muted); }

.menu-item-price { flex-shrink: 0; font-weight: 800; color: #93c5fd; font-size: 1.1rem; }

@media (max-width: 768px) {
    .menu-list-container { grid-template-columns: 1fr; gap: 40px; padding: 30px 20px; }
    .menu-item::after { display: none; } /* Hilangin titik-titik di HP biar rapi */
    .menu-item { flex-direction: column; gap: 5px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; margin-bottom: 15px; }
    .menu-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
}
/* --- Footer --- */
.footer-section { background-color: #050d1a; padding: 80px 0 20px; border-top: 2px solid rgba(0,75,156,0.3); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }

.footer-logo { height: 75px; margin-bottom: 30px; filter: drop-shadow(0 0 5px rgba(255,255,255,0.2)); }

.address-box {
    display: flex; gap: 15px; margin-bottom: 30px; color: var(--text-muted); font-style: normal;
}
.address-box i { font-size: 24px; color: var(--oars-blue); margin-top: 5px; }
.address-box strong { color: var(--white); font-size: 1.2rem; }

.hours { background: var(--oars-navy-light); border-radius: 12px; padding: 25px; margin-bottom: 30px; }
.hour-row { display: flex; justify-content: space-between; margin-bottom: 15px; color: var(--text-muted); border-bottom: 1px dashed rgba(255,255,255,0.1); padding-bottom: 10px; }
.hour-row:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.hour-row span:first-child { color: var(--white); font-weight: 600; }
.closed span { color: #ef4444 !important; }

.ig-link {
    display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white); padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: bold; transition: opacity 0.3s;
}
.ig-link:hover { opacity: 0.8; }

.footer-map iframe { border-radius: 20px; min-height: 350px; filter: contrast(1.1) opacity(0.8); }

.copyright { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); color: #ffffff; font-size: 0.9rem; }

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: var(--oars-navy); flex-direction: column; align-items: center; padding: 30px 0; gap: 25px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.4s ease-in-out;
    }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .concept-grid, .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-map iframe { min-height: 250px; }
}

