@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*  Root */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-dark: #121212;
    --bg-card: #1c1c1c;
    --primary-orange: #c38b2e;
    --accent-red: #b05a1c;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Nav bar*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:5px 5% ;
    background-color: rgba(179, 115, 42, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
    margin: 8px 0 8px;
    border-radius: 40px;
}

.navbar .logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
}

.navbar .logo span {
    color: var(--primary-orange);
}



.navbar nav ul {
    display: flex;
    list-style: none;
}

.navbar nav ul li {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.navbar nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
   
    display: inline-flex;
    align-items: center;
    
}

.navbar nav ul li a:hover{
    color: var(--primary-orange);
}


.logo ul {
    display: flex;              
    align-items: center;        
    list-style: none;           
    margin: 0;
    padding: 0;
}

.logo li {
    margin: 0 10px 0 0;         
}

.admin-icon{
    width: 65px;                
    height: auto;               
    display: block;     
    border-radius: 50%;                  
}

.logo h1 {
    margin: 0;                  
    font-size: 24px;
    font-family: Poppins, Gill Sans Extrabold,sans-serif;            
}




/* Hero Section*/
.hero-carousel {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    border-radius: 30px;
}

.hero-carousel__slides {
    display: grid;
}

.hero-carousel__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-carousel__slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-carousel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.7));
}

.hero-carousel__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 70vh;
    padding: 0 30px;
    text-align: center;
}

.hero-carousel__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary-orange);
    font-size: 14px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero-carousel__content h1 {
    font-size: clamp(2.8rem, 4vw, 4.4rem);
    margin-bottom: 20px;
    line-height: 1.05;
}

.hero-carousel__subtitle {
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-carousel__controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.hero-carousel__arrows {
    position: absolute;
    inset: auto 20px 20px auto;
    top: 50%;
    width: calc(100% - 40px);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 2;
}

.carousel-arrow {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-arrow:hover {
    background: rgba(224, 77, 23, 0.95);
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.carousel-dot:hover,
.carousel-dot.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.1);
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(120deg, var(--primary-orange), var(--accent-red));
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
}

/* Categories Section */
.categories-section {
    padding: 60px 8%;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

.categories-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}
.categories-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 10px auto 0;
}


.categories-intro {
    color: var(--text-muted);
    margin-bottom: 35px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.category-card {
    display: block;
    background-color: var(--bg-card);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: left;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(255, 69, 0, 0.12);
}

.menu-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.category-card__icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: rgba(255, 69, 0, 0.12);
    margin-bottom: 18px;
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.category-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Menu*/
.signature-dishes {
    padding: 60px 8%;
    text-align: center;
}

.signature-dishes h2 {
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
}

.signature-dishes h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 10px auto 0;
}

.dishes-grid {
     display: flex;
    flex-wrap: nowrap; 
    gap: 24px;
    align-items: stretch;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.dish-card {
    position: relative;
    display: flex;
    flex: 0 0 calc(33.333% - 24px); 
    flex-direction: column;
    height: 100%;
    padding: 0;
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
    
}
.slider-container {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}


.offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6600;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}
.prev, .next {
  background: #333;
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 10px;
  z-index: 2;
}

.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(195, 139, 46, 0.16);
    border-color: rgba(195, 139, 46, 0.5);
    .original-price {
        text-decoration: line-through; /* add the strike-through */
    }
}

.dish-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.08);
   
}

.dish-card h3 {
    font-size: 20px;
    margin: 18px 18px 8px;
}

.dish-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 18px 14px;
    min-height: 58px;
    overflow: hidden;
    line-height: 1.6;
}

.dish-card .price {
    margin: auto 18px 18px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-orange);
}

.dish-hero {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dish-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.dish-hero__content {
    position: relative;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
}

.dish-hero__label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--primary-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.dish-hero__content h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 20px;
}

.dish-hero__price {
    color: var(--text-muted);
    font-size: 18px;
}

.dish-detail-content {
    padding: 60px 8%;
    display: flex;
    justify-content: center;
}

.dish-detail-card {
    max-width: 780px;
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.dish-detail-card h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.dish-detail-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.dish-detail-card .btn-primary {
    display: inline-block;
}


/* Menu Category Page */
.menu-banner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
   
}

.menu-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7), rgba(0,0,0,0.35));
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 40px 20px;
}

.banner-content h1 {
    font-size: clamp(2.4rem, 4vw, 3.5rem);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.banner-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}

.menu-page-section {
    padding: 60px 8% 80px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    margin-top: 10px;
    border-radius: 999px;
}

.menu-items-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.menu-item-col {
    display: flex;
}

.menu-card {
    height: 100%;
    background: linear-gradient(180deg, rgba(28,28,28,0.98), rgba(18,18,18,0.98));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(195, 139, 46, 0.16);
    border-color: rgba(195, 139, 46, 0.5);
}

.menu-card .card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: block;
}

.menu-card .card-body {
    padding: 22px 22px 26px;
}

.menu-card h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.menu-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .menu-items-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .menu-items-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.site-footer {
    background-color: rgba(179, 115, 42, 0.25);
    padding: 40px 0% 5px;
    border-top: 1px solid #2a2a2a;
    text-align: center;
}

.footer-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-grid h4 {
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-grid p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.footer-grid a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: var(--primary-orange);
}

.copy-text {
    background-color: rgba(39, 20, 20, 0.315);
    color: #666565;
    font-size: 12px;
    border-top: 1px solid #2a2a2a;
    border-radius: 0 0 50px 50px;
    padding-top: 10px;
}


.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}



@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .navbar nav ul li {
        margin: 0 15px;
    }
}