/* Reset and base styles - Cache Buster v2 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #2d2d2d;
    background: linear-gradient(135deg, #faf5f0 0%, #fff8f3 100%);
    overflow-x: hidden;
    padding-top: 45px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 0.6rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar a:hover {
    color: #F4E4BC;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    padding: 1.2rem 0;
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    max-width: 125px;
    height: auto;
}

.tagline {
    color: #8B4513;
    font-size: 0.85rem;
    margin-top: -3px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

 /* Navigation Styles */
 .nav-menu {
     display: flex;
     list-style: none;
     gap: 2.5rem;
     align-items: center;
 }

 .nav-item {
     position: relative;
 }

 .nav-link {
     color: #8B4513;
     text-decoration: none;
     font-weight: 600;
     font-size: 0.95rem;
     letter-spacing: 0.5px;
     position: relative;
     padding: 0.8rem 1.5rem;
     border-radius: 30px;
     transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
     text-transform: uppercase;
     display: block;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 50%;
     width: 0;
     height: 2px;
     background: linear-gradient(90deg, #D2691E, #CD853F);
     transition: all 0.4s ease;
     transform: translateX(-50%);
 }

 .nav-link:hover,
 .nav-link.active {
     color: #D2691E;
     background: rgba(210, 105, 30, 0.08);
     transform: translateY(-2px);
 }

 .nav-link:hover::after {
     width: 100%;
 }

 /* Submenu Styles */
 .nav-item.has-submenu .nav-link::before {
     content: '▼';
     font-size: 0.7rem;
     margin-left: 0.5rem;
     transition: transform 0.3s ease;
 }

 .submenu {
     position: absolute;
     top: 100%;
     left: 0;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(20px);
     min-width: 200px;
     border-radius: 15px;
     box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
     border: 1px solid rgba(139, 69, 19, 0.1);
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
     list-style: none;
     padding: 0.5rem 0;
     margin-top: 0.5rem;
     z-index: 1002;
 }

 .submenu-item {
     margin: 0;
 }

 .submenu-link {
     display: block;
     padding: 0.8rem 1.5rem;
     color: #8B4513;
     text-decoration: none;
     font-weight: 500;
     font-size: 0.9rem;
     text-transform: none;
     transition: all 0.3s ease;
     border-radius: 0;
 }

 .submenu-link:hover {
     background: rgba(210, 105, 30, 0.1);
     color: #D2691E;
     transform: translateX(5px);
 }

 /* Desktop hover behavior */
 @media (min-width: 769px) {
     .nav-item.has-submenu:hover .submenu {
         opacity: 1;
         visibility: visible;
         transform: translateY(0);
     }

     .nav-item.has-submenu:hover .nav-link::before {
         transform: rotate(180deg);
     }
 }

 /* Mobile styles */
 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }

 .hamburger span {
     width: 25px;
     height: 3px;
     background-color: #8B4513;
     margin: 3px 0;
     transition: all 0.3s ease;
     border-radius: 2px;
 }

 .hamburger:hover span {
     background-color: #D2691E;
 }

 /* Mobile responsive */
 @media (max-width: 768px) {
     .hamburger {
         display: flex;
     }

     .nav-menu {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background: rgba(255, 255, 255, 0.98);
         backdrop-filter: blur(20px);
         flex-direction: column;
         padding: 1rem 0;
         box-shadow: 0 8px 32px rgba(139, 69, 19, 0.15);
         border-top: 1px solid rgba(139, 69, 19, 0.1);
         gap: 0;
     }

     .nav-menu.active {
         display: flex;
     }

     .nav-item {
         width: 100%;
     }

     .nav-link {
         color: #8B4513;
         margin: 0.5rem 1rem;
         width: calc(100% - 2rem);
         text-align: left;
     }

     .nav-link:hover,
     .nav-link.active {
         color: #D2691E;
         background: rgba(210, 105, 30, 0.1);
     }

     /* Mobile submenu - always visible when parent is active */
     .submenu {
         position: static;
         opacity: 1;
         visibility: visible;
         transform: none;
         box-shadow: none;
         background: rgba(210, 105, 30, 0.05);
         margin: 0;
         border-radius: 10px;
         margin: 0.5rem 1rem;
         border: 1px solid rgba(139, 69, 19, 0.1);
     }

     .submenu-link {
         padding: 0.6rem 1.2rem;
         font-size: 0.85rem;
     }

     .nav-item.has-submenu .nav-link::before {
         display: none;
     }
 }
