@import url('https://fonts.googleapis.com/css2?family=Playwrite+AU+TAS:wght@100..400&display=swap');

*{
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    transition:all 0.5s linear;
    color: #fff;
    text-transform: capitalize;
}
body{
    background-color: #1a1110;
      font-family: "Lato", sans-serif;
}
header{
    position: relative;
    padding: 2em 0;
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.3)),url(images/pancakes.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
}
.logo{
    font-size: 2em;
    font-weight: 600;
    flex: 1;
    color: #fff;
    display: flex;
    align-items: center;
}
.logo img{
    width: 70px;
    margin-right: 1;
}
/* NAVBAR CONTAINER */
nav, .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 60px;
    display: flex;
    justify-content: space-between; /* spreads logo and nav items */
    align-items: center;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    z-index: 1000;
    transition: 0.4s ease;
}

/* SCROLLED NAVBAR */
nav.scrolled, .navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
}

/* LOGO */
.nav-logo img, .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* NAV ITEMS */
.nav_items {
    list-style: none;
    display: flex;                /* horizontal alignment */
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav_items li {
    position: relative;
}

.nav_items li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* UNDERLINE ON HOVER */
.nav_items li a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: orangered;
    transition: 0.3s;
}

.nav_items li a:hover::after {
    width: 100%;
}

/* MOBILE MENU TOGGLE */
.nav_menu {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

/* RESPONSIVE MOBILE NAVBAR */
@media (max-width: 850px) {
    .nav_items {
        position: absolute;
        top: 70px; /* below navbar */
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #000;
        gap: 1rem;
        padding: 1rem 0;
        transform: translateY(-100%);
        transition: transform 0.5s ease;
        z-index: 999;
    }

    .nav_items.open {
        transform: translateY(0);
    }

    .nav_menu {
        display: block;
    }
}


.navbar.scrolled{
    background-color: #000;
    box-shadow: rgba(0, 0, 0, 0.35); 
}

.item{
    display: flex;
    justify-content: center;
}

.nav_items li::before{
    content: '';
    width: 0;
    height: 2px;
    background: orangered;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav_items li:hover::before{
    width: 100%;
}

.btn{
    padding: 9px 15px;
    font-size: 18px;
    letter-spacing: 2px;
    cursor: pointer;
    background-color: orangered;
    border: 2px solid orangered;
    transition: all 0.5s ease-out;
}
.nav_menu{
    display: none;
}
.main{
    width: 80%;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    position: absolute;
    color: #fff;
}
.heading_1{
    font-size: 2.3em;
}
.heading{
    font-size: 3.5em;
    padding: 1.5% 0;
      font-family: "Playwrite AU TAS", cursive;
}
.main_btn{
    display: flex;
}
.btn1:hover{
    background-color: transparent;
}
.btn2{
    background-color: transparent;
    margin-left: 1%;
    align-items: center;
    display: flex;
}
.btn2 i{
    font-size: 2em;
    margin-right: 6px;
    color: orangered;
}
.btn1:hover i{
    color: #fff;
}
.menu_section {
    padding: 3rem 2rem;
    background: #f8f8f8;
}
.menu_tittle {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #333;
}
.menu_category {
    max-width: 650px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.menu_category h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #009245;
}
.menu_category ul {
    list-style: none;
    padding: 0;
}
.menu_category li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #ccc;
}
.menu_category li:last-child {
    border-bottom: none;
}
.menu_category span {
    font-size: 1.1rem;
    color: #333;
}
.header_content {
    position: relative;
    text-align: center;
    margin-top: 150px;
}
.hidden {
    display: none;
}
.menu_btn {
    background: orangered;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 30px;
    display: inline-block;
    z-index: 10;
    transition: 0.3s;
}
.menu_btn:hover {
    background: #c23f00;
}
.menu h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: orangered;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    text-align: center;
}
.menu p {
    font-size: 1.1rem;
    color: #ddd;
    text-align: center;
    margin-bottom: 2rem;
}
/* ===== MENU SECTION ===== */
#menu {
    padding: 80px 5%;
    background: #111;
    color: #fff;
    text-align: center;
}

