body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
}
/* Navbar styling */
/* Navbar */
.navbar {
  background: #ffffff;
}
.navbar-brand {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
.navbar-nav .nav-link {
  transition: color 0.3s;
  color: #000;
  font-weight: 500;
}
.active{
  color: #f39c12 !important;
  font-weight: bold !important;
}
.navbar-nav .nav-link:hover {
  color: #f39c12;
  font-weight: 500;
}
.navbar-toggler {
    border-color: rgb(1, 1, 1);
    color: rgba(0, 0, 0, 0.573);
    font-weight: bold;
}
.navbar-toggler-icon {
    filter: invert(1);
}
#navbarNav{
    transition-duration: 0.7s;
}
.navbar-toggler .bi-list {
  font-size: 1.5rem;
  color: #333; 
}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 40px 60px;
    gap: 20px;
    background: url("../images/black-leaf-bg.jpeg") no-repeat center/cover !important; 
}

/* Left: half width */
.banner-content {
    flex: 1 1 50%;
    max-width: 50%;
}

.banner-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}
.banner-content p {
    color: white;
    
}

.banner-content .price {
    font-size: clamp(18px, 3vw, 24px);
    color: #ff8c00 !important;
    margin-bottom: 20px;
}

.btn-order {
    background: #ff8c00 !important;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    color: white;
}

.btn-order:hover {
    background: #f79a28;
}

/* Right: half width */
.right-section {
    flex: 1 1 50%;
    max-width: 50%;
    position: relative;
    aspect-ratio: 1/1;
    max-width: 500px;
    margin-left: auto;
    transform: translateX(-40px);
    /* shift to fix overflow */
}

/* Half circle background (desktop only) */
.semi-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url("../images/table.jpeg") no-repeat center/cover !important; /* replace with your image */
  clip-path: inset(0 0 0 50%); /* keeps only right half visible */
  right: 0;
  top: 0;
  z-index: 0;
}
/* Medium laptops: 1024px – 769px */
@media (max-width: 1059px) and (min-width: 769px) {
  .banner {
    flex-wrap: nowrap !important;           /* force single row */
    align-items: center;         /* vertically center content */
    justify-content: space-between;
  }

}

@media (min-width: 1059px) and (max-width: 1160px) {
  .banner {
    flex-wrap: nowrap !important;           /* force single row */
    align-items: center;         /* vertically center content */
    justify-content: space-between;
  }

  
}
/* Fix overlap between 769px – 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .banner-content {
    flex: 1 1 40%;
    max-width: 40%; /* narrower left content */
  }

  .right-section {
    flex: 1 1 60%;
    max-width: 60%; /* give more room to right */
  }
}

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        height: auto;
        padding: 20px;
        /* tighter padding */
        gap: 30px;
        /* reduce space between sections */
        text-align: center;
    }

    .banner-content,
    .right-section {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .right-section {
        transform: none;
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
    }

    
}

@media (max-width: 480px) {
    .right-section {
        width: 100%;
        max-width: 300px;
    }
}

/* Big image */
.big-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
    border: 5px solid #fff;
}

.big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Small images */
.small-img {
    position: absolute;
    width: 18%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translate(-50%, -50%);
    transition: all 0.8s ease;
    background: #fff;
    z-index: 3;
    cursor: pointer;
}

.small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.special-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 500px; /* 🔥 taller cards on large screens */
}

.special-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.special-card:hover img {
  transform: scale(1.1);
}

.special-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 20px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.special-card:hover .overlay {
  transform: translateY(0);
}

.special-card h5 {
  margin: 0;
  font-weight: 600;
}

.special-card span {
  display: block;
  font-weight: bold;
  color: #ffa500;
}

/* 📱 Responsive adjustments */
@media (max-width: 992px) {
  .special-card {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .special-card {
    height: 320px;
  }
}
#menu{
    overflow-x: hidden;
}
.custom-menu-tabs {
    border-bottom: none;
}

