:root {
    --primary: #e91e63;   /* main pink */
    --secondary: #f8bbd0; /* soft pink */
    --accent: #ad1457;    /* deep pink */
    --light: #fff5f8;     /* background */
    --dark: #3a3a3a;
}
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fffaf5;
    color: #333;
}
html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
}
/* NAVBAR */
header {
    background: white;
    border-bottom: 2px solid var(--secondary);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* HERO */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(233,30,99,0.5), rgba(233,30,99,0.5)),
    url('https://images.unsplash.com/photo-1559620192-032c4bc4674e');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.logo {
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-img {
    height: 55px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 10px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero h2 {
    font-size: 3rem;
}

button {
    padding: 12px 25px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: var(--accent);
}

/* MENU */
.section-title {
    text-align: center;
    margin: 50px 0 20px;
}

section {
    padding: 70px 20px;
    background: var(--light);
}

.menu-category {
    color: var(--primary);
}

.menu-list span {
    color: var(--accent);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding-bottom: 15px;
}

img {
    max-width: 100%;
    display: block;
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-category {
    margin-top: 40px;
    color: var(--primary);
}

.menu-list {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 10px;
}

.menu-list p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    margin: 0;
}

.menu-list span {
    font-weight: bold;
    color: var(--primary);
}

.note {
    margin-top: 20px;
    font-style: italic;
    text-align: center;
}

/* ORDER */
.order-section {
    background: #fff0e6;
    padding: 50px 20px;
    text-align: center;
}

form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

input, textarea {
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
}

/* CONTACT */
.contact {
    text-align: center;
    padding-bottom: 40px;
}

.contact-buttons {
    margin-top: 20px;
}

.contact-buttons a {
    margin: 5px;
    display: inline-block;
}

.map {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.55);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card p {
    line-height: 1.7;
    color: #555;
}

.testimonial-card h4 {
    margin-top: 15px;
    color: var(--primary);
}

.testimonial-card::before {
    content: "❝";
    font-size: 50px;
    color: var(--secondary);
    position: absolute;
    top: 10px;
    left: 15px;
    opacity: 0.3;
}

.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    background: #333;
    color: white;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

    /* NAVBAR */
    .nav {
        flex-direction: column;
        gap: 10px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 5px 10px;
        font-size: 14px;
    }

    /* HERO */
    .hero {
        height: 70vh;
        padding: 20px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* LOGO */
    .logo-img {
        height: 50px;
    }

    /* GALLERY */
    .gallery img {
        height: 220px;
    }

    /* MENU */
    .menu-list p {
        font-size: 14px;
    }

    /* BUTTONS */
    button {
        width: 100%;
        max-width: 300px;
        margin: auto;
    }

    /* TESTIMONIALS */
    .testimonial-card {
        padding: 20px;
    }

    /* CONTACT */
    .contact p {
        font-size: 15px;
    }
    #whatsapp-form button {
    background: #25D366;
}

#whatsapp-form button:hover {
    background: #1ebe5d;
}
/* GALLERY PAGE */

.gallery-page {
    padding: 120px 8%;
    background: #fff7fa;
    min-height: 100vh;
}

.gallery-title {
    text-align: center;
    font-size: 3rem;
    color: #d63384;
    margin-bottom: 50px;
    font-family: 'Poppins', sans-serif;
}
/* MENU PAGE */

.menu-page {
    padding: 120px 8%;
    background: #fff7fa;
    min-height: 100vh;
}

.menu-title {
    font-size: 3.5rem;
    color: #d63384;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.menu-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.menu-card h2 {
    color: #d63384;
    margin-bottom: 25px;
}

.menu-list p {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.menu-list span {
    font-weight: bold;
    color: #c89b3c;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    color: #666;
    line-height: 1.8;
}
/* ORDER PAGE */

.order-page {
    min-height: 100vh;
    background: linear-gradient(
        to bottom right,
        #fff7fa,
        #ffeef5
    );

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 120px 20px;
}

.order-container {
    background: white;
    padding: 50px;
    border-radius: 30px;
    width: 100%;
    max-width: 650px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.08);

    text-align: center;
}

.order-container h1 {
    color: #d63384;
    margin-bottom: 15px;
    font-size: 3rem;
}

.order-container p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

#whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#whatsapp-form input,
#whatsapp-form textarea {

    padding: 18px;
    border-radius: 15px;
    border: 1px solid #eee;

    font-size: 1rem;
    font-family: inherit;
}

#whatsapp-form textarea {
    min-height: 160px;
    resize: none;
}

#whatsapp-form button {

    background: #25D366;
    color: white;

    border: none;

    padding: 18px;

    border-radius: 40px;

    font-size: 1rem;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

#whatsapp-form button:hover {
    transform: translateY(-3px);
    background: #1ebe5d;
}

}