:root {
    --primarycolor: #F39C12;
    --secondarycolor: white;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    background-color: #2C1500;
}

body {
    overflow-x: hidden;
}

/* ===================== HEADER ===================== */
.section1 {
    width: 100%;
    height: 70px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C1500;
    border-bottom: 2px solid #3A1E00;
    position: fixed;
    z-index: 10;
}

header aside {
    width: 17%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 180px;
}

header aside span {
    font-size: 25px;
    font-weight: bold;
}

header aside span:nth-child(1) { color: var(--primarycolor); }
header aside span:nth-child(2) { color: var(--secondarycolor); }

header nav {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 8px;
    margin-right: 100px;
}

header nav ul {
    width: 90%;
    gap: 29px;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 150px;
}

header nav ul li {
    list-style: none;
    position: relative;
}

header nav ul li a {
    text-decoration: none;
    color: #CCCCCC;
    font-weight: 500;
    font-size: 15px;
}

header ul button {
    width: 26%;
    padding: 8px 20px;
    border: 0px;
    background-color: #C0392B;
    color: var(--secondarycolor);
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    margin: 15px;
    cursor: pointer;
}

header ul button:hover { background-color: #96281B; }

header nav ul li:hover::before {
    content: "";
    width: 100%;
    height: 2.5px;
    background-color: orange;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: underlineSlider 0.5s ease;
}

@keyframes underlineSlider {
    from { width: 0%; }
    to { width: 100%; }
}

/* ===================== HAMBURGER ===================== */
.ham {
    display: none;
    height: 100%;
    width: 50px;
    font-size: 24px;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: white;
    cursor: pointer;
    position: relative;
    background-color: transparent;
}

.ham span {
    background-color: transparent;
}

.hidden-content {
    display: none;
    position: absolute;
    top: 70px;
    right: 0px;
    width: 100%;
    background-color: #2C1500;
    z-index: 100;
    animation: topToBottom 0.2s linear forwards;
}

.hidden-content.active {
    display: block;
}

.hidden-content ul {
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    list-style: none;
    background-color: #2C1500;
    border-bottom: 2px solid #3A1E00;
}

.hidden-content ul li a {
    text-decoration: none;
    color: #CCCCCC;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px;
    background-color: transparent;
}

.hidden-content ul li a:hover {
    color: var(--primarycolor);
}

@keyframes topToBottom {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0px); opacity: 1; }
}

/* ===================== SECTION 2 - HERO ===================== */
.section2 {
    height: 90vh;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-top: -80px;
    margin-bottom: 15px;
    justify-content: center;
}

.parent1 {
    width: 1101px;
    display: flex;
    height: 70%;
}

.child1 {
    width: 522px;
    height: 100%;
    color: var(--primarycolor);
}

.parent1 span { color: var(--primarycolor); }

.parent1 h1 {
    margin-top: 20px;
    color: var(--secondarycolor);
    font-size: 41.6px;
    line-height: 52px;
}

.p1 {
    border: 1px solid var(--primarycolor);
    width: fit-content;
    border-radius: 30px;
    background-color: #492903;
    font-size: 13px;
    font-weight: bold;
    padding: 5px 20px;
}

.p2 {
    height: 84px;
    width: 522.5px;
    color: #AAAAAA;
    font-size: 16px;
    line-height: 1.7;
}

.btns {
    display: flex;
    padding-top: 20px;
    gap: 15px;
}

.btns :nth-child(1) {
    text-decoration: none;
    height: 53.3333px;
    width: 181.833px;
    background-color: #C0392B;
    color: var(--secondarycolor);
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}

.btns :nth-child(2) {
    text-decoration: none;
    height: 53.3333px;
    width: 167.76px;
    color: var(--primarycolor);
    padding: 13px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid var(--primarycolor);
}

