 :root {
            --cream: #f5f1e9;
            --beige: #e8dfd6;
            --soft-brown: #b7a89a;
            --dark-coffee: #4b3832;
            --white: #ffffff;
            --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--cream);
            color: var(--dark-coffee);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, .logo {
            font-family: 'Playfair Display', serif;
        }

        /* --- Global Styles --- */
        section {
            padding: 100px 10%;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition);
        }

        section.reveal {
            opacity: 1;
            transform: translateY(0);
        }

        .btn {
            padding: 12px 30px;
            border: 1px solid var(--dark-coffee);
            background: transparent;
            color: var(--dark-coffee);
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .btn:hover {
            background: var(--dark-coffee);
            color: var(--cream);
        }

        /* --- Navbar --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 25px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
        }

        nav.sticky {
            padding: 15px 10%;
            background: rgba(245, 241, 233, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-coffee);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark-coffee);
            font-weight: 400;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--soft-brown);
        }

        /* --- Hero Section --- */
        #home {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                        url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&q=80&w=1920') center/cover;
            color: var(--white);
            transform: none; /* Hero usually visible immediately */
            opacity: 1;
            padding: 0;
        }

        #home h1 {
            font-size: clamp(3rem, 8vw, 5rem);
            margin-bottom: 20px;
            font-style: italic;
        }

        #home .btn {
            border-color: var(--white);
            color: var(--white);
        }

        #home .btn:hover {
            background: var(--white);
            color: var(--dark-coffee);
        }

        /* --- Menu Section --- */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }

        .menu-card {
            background: var(--white);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: var(--transition);
            text-align: center;
        }

        .menu-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .menu-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        /* --- About Section --- */
        .about-container {
            display: flex;
            align-items: center;
            gap: 80px;
            flex-wrap: wrap;
        }

        .about-img, .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-img img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 20px 20px 0px var(--beige);
            transition: var(--transition);
        }

        .about-img img:hover {
            transform: scale(1.05);
        }

        /* --- Contact Section --- */
        .contact-content {
            max-width: 600px;
            margin: 0 auto;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        input, textarea {
            padding: 15px;
            border: 1px solid var(--beige);
            background: var(--white);
            font-family: inherit;
            border-radius: 8px;
            outline: none;
        }

        input:focus, textarea:focus {
            border-color: var(--soft-brown);
        }

        /* --- Footer --- */
        footer {
            padding: 50px 10%;
            background: var(--beige);
            text-align: center;
        }

      .socials {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect */
.socials a:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
}

/* Brand colors on hover */
.socials a:nth-child(1):hover {
    background: #E1306C; /* Instagram */
}

.socials a:nth-child(2):hover {
    background: #1877F2; /* Facebook */
}

.socials a:nth-child(3):hover {
    background: #000000; /* X (Twitter) */
}

        /* --- Booking System Styles --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(75, 56, 50, 0.4);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--cream);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    animation: modalSlide 0.4s ease;
}

@keyframes modalSlide {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: var(--soft-brown);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input { flex: 1; width: 100%; }

.fab-booking {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--dark-coffee);
    color: var(--cream);
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: var(--transition);
}

.fab-booking:hover {
    transform: scale(1.05);
    background: var(--soft-brown);
}

        @media (max-width: 768px) {
            .nav-links { display: none; } /* Mobile simplicity */
            section { padding: 60px 5%; }
            .about-container { gap: 40px; }
        }