@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
    /* border: .1rem solid red; */
}

:root {
    --lead: #212121;
    --gold-finger: #F2BD12;
    --eye-ball: #FFFDF7;
    --hint-yellow: #FCF1CC;
    --pure-white: #FFF;
}

body {
    background: var(--eye-ball);
}


/* Basic Styling */
a {
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--lead)
}

.flex {
    display: flex;
    align-items: center;
}

li {
    list-style: none;
}

.between {
    justify-content: space-between;
}

.gap-2 {
    gap: 2rem;
}

.gap-3 {
    gap: 3rem;
}

.wrapper {
    max-width: 1400px;
    /* background-color: gold; */
    margin: auto;
    padding-inline: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    margin: auto;
    display: block;
}

.p-top {}



/* headeyling */
.navbar {
    min-height: 14vh;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold-finger)
}

.btn {
    display: inline-block;
    padding: .9rem 2rem;
    background: var(--gold-finger);
    border-radius: 1rem;
    font-size: 1.1rem;
    color: var(--pure-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 1px;
    transition: .3s ease-in-out;
}

.btn:hover {
    background: var(--lead);
}

.cart-icon {
    /* color: var(--lead); */
    font-size: 1.3rem;
    position: relative;
}

.cart-icon .cart-value {
    position: absolute;
    top: 50%;
    right: -10px;
    font-size: .85rem;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 100vw;
    background: var(--gold-finger);
    color: var(--lead);
    text-align: center;
    line-height: 20px;
}

.desktop-action .hamburger {
    font-size: 1.5rem;
    display: none;
}

.mobile-menu {
    display: none;
}




/* Sections Styling */
.hero-section {
    /* background: gold; */
    min-height: calc(100vh - 14vh);
}

.content,
.image-container {
    flex: 1;
}

h1 {
    font-size: 5.6vw;
    color: var(--lead);
}

#nav-toggle {
    opacity: 0;
    position: fixed;
    width: 0;
    height: 0;
    pointer-events: none;
}

h1 span {
    color: var(--gold-finger);
}

p {
    font-size: 1.25rem;
    color: gray;
    line-height: 1.8rem;
}

.para {
    margin-block: 2rem;
    max-width: 550px;
}

.social-icon {
    background: var(--hint-yellow);
    width: 3rem;
    aspect-ratio: 1;
    border-radius: 1rem;
    font-size: 1.2rem;
    text-align: center;
    line-height: 3rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 1px;
    transition: .3s ease-in-out;
}

.social-icon:hover {
    background: var(--lead);
    color: var(--pure-white);
}




/* Footer Styling */






















/* Media Queries */

/* HEADER STYLING */
@media screen and (max-width: 780px) {

    .navlist,
    .desktop-action .btn {
        display: none;
    }

    .desktop-action .hamburger {
        display: block;
        cursor: pointer;
    }



    .mobile-menu {
        display: none;
        /* Hidden by default */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        position: absolute;
        top: 100%;
        /* Below header */
        right: 1.5rem;
        /* Align to right edge with some padding */
        left: auto;
        transform: none;
        width: 20rem;
        padding: 2rem;
        background: var(--pure-white);
        border: .1rem solid var(--gold-finger);
        border-radius: 2rem;
        box-shadow:
            rgba(0, 0, 0, 0.05) 8px 8px 8px,
            rgba(0, 0, 0, 0.05) 8px 8px 8px inset;
        transition: all .5s ease-in-out;
        z-index: 1000;
    }

    /* Show menu when checkbox is checked */
    #nav-toggle:checked~.mobile-menu {
        display: flex;
    }


    /* SECTIONS STYLING */
    h1 {
        font-size: 3.6rem;
    }

    .content {
        padding-top: 3rem;
    }

    .gap-2 {
        gap: 1.4rem;
    }

    gap-4 {
        gap: 4rem;
    }




}

/* About Page Styling */
.about-content {
    padding: 4rem 0;
    text-align: center;
}

/* Services Page Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 6px;
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold-finger);
    margin-bottom: 1rem;
}

/* Contact Page Styling */
.contact-form {
    max-width: 600px;
    margin: 4rem auto;
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 6px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--lead);
    font-weight: bold;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.form-textarea {
    height: 150px;
    resize: vertical;
}

/* Menu Page Styling */
.menu-section {
    padding: 2rem 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.menu-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 6px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-info h3 {
    font-size: 1.5rem;
    color: var(--lead);
    margin-bottom: 0.5rem;
}

.menu-desc {
    color: gray;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.menu-options {
    margin-bottom: 1rem;
}

.price-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var(--lead);
    background-color: var(--pure-white);
}

.menu-action {
    text-align: center;
}