#menu h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: 700;
}

#menu p.section-subtitle {
    font-size: 1rem;
    color: #bbbbbb;
    margin-bottom: 40px;
}
.main_btn {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Make all buttons equal size */
.main_btn button,
.view-menu-btn {
    padding: 14px 32px;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    outline: none;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Default button style */
.btn {
    background: #ffffff;
    color: #111;
    border: 2px solid #c25700;
}

.btn:hover {
    background: #c25700;
    color: #fff;
}

.view-menu-btn {
    padding: 10px 25px;
    font-size: 14px;
    border-radius: 40px;
    border: 2px solid white;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: 0.3s ease;
}

.view-menu-btn:hover {
    background: rgba(255,255,255,0.4);
    color: black;
}


/* Play button */
.btn2 i {
    margin-right: 8px;
}

/* Cart button uniform sizing */
.cart-button {
    background: #fff;
    border: 2px solid #c25700;
    font-size: 20px;
}
.cart-button:hover {
    background: #c25700;
    color: #fff;
}
/* Entrance Animation */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animate each button in a smooth stagger */
.main_btn button,
.view-menu-btn,
.cart-button {
    opacity: 0;
    animation: fadeSlideUp 0.9s ease forwards;
}

/* Stagger delays */
.main_btn button:nth-child(1) { animation-delay: 0.2s; }
.main_btn button:nth-child(2) { animation-delay: 0.4s; }
.main_btn button:nth-child(3) { animation-delay: 0.6s; }
.main_btn button:nth-child(4) { animation-delay: 0.8s; }

/* Menu Grid */
.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Menu Card */
.menu-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
    border: 1px solid #2a2a2a;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: #ffcc00;
}

/* Food Image */
.menu-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

/* Text Section */
.menu-info {
    padding: 20px;
    text-align: left;
}

.menu-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.menu-info p {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 12px;
}

/* Price & Button Row */
.menu-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffcc00;
}

/* Add to Cart Button */
.menu-btn {
    background: #ffcc00;
    color: #111;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s ease;
    border: none;
}

.menu-btn:hover {
    background: #e6b800;
}
.view_menu_btn {
    display: inline-block;
    padding: 14px 32px;
    background: #c25700;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
}
.view_menu_btn:hover {
    background: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}



/*services*/
.sec{
    padding: 8% 0 3% 0;
    width: 85%;
    margin: auto;
}
.head{
    text-align: center;
}
.heading span{
    color: orangered;
}
.head .heading{
    font-family: 'lato', sans-serif;
}
.head .heading_1{
    font-family: "Playwrite AU TAS", cursive;
    color: aliceblue;
    font-size: 1.4em;
}
.boxes{
    margin-top: 4rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3,1fr);
}
.box{
    text-align: center;
    padding: 5% 0;
    box-shadow: rgba(0, 0, 0, 1.35) 0 5px 15px;
    border: 2px solid transparent;
}
.box img{
    width: 150px;
}
.box p{
    max-width: 275px;
    margin-inline: auto;
    text-align: center;
    line-height: 1.75rem;
    color: #888;
}
.box h4{
    margin: 1rem;
    font-size: 1.7rem;
    font-weight: 700;
}
.box:hover{
    border: 2px solid #fff;
    cursor: pointer;
    border-radius: 10px;
}
/*about*/
/* ===== About Section ===== */
.sec.about {
    background-color: #1a1110;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.sec.about .about_heading {
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.sec.about .heading_1 {
    font-size: 1.5rem;
    color: #ff8800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sec.about .heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.sec.about .heading span {
    color: #ff8800;
}

.sec.about .para {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== About Boxes ===== */
.about_box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about_box .box1 {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s, background 0.3s;
}

.about_box .box1:hover {
    transform: translateY(-5px);
    background: rgba(255,136,0,0.1);
}

.about_box .box1 img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin-bottom: 15px;
    border-radius: 10px;
}

.about_box .box1_text p {
    margin-bottom: 10px;
    color: orangered;
}

.about_box .box1_text li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 5px;
}

