* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fef6e8;
    color: #2c221b;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #e9dbcf;
}
::-webkit-scrollbar-thumb {
    background: #b87c4f;
    border-radius: 10px;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(254, 246, 232, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #5e2e1c;
}
.logo span {
    color: #c97e4a;
    font-size: 1.7rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #3f2a1f;
    transition: 0.3s;
    font-size: 0.95rem;
}
.nav-links a:hover {
    color: #c97e4a;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #5e2e1c;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #f7e9db 0%, #fee6d4 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}
.parallax-bg {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background: url('https://images.pexels.com/photos/312418/pexels-photo-312418.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    animation: slowParallax 22s infinite alternate ease-in-out;
}
@keyframes slowParallax {
    0% { transform: scale(1) translate(0px, 0px); }
    100% { transform: scale(1.05) translate(15px, 15px); }
}
.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}
.hero-text {
    flex: 1.2;
    animation: fadeUp 0.8s ease;
}
.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    color: #2e1c12;
}
.hero-text h1 span {
    color: #c97e4a;
    border-bottom: 2px solid #c97e4a;
}
.hero-text p {
    font-size: 1rem;
    margin: 1.2rem 0;
    color: #4f3525;
    max-width: 450px;
}
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}
.btn-primary {
    background: #b87333;
    color: white;
    box-shadow: 0 5px 12px rgba(184,115,51,0.3);
}
.btn-primary:hover {
    background: #9b5a28;
    transform: scale(1.03) translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 2px solid #b87333;
    color: #b87333;
}
.btn-outline:hover {
    background: #b87333;
    color: white;
}
.hero-img {
    flex: 0.8;
    text-align: center;
}
.hero-img img {
    max-width: 100%;
    border-radius: 30px;
    filter: drop-shadow(0 12px 18px rgba(0,0,0,0.1));
    transition: transform 0.3s;
}
.hero-img img:hover {
    transform: rotate(2deg) scale(1.02);
}

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

/* Section Umum */
section {
    padding: 70px 0;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
    width: 100%;
}
.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #c97e4a;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin-top: 1rem;
}
.coffee-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 12px 25px -10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0e2d4;
}
.coffee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(107, 70, 40, 0.15);
}
.coffee-icon {
    font-size: 2.8rem;
    color: #b87333;
    margin-bottom: 0.8rem;
}
.coffee-card h3 {
    font-size: 1.4rem;
    margin: 0.5rem 0;
}
.coffee-card p {
    color: #6b4c34;
    font-size: 0.85rem;
    margin: 0.5rem 0;
}
.price {
    font-weight: 800;
    font-size: 1.2rem;
    color: #a55d2a;
    margin-top: 0.6rem;
}
.order-btn {
    background: none;
    border: 1.5px solid #c97e4a;
    padding: 6px 18px;
    border-radius: 40px;
    margin-top: 0.8rem;
    font-weight: 600;
    transition: 0.2s;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.order-btn:hover {
    background: #c97e4a;
    color: white;
    transform: scale(0.96);
}

/* About Section */
.about-section {
    background: linear-gradient(120deg, #f9efdf, #fcf3e7);
}
.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}
.about-text {
    flex: 1;
}
.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
}
.about-text p {
    margin: 0.8rem 0;
    line-height: 1.6;
    font-size: 0.9rem;
}
.about-img {
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}
.about-img img {
    width: 100%;
    display: block;
    transition: transform 0.4s;
}
.about-img:hover img {
    transform: scale(1.03);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}
.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    width: 100%;
    padding: 0.8rem;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0;
    transition: 0.3s;
}
.gallery-item:hover .overlay {
    opacity: 1;
}

/* CTA */
.cta {
    background: #2e1c12;
    color: #f9e5cf;
    text-align: center;
    border-radius: 40px;
    margin: 30px auto;
    padding: 2rem 1.5rem;
    max-width: 800px;
}
.cta h3 {
    font-size: 1.6rem;
}
.cta-input {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.cta-input input {
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    width: 250px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}
.btn-cta {
    background: #c97e4a;
    border: none;
    color: white;
    padding: 10px 28px;
}
.btn-cta:hover {
    background: #a86231;
    transform: translateY(-2px);
}

/* Toast */
.toast-msg {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #2c221be6;
    backdrop-filter: blur(8px);
    color: #fbe9d2;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    font-size: 0.85rem;
}

/* Footer */
footer {
    background: #1e140e;
    color: #ddd0c2;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
}
.social-icons {
    margin-top: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
}
.social-icons a {
    color: #c68e5a;
    transition: 0.3s;
}
.social-icons a:hover {
    color: white;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 65px;
        left: -100%;
        flex-direction: column;
        background: #fff6ed;
        width: 65%;
        height: 100vh;
        padding: 1.8rem;
        gap: 1.8rem;
        box-shadow: 3px 0 15px rgba(0,0,0,0.08);
        transition: 0.3s;
        z-index: 999;
    }
    .nav-links.active {
        left: 0;
    }
    .menu-toggle {
        display: block;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .container {
        padding: 0 18px;
    }
    .hero-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 680px) {
    .hero-text h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.8rem; }
    .about-text h2 { font-size: 1.6rem; }
    .cta h3 { font-size: 1.3rem; }
    section { padding: 50px 0; }
}