.custom-menu-tabs .nav-link {
    font-weight: 600;
    color: #ff7b00;
    /* Orange text */
    border: none;
    background: none;
    font-size: 1.1rem;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.custom-menu-tabs .nav-link:hover {
    color: #e56700;
}

.custom-menu-tabs .nav-link.active {
    color: #ff7b00;
    font-weight: 700;
}

.custom-menu-tabs .nav-link.active::after {
    content: "";
    display: block;
    width: 50%;
    margin: 6px auto 0;
    border-bottom: 3px solid #ff7b00;
    border-radius: 3px;
}

.menu-card {
    text-align: center;
}

.menu-card img {
    width: 100%;
    max-width: 180px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    animation: rotate360 20s linear infinite;
    border-radius: 50%;
    overflow-x: hidden;
    transform-origin: center;
}
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.menu-card p {
    font-weight: 500;
    margin: 0;
}
.menu-section {
  background: url('../images/accordian.png') no-repeat center center/cover;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-container {
  background: rgba(255, 255, 255, 0.05); /* very transparent */
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.accordion-heading {
  background: rgba(255, 140, 0, 0.4); /* lighter transparent orange */
  color: #fff;
  text-align: center;
  padding: 15px;
  font-weight: bold;
  font-size: 1.5rem;
}

.accordion-item {
  background: rgba(255,255,255,0.02); /* almost fully transparent */
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.menu-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.menu-item p{
  margin: 0;
  color: white;
}
.menu-item span{
  color: white;
}
.accordion-button {
  background-color: rgba(255, 255, 255, 0.05) !important; /* transparent */
  color: #fff !important; /* white text so it's visible */
  border: 1px solid rgba(255, 255, 255, 0.3) !important; /* light border */
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.accordion-item {
  border: 1px solid rgba(255, 255, 255, 0.3) !important; /* border around item */
  border-radius: 6px;
  margin-bottom: 5px;
}
/* White arrow for collapsed state */
.accordion-button::after {
    filter: invert(1); /* makes the arrow white */
}

/* White arrow for expanded state */
.accordion-button:not(.collapsed)::after {
    filter: invert(1); /* keeps it white when active */
}

/* --- Attractive Footer Section --- */
.site-footer {
    background-color: white;
    /* A modern, dark blue-grey */
    color: black;
    /* A soft, light grey for text */
    padding: 60px 0 20px 0;
    font-size: 0.95rem;

}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* This creates 4 responsive columns */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    padding: 0 10px;
}

.footer-column h3 {
    font-size: 1.2rem;
    color: #ff8c00;
    /* Using your brand's orange */
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

/* Stylish underline for headings */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 2px;
    background-color: #ff8c00;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 60px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-tagline {
    line-height: 1.7;
}

.footer-links,
.contact-details,
.opening-hours {
    list-style: none;
    padding: 0;
}

.footer-links a,
.contact-details span,
.opening-hours li {
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff8c00;
    padding-left: 5px;
}

.contact-details li,
.opening-hours li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-details i {
    color: #ff8c00;
    margin-right: 15px;
    font-size: 1.1rem;
    margin-top: 4px;
}

/* Social Media Icons */
.social-links {
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color:#ff8c00;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: white;
    color: #ff8c00;
    transform: translateY(-3px);
}

/* Bottom Copyright Bar */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 16px;
}
/* Media Queries for Responsiveness */
@media (max-width: 767px) {

    .footer-heading,
    .footer-title {
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

    .social-icons {
        text-align: center;
        margin-bottom: 20px;
    }

    .list-unstyled {
        text-align: center;
    }

    .text h5 {
        font-size: 1.25rem;
        font-weight: bold;
        color: #ff8c00;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        /* Orange color for the title */
    }

    .foot {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

}
@media screen and (min-width: 768px) {
    .nomnom-item--full {
        grid-column: 1 / -1;
        grid-row-end: span 2;
    }
}
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  background-color: #ff7b00;
  border: none;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

/* Hover effect */
#backToTop:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: #e86d00;
}