.about_box .box1_text p strong {
    color: #ff8800;
}

/* ===== Responsive Layout ===== */
@media screen and (min-width: 768px) {
    .about_box {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1200px) {
    .about_box {
        grid-template-columns: repeat(3, 1fr);
    }
}




.about_heading{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 6em;
    align-items: center;
}
.about .heading_1,
.about .heading{
    grid-column: 1;
}
.about .para{
    grid-column: 2;
    text-align: right;
    color: #777;
}
.about_box{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2em;
    margin-top: 5%;
}
.para1{
    color: #ffeedc;
    padding-bottom: 5%;
}
.box1{
    background-color: #ffeedc;
    box-shadow: rgba(0,0,0,2.24) 0 3px 8px;
    border: 5px solid chocolate;
}
.box1 img{
    width: 100%;
}
.box1_text{
    padding: 4%;
}
.box1_text button:hover{
    color: #000;
}
.about_box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.box1 {
    background: #111; /* darker card */
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #222;
    padding: 0;
    transform: translateY(0);
    transition: transform .4s ease, box-shadow .4s ease, border .4s ease;
}

.box1:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.35);
    border: 1px solid #FF7A00;
}

/* Image inside cards */
.box1 img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-bottom: 1px solid #222;
}

/* Text area in cards */
.box1_text {
    padding: 18px;
    text-align: center;
}

.box1_text .para {
    margin-bottom: 15px;
    color: #e2e2e2;
}

/* Button inside cards */
.btn1 {
    background-color: #FF7A00;
    color: #fff;
    border-radius: 6px;
    border: none;
    padding: 8px 18px;
    cursor: pointer;
    transition: 0.3s;
}

.btn1:hover {
    background-color: #E56800;
    box-shadow: 0 0 15px rgba(255, 122, 0, 0.5);
}