/* Hero Section */
.hero {
    height: 600px;
    max-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.4) 0%, 
        rgba(210, 105, 30, 0.3) 50%, 
        rgba(205, 133, 63, 0.4) 100%),
        url('./assets/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    text-align: center;
    width: 100%;
}

.hero-text h2 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    text-align: center;
}

.hero-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #D2691E 0%, #CD853F 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.25);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(210, 105, 30, 0.35);
    background: linear-gradient(135deg, #CD853F 0%, #D2691E 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #fff;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, #CD853F 0%, transparent 100%);
    opacity: 0.1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
    line-height: 1.2;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D2691E, #CD853F);
    border-radius: 2px;
}

.lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    background: linear-gradient(145deg, #fff 0%, #faf8f5 100%);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(210, 105, 30, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(210, 105, 30, 0.05), transparent);
    transition: left 0.6s;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
}

.feature i {
    font-size: 3rem;
    color: #D2691E;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1);
    color: #8B4513;
}

.feature h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.grid-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 3px solid rgba(210, 105, 30, 0.1);
}

.grid-img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.2);
    border-color: rgba(210, 105, 30, 0.3);
}

/* Specialties Section */
.specialties {
    padding: 6rem 0;
    background: linear-gradient(135deg, #faf8f5 0%, #fff 100%);
    position: relative;
}

.specialties::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0deg, #8B4513 0%, transparent 100%);
    opacity: 0.05;
}

.specialties h2 {
    text-align: center;
    font-size: 3.2rem;
    color: #8B4513;
    margin-bottom: 4rem;
    font-weight: 800;
    position: relative;
}

.specialties h2::before {
    content: '✦';
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    color: #D2691E;
    font-size: 2rem;
}

.specialties h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #D2691E, #CD853F, #D2691E);
    border-radius: 2px;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.12);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(210, 105, 30, 0.1);
    position: relative;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #D2691E, #CD853F, #D2691E);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.specialty-card:hover::before {
    opacity: 1;
}

.specialty-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.18);
    border-color: rgba(210, 105, 30, 0.25);
}

.specialty-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 2.5rem;
}

.card-content h3 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.card-content p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Contact Section - Fixed Colors for Better Readability */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: white; /* Ensure heading is white */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    color: #F4E4BC; /* Light cream color for icons */
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #F4E4BC; /* Light cream color for subheadings */
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: white; /* White for main text */
    opacity: 0.95;
}

.contact-item a {
    color: #F4E4BC; /* Light cream for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: white;
    text-decoration: underline;
}

.delivery-platforms {
    margin-top: 2rem;
}

.delivery-platforms h3 {
    color: #F4E4BC; /* Light cream for platform heading */
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.platform {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white; /* White text for platform buttons */
    font-weight: 500;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #D2691E !important;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section p,
.footer-section li,
.footer-section div,
.footer-section span {
    color: #ffffff !important;
    font-weight: 400;
}

.footer-section a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F4E4BC !important;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #CD853F 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Fade in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Contact Page Styles - Updated */
.contact-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(210, 105, 30, 0.02) 100%),
                repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(139, 69, 19, 0.02) 10px, rgba(139, 69, 19, 0.02) 20px);
}

.contact-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 0 auto 0 auto;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.4s ease;
}

.contact-intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.15);
}

.contact-text {
    text-align: left;
}

.contact-text h2 {
    color: #8B4513;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: left;
}

.contact-text .lead {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
    max-width: 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
    text-align: left;
}

.contact-item i {
    font-size: 1.2rem;
    color: #D2691E;
    margin-top: 0.2rem;
    min-width: 20px;
}

.contact-item h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: #f4f4f4;
    margin: 0;
    line-height: 1.5;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ffa869;
    text-decoration: underline;
}

/* Contact image removed - using single column layout */

