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

header{
    background-color: #3b141c;
    position: fixed;
    z-index: 5;
    width: 100%;
    border-bottom: 3px solid #f3961c;
}


ul{
    list-style: none;
}

a{
    text-decoration: none;
}

header .navbar{
    display: flex;
    padding: 20px;
    justify-content: space-between;
    align-items: center;
}
.section-content{
    margin: 0;
    padding: 0 20px;
    max-width: 1300px;
}

.navbar .navlogo img{
    width: 50px;
    height: 50px;

}
.navlogo{
    padding-left: 64px;
}
 
.navbar .navlogo h2{
    color: #f3961c;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    align-items: center;
}

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

.nav-menu{
    display: flex;
    gap: 5px;
}

.navbar .nav-menu .nav-link{
    color: #fff;
    padding: 10px 18px;
    font-size: 16px;
    transition: 0.2s ease;
}

.navbar .nav-menu .nav-link:hover{
    background: #f3961c;
    border-radius: 16px;
}



/* main section styling*/

.section1{
    background-color: #3b141c;
    min-height: 100vh;
    color: #fff;
}

.section1 .section-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
}

.section-content{
    padding: 150px;
    align-items: center;
}

.section1 .section-details h3{
    color: #f3961c;
    font-size: 70px;
    font-family: cursive;
}


.section1 .section-details h4{
    font-size: 40px;
    margin: 8px;
    max-width: 70%;
    font-weight: bold;
}

.section1 .section-details p{
    max-width: 70%;
    font-size: 18px;
    margin: 24px 0 40px;
}

/* buttons style*/

.section1 .section-content .buttons{
    display: flex;
    gap: 23px;
}

 .buttons  .contact-us{
    padding: 10px 26px;
    background-color: transparent;
    border-radius: 10px;
    border: 3px solid #f3961c;
    color: #fff;
    transition: 0.3s ease;
}

.buttons  .contact-us:hover{
    background-color: #f3961c;
    color: #fff;
    transform: translate3d(1.3);
}



.buttons  .order-now{
    padding: 10px 26px;
    background-color: #f3961c;
    border-radius: 10px;
    color: #fff;
}

.buttons  .order-now:hover{
    color: #fff;
    background: transparent;
    border: 3px solid #f3961c;
}


.section1 .sec-image{
    width: 200px;
    margin-right: 20px;
}


.sec-image img{
    width: 500px;
    height: 500px;
}


/* about styling*/

.about-section  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 124px;
    background-color: beige;
}

.word{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 20px;
}

.about-section{
    border-radius: 3px ;
    border: #000;
}

.about-section .about-image img{
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10%;
    background-color: #000;
}

.word h2{
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: bold;
   
}

.about-section .word p{
    line-height: 30px;
    text-align: center;
    font-size: 24px;
    padding: 20px;
    text-align: center;
    justify-content: center;
    margin-bottom: 20px;

}

.about-section .social-icon a{
    display: inline-flex;
    gap: 25px;
    justify-content: center;
    font-size: 24px;
    color: #f3961c;
   transition: 0.2s ease;
   margin: 28px 24px 28px;
   width: 48px;
   height: 48px;
   border-radius: 50%;
   border: 2px solid #3b141c;
   align-items: center;
}

 .social-icon a:hover{
    color: #fff;
    background-color: #f3961c;
}


.about-section .word h4{
    font-size: 20px;
    text-align: center;
}


/* menu styling */

.menu-container {
    color: #c1163b;
    padding: 64px;
    margin: 10px;
    position: relative;
    padding-bottom: 3.5rem; /* Add space for the button */
    margin-bottom: 350px;     /* Add this line for extra space below menu */
}

.menu-container h2{
    font-size: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    
}

.menu-content {
    display: flex;
    padding: 10px;
    margin: 10px;
    text-align: center;
    align-items: center;
   
}

.see-more-wrapper {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
}

#see-more{
    padding: 0.7rem 2rem;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
#see-more:hover {
    background: #e68900;
    transform: translateY(-2px) scale(1.04);
}

.menu-content h3{
    font-size: 24px;
    font-weight: bold;
    margin: 10px;
    
}

.menu-content p{
    font-size: 24px;
    padding: 10px;
    margin: 10px;
}

/* Contact Form Styles */
.contact-section {
    padding: 2rem;
    background: #f9f9f9;
    max-width: 500px;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.contact-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ff9800;
}
.contact-form div {
    margin-bottom: 1.2rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #333;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    background: #fff;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid #ff9800;
    outline: none;
}
.contact-form button {
    width: 100%;
    padding: 0.8rem;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form button:hover {
    background: #e68900;
}
.success-message {
    text-align: center;
    color: #388e3c;
    font-weight: bold;
    margin-top: 1rem;
}

.image-container{
    display: flex;
    margin: 10px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    width: 100%;
    height: 100vh;
}
.box{
    width: 30%;
    
}

.menu-content img{
    width: 200px;
    height: 200px;
}

/* Testimonial Section Styles */
.testimonial-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(255,152,0,0.18);
    transform: translateY(-8px) scale(1.03);
}

.testimonial-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff9800;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #ff9800;
    margin: 0;
}

/* Professional Menu Card Styles */
.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.box:hover {
    box-shadow: 0 8px 32px rgba(255,152,0,0.18);
    transform: translateY(-8px) scale(1.03);
}

.box img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 3px solid #ff9800;
    background: #fff;
}