/*contact*/
.contact-section {
    padding: 80px 20px;
    background-color: #1a1110;
    color: #fff;
    text-align: center;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.contact-info, .shibameals-info, .location-map {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.contact-section h2, .shibameals-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-section .contact-details p, 
.shibameals-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-section a, .shibameals-info a {
    color: #f9c74f;
    text-decoration: none;
}

.contact-section a:hover, .shibameals-info a:hover {
    text-decoration: underline;
}

.contact-btn {
    padding: 12px 30px;          /* spacing inside button */
    background-color: #25D366;   /* WhatsApp green */
    color: #fff;                 /* white text for contrast */
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    transition: 0.3s ease;
    min-width: 180px;            /* ensures the text fits */
}

.contact-btn:hover {
    background-color: #1ebe57;   /* darker green on hover */
}

.location-map iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 12px;
}

.shibameals-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* Mobile Adjustments */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/*footer*/
.footer_container{
    display: grid;
    gap: 4rem 2rem;
    grid-template-columns: repeat(4, 1fr);
}
.footer_logo img{
    max-width: 40px;
}
.footer_logo span{
    display: flex;
    font-size: 1.8rem;
    font-weight: 800;
}
.footer_col .footer_text{
    max-width: 350px;
    color: #999;
    margin: 2rem 0;
}
.footer_socials{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}.footer_socials a{
    font-size: 1.8rem;
    text-decoration: none;
    padding: 3%;
}
.footer_socials a:hover{
    background-color: orangered;
}
.footer_col h4{
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}
.footer_links{
    display: grid;
    gap: 1rem;
    list-style: none;
}
.footer_links a{
    text-decoration: none;
    color: #999;
}
.footer_links a:hover{
    color: orangered;
}
.footer_bar{
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
}
/*scroll-up*/
.top{
    background-color: orangered;
    font-size: 40px;
    padding: 0.5rem;
    position: fixed;
    border-radius: 10%;
    right: 5%;
    cursor: pointer;
    bottom: -50%;
}
.top:hover{
    transform: translateY(-.6rem);
}
.top.show{
    bottom: 8%;
}

@media only screen and (max-width:1050px){
    .about_heading{
        gap: 0 2em;
    }
    .about_box,.boxes{
        gap: 1em;
    }
    .box1_text .btn{
        padding: 9px;
        font-size: 15px;
    }
    .left_box .heading{
        font-size: 2.5em;
    }
}
@media only screen and (max-width:850px){
.nav_items{
    position: absolute;
    top: -1%;
    left: 0;
    width: 100%;
    padding: 5em 0em 2em 0;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 0.9rem;
    background-color: #000;
    transition: 0.5sec;
    z-index: -1;
    transform: translateY(-100%);
}
.nav_items.open{
    transform: translateY(0);
    }
.item{
        flex-direction: column;
    }
.nav_menu{
    display: block;
    font-size: 2em;
}
.boxes,.about_box{
    grid-template-columns: repeat(2,1fr);
}
.contact_box{
    grid-template-columns: 1fr;
}
/* Contact Form Styling */
form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input,
form textarea {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    font-size: 15px;
    color: #fff;
    outline: none;
    transition: 0.3s ease;
}

form input:focus,
form textarea:focus {
    border-color: #f0b429;
    box-shadow: 0 0 8px rgba(240, 180, 41, 0.5);
}

form textarea {
    min-height: 150px;
    resize: vertical;
}

form button {
    padding: 14px;
    background: #f0b429;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: #111;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

form button:hover {
    background: #ffd369;
    transform: scale(1.03);
}
.contact-container {
    max-width: 600px;
    margin: 60px auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.footer_container{
    grid-template-columns: repeat(3,1fr);
}
}
@media only screen and (max-width:660px){
.about_heading{
    grid-template-columns: 1fr;
}
.about .para{
    grid-column: 1;
}
.about,.about_box{
    grid-template-columns: repeat(1,1fr);
}
.footer_container{
    grid-template-columns: repeat(2,1fr);
}
.navbar {
    padding: 2rem 2rem;
}
.heading {
    font-size: 3em;
}
.heading_1{
    font-size: 2em;
}
}
@media only screen and (max-width:480px){
    .footer_container{
        grid-template-columns: repeat(1,1fr);
    }
    .btn {
        padding: 9px;
        font-size: 15px;
    }
    .main {
        width: 90%;
        text-align: left;
    }
}
.order-btn {
    background: black;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-top: 5px;
}
#to-top {
    position: fixed;
  bottom: 18px;
  right: 18px;
  padding: 12px;
  border-radius: 50%;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: block;
}
/* SLIDE-IN CART */
#cartSidebar {
  position: fixed;
  top: 0;
  right: -350px; /* Hidden by default */
  width: 350px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: .4s;
  z-index: 9999;
}

#cartSidebar.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.close-btn {
  cursor: pointer;
  font-size: 22px;
}

#cartItems {
  list-style: none;
  padding: 0;
  flex: 1;
  overflow-y: auto;
}

#cartItems li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.cart-footer {
  border-top: 1px solid #ddd;
  padding-top: 10px;
}

.checkout-btn {
  width: 100%;
  background: black;
  color: white;
  padding: 10px;
  border: none;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 6px;
}

.cart-button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 22px;
}
/* ===== HERO SECTION ===== */
.hero {
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80");
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* dim to increase elegance */
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.hero-btn {
  padding: 12px 32px;
  border: 1.5px solid white;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: 0.4s;
}

.hero-btn:hover {
  background: white;
  color: black;
}
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: white;
}

/* Slideshow only inside hero */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: slideShow 20s infinite;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    z-index: -1;
}

