/* =========================
   GLOBAL STYLES
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Inter', sans-serif;
    background-color: #f5f7fb;
    color: #111827;
    line-height: 1.6;
}

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

a{
    text-decoration: none;
}

ul{
    list-style: none;
}

section{
    padding: 75px 8%;
}



/* =========================
   NAVBAR
========================= */

header{
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 8%;

    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.logo span{
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a{
    color: #374151;
    font-weight: 500;
    transition: 0.3s ease;
}

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

.nav-btn{
    padding: 12px 24px;

    border: none;
    border-radius: 10px;

    background-color: #ea580c;
    color: white;

    font-weight: 600;
    cursor: pointer;

    transition: 0.3s ease;
}

.nav-btn:hover{
    background-color: #c2410c;
}



/* =========================
   HERO SECTION
========================= */

/* =========================
   SECTION HEADINGS
========================= */

.section-heading{
    margin-bottom: 50px;
}

.section-heading p{
    color: #ea580c;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-heading h2{
    font-size: 2.3rem;
    color: #111827;
}



/* =========================
   RESTAURANTS SECTION
========================= */

.restaurant-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.restaurants-section{
    padding-top: 40px;
}

.restaurant-card{
    background-color: white;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    transition: 0.3s ease;
}

.restaurant-card:hover{
    transform: translateY(-10px);
}

.restaurant-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.card-content{
    padding: 22px;
}

.card-top{
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 12px;
}

.card-top h3{
    font-size: 1.3rem;
    color: #111827;
}

.rating{
    background-color: #ecfdf5;
    color: #059669;

    padding: 6px 10px;

    border-radius: 8px;

    font-size: 0.9rem;
    font-weight: 600;
}

.cuisine{
    color: #6b7280;
    margin-bottom: 18px;
}

.card-bottom{
    display: flex;
    justify-content: space-between;

    color: #374151;
    font-weight: 500;
}



/* =========================
   CATEGORIES SECTION
========================= */

.categories-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.category-card{
    background-color: white;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    font-size: 1.2rem;
    font-weight: 600;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);

    transition: 0.3s ease;

    cursor: pointer;
}

.category-card:hover{
    transform: translateY(-8px);
    background-color: #fff7ed;
}

.category-card{
    border: 1px solid transparent;
}

.category-card:hover{
    border-color: #fdba74;
}



/* =========================
   CONTACT SECTION
========================= */

.contact-container{
    max-width: 700px;
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea{
    padding: 18px;

    border: 1px solid #d1d5db;
    border-radius: 14px;

    font-size: 1rem;

    outline: none;
}

.contact-form textarea{
    resize: none;
}

.contact-form button{
    width: fit-content;

    padding: 14px 28px;

    border: none;
    border-radius: 12px;

    background-color: #ea580c;
    color: white;

    font-weight: 600;
    cursor: pointer;

    transition: 0.3s ease;
}

.contact-form button:hover{
    background-color: #c2410c;
}



/* =========================
   FOOTER
========================= */

footer{
    background-color: #111827;
    color: white;

    padding: 70px 8%;
}

.footer-content{
    max-width: 500px;
}

.footer-content h3{
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-content p{
    color: #d1d5db;
    margin-bottom: 14px;
}

.copyright{
    margin-top: 30px;
    font-size: 0.95rem;
}

.hero{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;

    min-height: 85vh;
}
.hero{
    position: relative;
}

.hero::before{
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    background: rgba(234, 88, 12, 0.08);

    border-radius: 50%;

    top: 80px;
    left: -100px;

    filter: blur(40px);

    z-index: -1;
}


.hero-tag{
    color: #ea580c;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-content h1{
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111827;
}

.hero-description{
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-search{
    display: flex;
    align-items: center;

    background-color: white;
    padding: 10px;

    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    max-width: 500px;
}

.hero-search input{
    flex: 1;

    border: none;
    outline: none;

    padding: 14px;

    font-size: 1rem;
}

.hero-search button{
    padding: 14px 24px;

    border: none;
    border-radius: 10px;

    background-color: #ea580c;
    color: white;

    font-weight: 600;
    cursor: pointer;
}

.hero-image img{
    border-radius: 30px;

    height: 550px;
    object-fit: cover;

    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.restaurant-card img{
    width: 100%;
    height: 240px;
    object-fit: cover;

    transition: transform 0.4s ease;
}

.restaurant-card:hover img{
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.restaurant-card{
    position: relative;
}

.restaurant-card::before{
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.05),
        transparent
    );

    opacity: 0;

    transition: 0.3s ease;

    pointer-events: none;
}

.restaurant-card:hover::before{
    opacity: 1;
}