.box h3 {
    margin: 0.5rem 0 0.7rem 0;
    color: #ff9800;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.box p {
    color: #444;
    font-size: 1rem;
    margin: 0;
    flex: 1;
}

/* Hamburger styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    z-index: 20;
}
.hamburger span {
    height: 4px;
    width: 28px;
    background: #f3961c;
    margin: 4px 0;
    border-radius: 2px;
    display: block;
    transition: 0.3s;
}
.close-nav {
    display: none;
    font-size: 2.2rem;
    color: #f3961c;
    position: absolute;
    top: 18px;
    right: 24px;
    cursor: pointer;
    z-index: 30;
    background: #3b141c;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.order-btn {
    background: #f3961c;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 18px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.order-btn:hover {
    background: #c1163b;
}

.icon i{
    font-size: 20px;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    background: transparent;
    color: #110f0f;
    transition: background 0.2s, color 0.2s;
}

.icon.cart {
    position: relative;
}

.icon.favorite i{
    color: #efe0e3;
    
}

.icon.favorite.active  i{
    color: #e53935; /* Red when active */
}


.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #f3961c;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
    min-width: 18px;
    min-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        height: 100vh;
        background: #3b141c;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 0 30px;
        gap: 24px;
        transition: right 0.3s;
        z-index: 25;
    }
    .nav-menu.open {
        right: 0;
    }
    .close-nav {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 1100px) {
    .section-content {
        flex-direction: column;
        gap: 2rem;
        padding: 60px 20px;
        text-align: center;
    }
    .about-section {
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
        text-align: center;
    }
    .about-image img {
        margin: 0 0 1.5rem 0;
        width: 220px;
        height: 220px;
    }
    .menu-container {
        padding: 40px 10px 80px 10px;
    }
}

@media (max-width: 900px) {
    .image-container {
        gap: 1.2rem;
    }
    .box {
        width: 180px;
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .box img {
        width: 60px;
        height: 60px;
    }
    .box h3 {
        font-size: 1rem;
    }
    .box p {
        font-size: 0.9rem;
    }
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, auto);
        gap: 1.2rem;
    }
    .testimonial-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .testimonial-img {
        width: 48px;
        height: 48px;
    }
    .testimonial-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {

    
    header .navbar {
        flex-direction: row;
        padding: 10px;
    }

    .section-content{
        padding-top: 10px;
        background-color: #3b141c;
    }
    .navlogo {
        padding-left: 0;
    }
    .section1 {
        min-height: 60vh;
        padding: 0;
    }
    .section-content {
        padding: 30px 5px;
    }
    .section1 .section-details h3 {
        font-size: 2rem;
    }
    .section1 .section-details h4 {
        font-size: 1.1rem;
        max-width: 100%;
    }
    .section1 .section-details p {
        font-size: 1rem;
        max-width: 100%;
    }

    .section-details{
        padding: 40px;
        margin: 10px;
    }
    .sec-image img {
        width: 90vw;
        height: auto;
        max-width: 300px;
        align-items: center;
    }
    .about-section {
        padding: 30px 5px;
    }
    .about-image img {
        width: 120px;
        height: 120px;
    }
    .word h2 {
        font-size: 1.2rem;
    }
    .about-section .word p {
        font-size: 1rem;
        padding: 10px;
    }
    .menu-container h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .image-container {
        flex-direction: column;
        gap: 1rem;
        height: auto;
    }
    .box {
        width: 95vw;
        min-width: unset;
        max-width: 350px;
        margin: 0 auto;
        padding: 1rem 0.5rem;
    }
    .box img {
        width: 48px;
        height: 48px;
    }
    .box h3 {
        font-size: 0.95rem;
    }
    .box p {
        font-size: 0.85rem;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        gap: 1rem;
    }
    .testimonial-card {
        padding: 1rem 0.5rem;
    }
    .testimonial-img {
        width: 40px;
        height: 40px;
    }
    .testimonial-text {
        font-size: 0.9rem;
    }
    .see-more-wrapper {
        position: static;
        margin: 1.5rem auto 0 auto;
        text-align: center;
    }
}

/* Center the Testimonial h2 and add color for all section headings */
#testimonial h2,
.menu-container h2,
.about-section h2,
.contact-section h2 {
    text-align: center;
    color: #c1163b; /* Deep wine/red color */
    margin-bottom: 32px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Dropdown Styles */
.dropdown-list {
    display: none;
    position: absolute;
    background: #3b141c; /* wine color */
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    margin-top: 8px;
    padding: 0;
    list-style: none;
    border-radius: 0 0 8px 8px;
    z-index: 100;
}

.dropdown-list li {
    border-bottom: 1px solid #333;
}

.dropdown-list li:last-child {
    border-bottom: none;
}

.dropdown-list a {
    color: #fff;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-list a:hover {
    background: #f3961c;
    color: #222;
}

.nav-item.dropdown {
    position: relative;
}

.arrow {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.2s;
}

.arrow.open {
    transform: rotate(180deg);
}

.hidden-card {
    display: none;
}

#see-less {
    background: #c1163b;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 22px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
    transition: background 0.2s;
}

#see-less:hover {
    background: #a01331;
}

.footer {
    background: #3b141c;
    color: #fff;
    text-align: center;
    padding: 24px 0 16px 0;
    margin-top: 40px;
    border-top: 3px solid #f3961c;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-content p {
    margin: 0;
    padding: 0 10px;
    line-height: 1.6;
    color: #ddd;
}

.footer-content a {
    color: #f3961c;
    text-decoration: underline;
}

.footer-content a:hover {
    color: #fff;
}