.hours-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(210, 105, 30, 0.03) 100%);
}

.hours-section h2 {
    text-align: center;
    color: #8B4513;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.hours-grid {
    display: flex;
    justify-content: center;
}

.hours-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
    max-width: 600px;
    width: 100%;
    transition: all 0.4s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.15);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #8B4513;
    font-size: 1.1rem;
}

.time {
    color: #D2691E;
    font-weight: 500;
    font-size: 1.1rem;
}

.map-section {
    padding: 4rem 0;
}

.map-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.15);
}

.map-card h2 {
    color: #8B4513;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border-radius: 15px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.breadcrumb {
    margin-top: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

/* Menu Categories */
.menu-categories {
    padding: 4rem 0;
    background: #fff;
}

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

.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.08);
    border: 2px solid rgba(210, 105, 30, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border-color: rgba(210, 105, 30, 0.3);
    color: inherit;
    text-decoration: none;
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.category-content h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.category-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.category-arrow {
    color: #D2691E;
    font-size: 1.8rem;
    float: right;
    transition: all 0.4s ease;
    margin-top: -0.5rem;
}

.category-card:hover .category-arrow {
    transform: translateX(8px) scale(1.2);
    color: #8B4513;
}

/* Menu Items */
.menu-items {
    padding: 4rem 0;
    background: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu-item-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.menu-item-card:hover {
    transform: translateY(-10px);
}

.item-image {
    height: 250px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-content {
    padding: 2rem;
}

.item-content h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.item-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.item-details {
    margin-bottom: 1.5rem;
}

.includes,
.dietary {
    background: #f8f9fa;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

.item-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

/* Popular Items */
.popular-items {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
}

.popular-items h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 3rem;
    font-weight: 700;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.item-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
}

.item-info h3 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.item-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f7931e;
}

/* Catering Sections */
.catering-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
                url('./assets/cateringhero.webp');
    background-size: cover;
    background-position: center;
}

.catering-content {
    padding: 4rem 0;
    background: #fff;
}

.catering-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.catering-text h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.catering-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.catering-services {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
}

.catering-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.catering-features {
    padding: 4rem 0;
    background: #fff;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.features-list h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 2rem;
    font-weight: 700;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list i {
    color: #28a745;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.catering-contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.contact-card p {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.2rem;
    min-width: 20px;
}

.contact-item div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item strong {
    color: #8B4513;
    margin-right: 0.5rem;
}

.cta-buttons {
    margin-top: 2rem;
    text-align: center;
}

/* Category Info */
.category-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
}

.info-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 3rem;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.info-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Order Info */
.order-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.order-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.order-card h2 {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 700;
}

.order-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.order-details .contact-item {
    color: #666;
    font-size: 0.9rem;
}

.order-details .contact-item a {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 8px 32px rgba(139, 69, 19, 0.15);
        border-top: 1px solid rgba(139, 69, 19, 0.1);
    }
    
    .nav-menu .nav-link {
        color: #8B4513;
        margin: 0.5rem 1rem;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #D2691E;
        background: rgba(210, 105, 30, 0.1);
    }
    
    .logo {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .logo img {
        max-width: 100px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
    
    .contact-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .contact-text {
        text-align: center;
    }
    
    .contact-text h2 {
        text-align: center;
    }
    
    .contact-text .lead {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .contact-text h2 {
        font-size: 2rem;
    }
    
    .contact-text h2 {
        font-size: 2rem;
    }
    
    .hours-card {
        padding: 2rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .about-content,
    .contact-content,
    .catering-intro,
    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .specialties-grid,
    .categories-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem auto;
        display: block;
    }
    
    .platforms {
        justify-content: center;
    }
    
    .order-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .about h2,
    .specialties h2,
    .popular-items h2,
    .catering-services h2,
    .info-content h2 {
        font-size: 2rem;
    }
    
    .specialties-grid,
    .categories-grid,
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .item-content,
    .card-content,
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-card,
    .order-card {
        padding: 2rem;
        margin: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.hover-effect {
    transition: all 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Text selection */
::selection {
    background: rgba(255, 107, 53, 0.3);
    color: #333;
}

