:root {
    --primary: #a06235;
    --primary-dark: #7d4c29;
    --secondary: #f5d6a7;
    --accent: #e67e22;
    --dark: #333;
    --light: #f9f5f0;
    --text: #4a4a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--dark);
    color: white;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fas, .fab {
    display: inline-block;
    text-align: center;
  }
  
  /* Logo icon styling */
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent); /* Changed from white to your accent color */
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo .fas {
    margin-right: 8px;
    font-size: 28px;
    color: var(--accent); /* Ensuring the icon matches the text color */
}

.logo-icon {
    margin-right: 8px;
    font-size: 28px;
}

nav ul {
    display: flex;
    list-style-type: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover, 
nav ul li a.active {
    background-color: var(--accent);
}

.book-btn {
    background-color: var(--accent);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #d35400;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1200/600');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 60px;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background-color: var(--accent);
    color: white;
}

.primary-btn:hover {
    background-color: #d35400;
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* About Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    margin: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--text);
}

/* Services Section */
.services-section {
    background-color: var(--secondary);
    padding: 80px 0;
}

.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Service icon styling */
.service-icon .fas {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
  }

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-description {
    color: var(--text);
    line-height: 1.6;
}


/* ✅ MENU SECTION STYLES */
#menu {
    padding: 80px 0;
    background-color: var(--light);
}

/* ✅ Menu Category Section */
.menu-category-section {
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.menu-category-section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 24px;
    color: var(--primary-dark);
}

/* ✅ Wrapper for Menu Items */
.menu-grid-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* ✅ Each page contains exactly 4 menu items in one row */
.menu-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
    display: none; /* Hide all pages by default */
}

.menu-page-wrapper.active {
    display: flex;
}

/* ✅ Individual Menu Item Cards */
.menu-item {
    width: 220px;  /* Fixed width */
    height: 300px; /* Fixed height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 15px;
    text-align: center;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-img {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}

/* ✅ Menu Item Content */
.menu-content {
    padding: 10px;
    text-align: center;
}

.menu-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.menu-price {
    font-weight: bold;
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 5px;
}

.menu-category {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

/* ✅ Slider Navigation Buttons */
.menu-nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

/* ✅ Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.slider-prev {
    left: -50px;
}

.slider-next {
    right: -50px;
}

/* ✅ Wrapper for Scrolling Categories */
.menu-category-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.menu-category-wrapper::-webkit-scrollbar {
    display: none;
}

/* ✅ Auto-Scroll Animation */
@keyframes slide-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes slide-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* ✅ Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .menu-page-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .menu-item {
        width: 180px;
    }

    .slider-prev {
        left: -30px;
    }

    .slider-next {
        right: -30px;
    }
}


/* Contact Section */
.contact-section {
    background-color: var(--dark);
    color: white;
    padding: 80px 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    margin-right: 40px;
}

.contact-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Contact icon styling */
.contact-icon .fas {
    margin-right: 15px;
    font-size: 24px;
    color: var(--accent);
  }

.contact-text {
    font-size: 16px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #aaa;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-column {
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-title {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-links {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Contact icon styling */
.contact-icon .fas {
    margin-right: 15px;
    font-size: 24px;
    color: var(--accent);
  }
  
/* Social icons wrapper */
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px; /* Adds consistent spacing between icons */
}

/* Individual social icon styling */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
  
  .social-icon .fab {
    font-size: 16px;
  }
  
  .social-icon:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
  }

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
}

/* Search Bar */
.search-container {
    position: relative;
    margin-left: auto;
    margin-right: 20px;
}

.search-input {
    padding: 8px 12px;
    border-radius: 4px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    width: 200px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    width: 250px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-icon .fas {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
  }
  
/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 5px 10px 5px 0;
    }
    
    .hero {
        height: 400px;
        margin-top: 150px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .search-container {
        margin-top: 15px;
        width: 100%;
    }
    
    .search-input {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        margin-right: 0;
        margin-bottom: 40px;
    }
}