/* Your hero text */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding-top: 200px;
}
@keyframes slideShow {
  0% { background-image: url("images/pancakes.jpeg"); }
  25% { background-image: url("images/tablesetup - Copy.jpeg"); }
  50% { background-image: url("images/fullbreakfast.jpg"); }
  75% { background-image: url("images/burger.jpeg"); }
  100% { background-image: url("images/pancakes.jpeg"); }
}

/* ===== LUXURY NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.35); /* transparent elegant black overlay */
  backdrop-filter: blur(6px); /* slight glass effect */
  z-index: 1000;
  transition: 0.4s ease;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.85); /* darker when scrolling */
}

nav a {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-decoration: none;
}

/* Navbar item hover underline effect */
.nav_items li {
  list-style: none;
  position: relative;
  margin-left: 35px;
}

.nav_items li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.nav_items li a:hover::after {
  width: 100%;
}
html {
  scroll-behavior: smooth;
}
/* NAVBAR Icons */
.social-icons-nav {
  display: flex;
  gap: 12px;
  margin-left: 20px;
}

.social-icons-nav a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
}

.social-icons-nav a:hover {
  color: #ffb100; /* gold highlight */
}

/* FOOTER Icons */
.social-icons-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}

.social-icons-footer a {
  color: #ffffff;
  font-size: 24px;
  transition: 0.3s ease;
}

.social-icons-footer a:hover {
  color: #ffb100;
}

.delete-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

.delete-btn:hover {
    background: #cc0000;
}
a[href="orders.html"]:hover {
    background: #ff5500;
}
#orderForm input,
#orderForm textarea {
    color: black;          /* text color inside inputs */
    background: white;   /* slightly lighter dark background for inputs */
    border: none;
    border-radius: 15px;
    padding: 10px;
}

#orderForm input::placeholder,
#orderForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.7); /* placeholder text color */
}

/* Background Slideshow */
.bg-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  animation: slideShow 20s infinite;
}

/* IMAGE + TEXT MENU CARD DESIGN */
.menu-item {
    display: flex !important;
    align-items: center !important;
    background: rgba(255,255,255,0.05) !important;
    padding: 10px !important;
    border-radius: 10px !important;
    margin: 10px 0 !important;
    cursor: pointer !important;
    transition: 0.2s ease-out;
}

.menu-item:hover {
    background: rgba(255,255,255,0.15) !important;
}

.menu-item img {
    width: 85px !important;
    height: 75px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    margin-right: 15px !important;
}

.menu-item .info .name {
    font-size: 18px !important;
    font-weight: bold !important;
    margin: 0 !important;
    color: white !important;
}

.menu-item .info .price {
    font-size: 16px !important;
    opacity: 0.9 !important;
    margin: 0 !important;
    color: #ffb77a !important;
}

/* Make it responsive */
@media (max-width: 600px) {
    .menu-item img {
        width: 70px !important;
        height: 60px !important;
    }
    .menu-item .info .name {
        font-size: 16px !important;
    }
}
/* NAVBAR LOGO */
.nav-logo img {
    height: 50px;         /* small size for navbar */
    width: auto;
    object-fit: contain;
}

/* TOP LOGO ON MENU PAGE */
.menu-top-logo {
    text-align: center;
    margin-top: 20px;
}

.menu-top-logo img {
    height: 120px;        /* bigger on menu page */
    width: auto;
    object-fit: contain;
}

/* NAVBAR DESIGN */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    padding: 10px 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}
.category-nav {
    position: sticky;
    top: 0;
    background: #1a1110;
    padding: 10px 0;
    z-index: 100;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.category-nav button {
    background: rgba(255,255,255,0.08);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
}

.category-nav button:hover {
    background: #ff8800;
}

.category-nav::-webkit-scrollbar {
    display: none;
}
.menu-category {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.menu-category h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.price {
    font-weight: bold;
}

.Menu-title {
    font-size: 3rem;
    text-align: center;
    color: #ff7a00;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 30px 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.Menu-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #ffffff;
    border-radius: 5px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
#mobile_nav {
    display: none;
}

.logo img {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.9));
}