/* ==========================
   SATTU STORY
   Premium Restaurant Theme
========================== */

:root{
    --primary:#6d4c41;
    --secondary:#a1887f;
    --accent:#d4a373;
    --light:#faf7f2;
    --dark:#2c2c2c;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: 'Segoe UI', sans-serif;
    background:var(--light);
    color:var(--dark);
    line-height:1.7;
}

/* HEADER */

header{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.navbar{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:60px;
}

.logo h2{
    color:var(--primary);
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    text-decoration:none;
    color:var(--dark);
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

/* HERO */

.hero{
    height:100vh;
    background:
    linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.45)
    ),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.hero-content{
    max-width:800px;
    padding:20px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:15px;
}

.hero p{
    font-size:1.3rem;
}

.btn{
    display:inline-block;
    margin-top:25px;
    background:var(--accent);
    color:white;
    padding:14px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

/* SECTIONS */

.section{
    padding:90px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:var(--primary);
    font-size:2.5rem;
}

.section-title p{
    color:#666;
}

/* CARDS */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    color:var(--primary);
    margin-bottom:10px;
}

/* PRODUCT */

.product{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.product img{
    width:100%;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.product-content h2{
    color:var(--primary);
    margin-bottom:15px;
}

.product-content ul{
    margin-top:15px;
}

.product-content li{
    margin-bottom:8px;
}

/* OPENING BANNER */

.opening{
    background:var(--primary);
    color:white;
    text-align:center;
    padding:70px 20px;
}

.opening h2{
    font-size:3rem;
}

/* FOOTER */

footer{
    background:#222;
    color:white;
    padding:50px 20px;
}

.footer-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

footer a{
    color:#ddd;
    text-decoration:none;
}

footer p{
    color:#ddd;
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    font-size:30px;
    color:white;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    z-index:999;
}

/* RESPONSIVE */

@media(max-width:768px){

.hero h1{
    font-size:2.5rem;
}

.product{
    grid-template-columns:1fr;
}

.nav-links{
    gap:12px;
    font-size:14px;
}
}
.about-banner{
height:60vh;
background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.55)
),
url('../images/about-banner.jpg');

background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}
.product-content p{
margin-bottom:20px;
}

.product-content ul{
margin-top:20px;
padding-left:20px;
}

.product-content li{
margin-bottom:10px;
}

.card strong{
color:var(--primary);
}

.section:nth-child(even){
background:#fff;
}
/* ==========================
   AAM KUCHHA HERO BANNER
========================== */

.aam-kuchha-banner{
    height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ),
    url('../images/about-banner.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    color:white;
}

.aam-kuchha-banner h1{
    font-size:4rem;
    margin-bottom:15px;
}

.aam-kuchha-banner p{
    font-size:1.3rem;
}

@media(max-width:768px){

    .aam-kuchha-banner h1{
        font-size:2.5rem;
    }

    .aam-kuchha-banner p{
        font-size:1rem;
    }

}
form{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

form label{
display:block;
margin-top:15px;
margin-bottom:5px;
font-weight:600;
}

form input,
form textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
font-size:15px;
margin-bottom:10px;
}

form button{
border:none;
cursor:pointer;
}

.page-banner{
    height:350px;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url('../images/about-banner.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    color:white;

    margin-top:90px;
}