.child2 {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.img1 {
    height: 293.906px;
    width: 522.5px;
    border-radius: 15px;
}

/* ===================== SECTION 3 - STATS ===================== */
.section3 {
    height: 204px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.status {
    height: 125px;
    width: 100%;
    background-color: #C0392B;
    color: var(--secondarycolor);
    display: flex;
    align-items: center;
    justify-content: center;
}

.innerstatus {
    height: 68px;
    width: 1100px;
    background-color: #C0392B;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.innerstatus h3 {
    background-color: #C0392B;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.innerstatus h3 p {
    background-color: #C0392B;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
}

/* ===================== SECTION 4 - MENU ===================== */
.section4 {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #1A0A00;
    padding: 60px 20px;
}

.section4 .label {
    color: var(--primarycolor);
    text-align: center;
    font-size: 13.6px;
    font-weight: 600;
    letter-spacing: 2px;
    background-color: #1A0A00;
}

.section4 h1 {
    text-align: center;
    color: var(--secondarycolor);
    margin: 6px;
    background-color: #1A0A00;
    margin-bottom: 46px;
}

.menugrid {
    width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #1A0A00;
}

.menubox {
    height: 373px;
    width: 350.667px;
    border-radius: 15px;
    background-color: #2C1500;
    transition: all 0.2s linear;
    overflow: hidden;
}

.menubox:hover { transform: translateY(-8px); }
.menubox:hover .mimg { transform: scale(1.1); }

.mimg {
    height: 180px;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    object-fit: cover;
    margin-bottom: 14px;
    transition: all 0.2s linear;
}

.menubox .nveg,
.menubox .veg {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 14px;
    display: inline-block;
}

.nveg { color: #E74C3C; border: 1px solid #E74C3C; }
.veg  { color: #2ECC71; border: 1px solid #2ECC71; }

.menugrid h3 {
    color: var(--secondarycolor);
    line-height: 1;
}

.menugrid p {
    margin: 14px;
    font-size: 13.28px;
    color: rgb(136, 136, 136);
    font-weight: 400;
}

.menufoot {
    height: 34px;
    width: calc(100% - 28px);
    display: flex;
    margin-left: 14px;
    justify-content: space-between;
    align-items: center;
}

.menufoot span {
    color: var(--primarycolor);
    font-size: 17.6px;
    font-weight: 700;
}

.menufoot button {
    height: 34px;
    background-color: #E74C3C;
    padding: 0 12px;
    font-weight: 600;
    color: white;
    border: 1px solid #E74C3C;
    border-radius: 5px;
    cursor: pointer;
}

.menubox h3 {
    color: var(--secondarycolor);
    margin: 14px;
    font-size: 16px;
}

/* ===================== SECTION 5 - ABOUT ===================== */
.section5 {
    min-height: 666px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #2C1500;
    align-items: center;
    padding: 60px 20px;
}

.about {
    height: auto;
    width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.aboutinner {
    width: 522.5px;
}

.about .label {
    color: var(--primarycolor);
    font-size: 13.6px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 23.8px;
    margin: 0 0 10px 0;
}

.about h2 {
    font-size: 30.4px;
    color: var(--secondarycolor);
    line-height: 41.04px;
    margin: 0 0 16px 0;
    background-color: #2C1500;
}

.about p {
    font-size: 15.2px;
    line-height: 26.6px;
    color: #999999;
    margin: 0 0 14px 0;
}

.about ul { list-style: none; }

.about ul li {
    padding: 7px 0;
    color: #BBBBBB;
}

.about li::before {
    content: "\2713";
    color: var(--primarycolor);
    font-weight: bolder;
    padding: 10px;
}

.about button {
    font-size: 16px;
    font-weight: 600;
    background-color: #C0392B;
    padding: 13px 30px;
    border-radius: 10px;
    color: var(--secondarycolor);
    border: 0px;
    margin-top: 10px;
    cursor: pointer;
}

.about img {
    height: 348.333px;
    width: 522.5px;
    border-radius: 12px;
    object-fit: cover;
}

/* ===================== SECTION 6 - REVIEWS ===================== */
.section6 {
    min-height: 487px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: #1A0A00;
    padding: 60px 20px;
}

.stop {
    background-color: #1A0A00;
    text-align: center;
    margin-bottom: 30px;
}

.stop p {
    background-color: #1A0A00;
    color: var(--primarycolor);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
}

.stop h2 {
    background-color: #1A0A00;
    font-size: 32px;
    font-weight: 700;
    color: var(--secondarycolor);
}

.review {
    width: 1100px;
    background-color: #1A0A00;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.rcard {
    height: auto;
    min-height: 218px;
    width: 352px;
    border-left: 4px solid #C0392B;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 15px 0;
}

.rcard .para1,
.rcard .para2 {
    margin-left: 14px;
    color: #999999;
}

.reviewer {
    height: auto;
    width: auto;
    display: flex;
    gap: 14px;
    margin-left: 14px;
    align-items: center;
}

.reviewer img {
    height: 42px;
    width: 42px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.reviewer div {
    display: flex;
    flex-direction: column;
}

.reviewer div strong {
    color: white;
    font-size: 14.4px;
    font-weight: 700;
}

.reviewer div span {
    color: #666666;
    font-size: 12.48px;
}

/* ===================== SECTION 7 - CONTACT ===================== */
.section7 {
    min-height: 700px;
    background-color: #2C1500;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 20px;
}

.rfhead {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0 45px 0;
}

.rfhead p {
    font-size: 13.6px;
    color: var(--primarycolor);
    font-weight: 600;
    letter-spacing: 2px;
}

.rfhead h2 {
    color: var(--secondarycolor);
    background-color: transparent;
    margin: 6px 0 0 0;
    font-size: 32px;
    font-weight: 700;
}

.rfbody {
    width: 1100px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.rfinfo {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 522px;
}

.rfinfo h3 {
    font-size: 28.8px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.rfinfo p {
    font-size: 14.4px;
    line-height: 23.76px;
    color: #999999;
    margin-bottom: 10px;
}

.rfbox { flex: 1; }

.rfbox form {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 15px;
}

.rfbox form input {
    height: 47px;
    background-color: #1A0A00;
    border-radius: 8px;
    border: 1px solid #3A1E00;
    padding: 0 15px;
    color: white;
    font-size: 14px;
    width: 100%;
}

.rfbox form textarea {
    height: 120px;
    border-radius: 8px;
    background-color: #1A0A00;
    border: 1px solid #3A1E00;
    padding: 15px;
    color: white;
    font-size: 14px;
    resize: vertical;
    width: 100%;
}

.rfbox form input::placeholder,
.rfbox form textarea::placeholder {
    color: #666;
}

.rfbox form button {
    font-size: 16px;
    height: 50px;
    padding: 13px;
    background-color: #C0392B;
    border-radius: 8px;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.rfbox form button:hover { background-color: #96281B; }

/* ===================== FOOTER ===================== */
footer {
    padding: 60px 20px 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    background-color: #0d0500;
}

.footermain {
    display: grid;
    background-color: #0d0500;
    justify-content: space-between;
    grid-template-columns: 515px 257.5px 257.5px;
    width: 1100px;
    margin-bottom: 30px;
    gap: 20px;
}

.brand {
    background-color: #0d0500;
}

.col {
    background-color: #0d0500;
}

.brand h2 {
    font-size: 25.6px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    background-color: #0d0500;
}

.brand h2 span {
    color: #ff9900;
    background-color: #0d0500;
}

.brand p {
    font-size: 14px;
    color: #555555;
    line-height: 23.8px;
    padding-right: 40px;
    background-color: #0d0500;
}

.col h3 {
    color: var(--primarycolor);
    font-size: 14px;
    margin-bottom: 15px;
    background-color: #0d0500;
}

.col a {
    display: flex;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    background-color: #0d0500;
    margin-bottom: 10px;
}

.btm {
    margin-top: 30px;
    display: flex;
    color: #444444;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background-color: #0d0500;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a0a00;
    width: 100%;
}

.btm p { background-color: #0d0500; }

/* ===================== TABLET (481px - 991px) ===================== */
@media screen and (max-width: 991px) and (min-width: 481px) {
    * {
        box-sizing: border-box;
    }

    header aside {
        width: auto;
        padding-left: 20px;
        justify-content: flex-start;
    }

    header aside span { font-size: 22px; }
    header nav { display: none; }

    .ham {
        display: flex;
        width: 60px;
        font-size: 28px;
        margin-right: 20px;
    }

    /* Section 2 */
    .section2 {
        height: auto;
        min-height: 80vh;
        margin-top: 70px;
        padding: 50px 30px;
        align-items: center;
        margin-bottom: 0px;
    }

    .parent1 {
        width: 100%;
        height: auto;
        flex-direction: row;
        align-items: center;
        gap: 30px;
    }

    .child1 {
        width: 55%;
        height: auto;
    }

    .p1 { font-size: 12px; }

    .parent1 h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .p2 {
        width: 100%;
        height: auto;
        font-size: 14px;
    }

    .btns {
        flex-direction: column;
        gap: 12px;
    }

    .btns :nth-child(1),
    .btns :nth-child(2) {
        width: 100%;
        text-align: center;
        height: auto;
        padding: 13px 20px;
    }

    .child2 {
        width: 45%;
        justify-content: center;
    }

    .img1 {
        width: 100%;
        height: 240px;
    }

    /* Section 3 */
    .section3 {
        height: auto;
        padding: 40px 20px;
    }

    .status { height: auto; padding: 25px 0; }

    .innerstatus {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
        padding: 10px;
    }

    .innerstatus h3 { font-size: 26px; }

    /* Section 4 */
    .section4 { padding: 60px 20px; }
    .section4 h1 { font-size: 26px; margin-bottom: 30px; }

    .menugrid {
        width: 100%;
        justify-content: center;
    }

    .menubox {
        width: calc(50% - 12px);
        min-width: 220px;
        height: auto;
        min-height: 360px;
    }

    /* Section 5 */
    .section5 { padding: 60px 30px; }

    .about {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .aboutinner {
        width: 100%;
        max-width: 600px;
        text-align: center;
    }

    .about h2 { font-size: 26px; }

    .about img {
        width: 100%;
        max-width: 500px;
        height: 280px;
    }

    /* Section 6 */
    .section6 { padding: 60px 30px; }

    .review {
        width: 100%;
        justify-content: center;
    }

    .rcard {
        width: calc(50% - 12px);
        min-width: 220px;
    }

    /* Section 7 */
    .section7 { padding: 60px 30px; }

    .rfbody {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .rfinfo { width: 100%; max-width: 600px; }
    .rfbox { width: 100%; max-width: 600px; }

    /* Footer */
    .footermain {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .brand { grid-column: 1 / -1; }
    .brand p { padding-right: 0; }
}

/* ===================== MOBILE (max-width: 480px) ===================== */
@media screen and (max-width: 480px) {
    * { box-sizing: border-box; }

    header aside {
        width: auto;
        padding-left: 15px;
        justify-content: flex-start;
    }

    header aside span { font-size: 20px; }
    header nav { display: none; }

    .ham {
        display: flex;
        width: 50px;
        font-size: 22px;
        margin-right: 10px;
    }

    /* Section 2 */
    .section2 {
        height: auto;
        min-height: 80vh;
        margin-top: 70px;
        padding: 40px 15px;
        align-items: center;
        margin-bottom: 0;
    }

    .parent1 {
        width: 100%;
        height: auto;
        flex-direction: column-reverse;
        align-items: center;
        gap: 25px;
    }

    .child1 {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .parent1 h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .p1 {
        font-size: 11px;
        padding: 5px 12px;
        display: inline-block;
    }

    .p2 {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 1.6;
    }

    .btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btns :nth-child(1),
    .btns :nth-child(2) {
        width: 100%;
        text-align: center;
        height: auto;
        padding: 13px 20px;
    }

    .child2 {
        width: 100%;
        justify-content: center;
    }

    .img1 {
        width: 100%;
        height: 200px;
    }

    /* Section 3 */
    .section3 {
        height: auto;
        padding: 0;
    }

    .status { height: auto; padding: 25px 15px; }

    .innerstatus {
        width: 100%;
        height: auto;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding: 5px;
    }

    .innerstatus h3 { font-size: 22px; }
    .innerstatus h3 p { font-size: 12px; }

    /* Section 4 */
    .section4 { padding: 50px 15px; }
    .section4 .label { font-size: 12px; }
    .section4 h1 { font-size: 22px; margin-bottom: 25px; }

    .menugrid {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .menubox {
        width: 100%;
        max-width: 380px;
        height: auto;
        min-height: 350px;
    }

    /* Section 5 */
    .section5 { padding: 50px 15px; }

    .about {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .aboutinner {
        width: 100%;
        text-align: center;
    }

    .about .label { font-size: 12px; }
    .about h2 { font-size: 22px; line-height: 30px; }
    .about p { font-size: 14px; }
    .about ul li { font-size: 13px; }

    .about img {
        width: 100%;
        max-width: 380px;
        height: 220px;
        margin-top: 0;
    }

    /* Section 6 */
    .section6 { padding: 50px 15px; }
    .stop h2 { font-size: 22px; }
    .stop p { font-size: 12px; }

    .review {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .rcard {
        width: 100%;
        max-width: 380px;
        min-height: 200px;
    }

    .rcard .para1,
    .rcard .para2 {
        font-size: 13px;
    }

    /* Section 7 */
    .section7 { padding: 50px 15px; }
    .rfhead p { font-size: 12px; }
    .rfhead h2 { font-size: 22px; }

    .rfbody {
        width: 100%;
        flex-direction: column;
        gap: 30px;
    }

    .rfinfo { width: 100%; }
    .rfinfo h3 { font-size: 22px; }
    .rfinfo p { font-size: 14px; }

    .rfbox { width: 100%; }
    .rfbox form { gap: 12px; }
    .rfbox form input { font-size: 14px; }
    .rfbox form textarea { font-size: 14px; }
    .rfbox form button { font-size: 15px; }

    /* Footer */
    footer { padding: 40px 15px 15px; }

    .footermain {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .brand, .col { width: 100%; text-align: center; }
    .brand p { padding-right: 0; }

    .col a { justify-content: center; }

    .btm { font-size: 12px; }
}
