/* ==========================
   Google Font
========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================
   Global Styles
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#fffdf9;
    color:#333;
    line-height:1.6;
}

section{
    padding:80px 10%;
}

h2{
    text-align:center;
    font-size:2.4rem;
    color:#6b3e26;
    margin-bottom:45px;
}

img{
    width:100%;
    display:block;
}

.btn{
    display:inline-block;
    padding:12px 30px;
    background:#ff5e78;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:.3s ease;
    font-weight:500;
}

.btn:hover{
    background:#e84b67;
    transform:translateY(-3px);
}

/* ==========================
   Header
========================== */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,.1);
}

.navbar{
    width:100%;
    padding:18px 10%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:1.8rem;
    font-weight:700;
    color:#8b4513;
}

.nav-links{
    display:flex;
    list-style:none;
}

.nav-links li{
    margin-left:28px;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#ff5e78;
}

.menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ==========================
   Hero Section
========================== */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.45),
    rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1563805042-7684c019e1cb?w=1600")
    center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.hero-content h1{
    font-size:3.3rem;
    margin-bottom:20px;
}

.hero-content p{
    max-width:650px;
    margin:auto;
    margin-bottom:30px;
    font-size:1.1rem;
}
/* ==========================
   About Section
========================== */

.about-container{
    display:flex;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
}

.about-image img{
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.about-text{
    flex:1;
}

.about-text p{
    margin-bottom:18px;
    text-align:justify;
    font-size:1rem;
}

/* ==========================
   Featured Flavors
========================== */

.card-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
    transition:.3s ease;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.18);
}

.card img{
    height:220px;
    object-fit:cover;
}

.card h3{
    margin:18px 0 10px;
    color:#8b4513;
}

.card p{
    padding:0 18px 20px;
}

/* ==========================
   Specials
========================== */

.special-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.special-box{
    background:#fff5f6;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s ease;
}

.special-box:hover{
    background:#ffe2e7;
    transform:translateY(-8px);
}

.special-box i{
    font-size:42px;
    color:#ff5e78;
    margin-bottom:18px;
}

.special-box h3{
    margin-bottom:12px;
    color:#6b3e26;
}

/* ==========================
   Why Choose Us
========================== */

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.why-box{
    background:#fff;
    padding:30px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s ease;
}

.why-box:hover{
    transform:scale(1.05);
}

.why-box i{
    font-size:40px;
    color:#8b4513;
    margin-bottom:15px;
}

.why-box h3{
    color:#6b3e26;
    font-size:1.2rem;
}
/* ==========================
   Contact Section
========================== */

.contact{
    background:#fff8f5;
}

form{
    max-width:650px;
    margin:auto;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:18px;
    border:1px solid #ccc;
    border-radius:10px;
    outline:none;
    font-size:16px;
    transition:.3s;
}

input:focus,
textarea:focus{
    border-color:#ff5e78;
    box-shadow:0 0 8px rgba(255,94,120,.25);
}

textarea{
    resize:none;
}

button{
    border:none;
    cursor:pointer;
}

/* ==========================
   Footer
========================== */

footer{
    background:#4e342e;
    color:#fff;
    text-align:center;
    padding:40px 10%;
}

footer h3{
    font-size:2rem;
    margin-bottom:10px;
}

footer p{
    margin:10px 0;
}

.social{
    margin:20px 0;
}

.social a{
    color:#fff;
    font-size:24px;
    margin:0 12px;
    transition:.3s;
}

.social a:hover{
    color:#ffd54f;
}

/* ==========================
   Responsive Design
========================== */

@media(max-width:768px){

    .navbar{
        padding:18px 6%;
        position:relative;
    }

    .menu-btn{
        display:block;
        font-size:28px;
        color:#8b4513;
        cursor:pointer;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        position:absolute;
        top:75px;
        right:0;
        width:230px;
        background:#fff;
        border-radius:12px;
        box-shadow:0 8px 20px rgba(0,0,0,.15);
        overflow:hidden;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        margin:0;
        width:100%;
        text-align:center;
    }

    .nav-links li a{
        display:block;
        padding:15px;
        border-bottom:1px solid #eee;
    }

    .nav-links li:last-child a{
        border-bottom:none;
    }

    .hero-content h1{
        font-size:2.3rem;
    }

    .hero-content p{
        font-size:1rem;
    }

    .about-container{
        flex-direction:column;
    }

    section{
        padding:70px 6%;
    }
}