/* ===========================================
   CRISPIO CAFE
   Premium Restaurant Website
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fafafa;
    color:#333;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
      NAVIGATION
========================== */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 6%;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(10px);

}

.logo{

    color:white;

    font-size:34px;

    font-weight:800;

    letter-spacing:2px;

}

.logo small{

    display:block;

    font-size:14px;

    letter-spacing:6px;

    color:#FFD54F;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:35px;

}

.navbar ul li a{

    color:white;

    font-weight:500;

    transition:.3s;

}

.navbar ul li a:hover{

    color:#FFD54F;

}

.orderBtn{

    background:#25D366;

    color:white;

    padding:14px 26px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.orderBtn:hover{

    transform:translateY(-3px);

}

/* ==========================
          HERO
========================== */

.hero{

    height:100vh;

    background:
        linear-gradient(rgba(0,0,0,.45),
        rgba(0,0,0,.55)),
        url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}

.heroOverlay{

    width:100%;

}

.heroText{

    width:90%;

    max-width:650px;

    margin-left:8%;

    color:white;

}

.heroText h1{

    font-size:70px;

    line-height:1.05;

    margin-bottom:20px;

}

.heroText p{

    font-size:20px;

    line-height:34px;

    margin-bottom:35px;

}

.heroButtons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.primaryBtn{

    background:#ff6b00;

    color:white;

    padding:18px 32px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.primaryBtn:hover{

    background:#ff8126;

}

.secondaryBtn{

    border:2px solid white;

    color:white;

    padding:18px 32px;

    border-radius:50px;

    transition:.3s;

}

.secondaryBtn:hover{

    background:white;

    color:#222;

}
/* ==========================
        ABOUT SECTION
========================== */

.about{
    padding:90px 0;
    text-align:center;
    background:#ffffff;
}

.about h2{
    font-size:42px;
    margin-bottom:25px;
    color:#222;
}

.about p{
    max-width:900px;
    margin:15px auto;
    font-size:18px;
    line-height:32px;
    color:#666;
}

/* ==========================
       WHY CHOOSE US
========================== */

.whyUs{
    background:#fff8ef;
    padding:90px 0;
}

.featureGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
    margin-top:50px;
}

.feature{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
}

.feature i{
    font-size:50px;
    color:#ff6b00;
    margin-bottom:20px;
}

.feature h3{
    margin-bottom:15px;
    font-size:24px;
}

.feature p{
    color:#666;
    line-height:28px;
}

/* ==========================
        MENU SECTION
========================== */

.menu-section{
    padding:90px 0;
    background:#fafafa;
}

.menu-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:45px;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:35px;
}

.menu-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.menu-card:hover{
    transform:translateY(-10px);
}

.menu-card img{
    height:220px;
    object-fit:cover;
}

.menu-card h3{
    padding:20px 20px 10px;
    font-size:24px;
}

.menu-card p{
    padding:0 20px;
    color:#666;
    min-height:55px;
}

.price{
    display:block;
    padding:18px 20px;
    color:#ff6b00;
    font-size:24px;
    font-weight:700;
}

.order-btn{
    width:calc(100% - 40px);
    margin:0 20px 20px;
    border:none;
    background:#25D366;
    color:white;
    padding:14px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.order-btn:hover{
    background:#1eb858;
}

/* ==========================
          GALLERY
========================== */

.gallery{
    padding:90px 0;
    background:#fff;
}

.gallery h2{
    text-align:center;
    font-size:42px;
    margin-bottom:45px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery-grid img{
    border-radius:15px;
    height:250px;
    object-fit:cover;
    transition:.35s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}