:root {
    --primary-dark: #2D2206;
    --accent-orange: #D45534;
    --light-brown: #4A3B2D;
    --cream: #F5E6D3;
    --white: #FFFFFF;
    --dark-gray: #1A1A1A;
    --light-gray: #F8F8F8;
    --border-gray: #E8E8E8;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--light-brown) 100%);
    z-index: 1000;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo-text {
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-orange);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: 0.3s ease;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--light-brown) 50%, var(--accent-orange) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* ==================== HERO SECTION ==================== */
.hero {
    margin-top: 70px;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--light-brown) 50%, var(--accent-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
}

.shape1 {
    width: 300px;
    height: 300px;
    background-color: var(--cream);
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape2 {
    width: 250px;
    height: 250px;
    background-color: var(--accent-orange);
    bottom: 20%;
    right: 15%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape3 {
    width: 200px;
    height: 200px;
    background-color: var(--cream);
    top: 50%;
    right: 5%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-30px) translateX(15px); }
    50% { transform: translateY(-60px) translateX(-15px); }
    75% { transform: translateY(-30px) translateX(20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideInRight 1s ease-out;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== CTA BUTTONS ==================== */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 85, 52, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: calc(1rem - 2px) calc(2.5rem - 2px);
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 85, 52, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ==================== SECTION STYLING ==================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-brown);
    margin-top: 1rem;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--accent-orange);
}

.feature-card.premium-card {
    border-left: 4px solid var(--accent-orange);
    border-top: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 0.08;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--light-brown);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== MENU PREVIEW ==================== */
.menu-preview-section {
    padding: 5rem 2rem;
    background: var(--white);
    min-height: 60vh;
}

.menu-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.view-all-menu {
    text-align: center;
    margin-top: 2rem;
}

/* ==================== MENU SECTION ==================== */
.menu-section {
    padding: 5rem 2rem;
    min-height: 100vh;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-orange);
    background-color: transparent;
    color: var(--accent-orange);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange), #FF6B4A);
    z-index: -1;
    transition: left 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: var(--accent-orange);
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

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

.menu-item {
    background: linear-gradient(135deg, var(--white), var(--cream));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(212, 85, 52, 0.1);
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.menu-item.hidden {
    display: none;
}

.menu-item-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-dark), var(--light-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.menu-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(212, 85, 52, 0.2));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.menu-item-name {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-item-description {
    font-size: 0.9rem;
    color: var(--light-brown);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-price {
    font-size: 1.8rem;
    color: var(--accent-orange);
    font-weight: bold;
}

.menu-item-btn {
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 85, 52, 0.3);
    font-size: 0.9rem;
}

.menu-item-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 85, 52, 0.4);
}

.menu-item-btn:active {
    transform: scale(0.98);
}

/* ==================== ABOUT SECTION ==================== */
.about-preview-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.about-content h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    border-radius: 3px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--light-brown);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    color: var(--accent-orange);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--light-brown);
    font-size: 0.95rem;
    margin: 0;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-dark), var(--light-brown));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.image-placeholder.large {
    min-height: 300px;
}

.image-placeholder span {
    font-size: 6rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: var(--cream);
    font-size: 1.1rem;
}

/* ==================== CONTACT PREVIEW SECTION ==================== */
.contact-preview-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

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

.contact-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-orange);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--light-brown);
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* ==================== ABOUT FULL PAGE ==================== */
.about-full-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card {
    background: linear-gradient(135deg, var(--white), var(--cream));
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-orange);
}

.mission-card.large {
    grid-column: span 1;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-card h2,
.mission-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p {
    color: var(--light-brown);
    line-height: 1.8;
}

/* ==================== FOUNDER SECTION ==================== */
.founder-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

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

.founder-image {
    text-align: center;
}

.founder-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.founder-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    border-radius: 2px;
}

.founder-content p {
    font-size: 1.1rem;
    color: var(--light-brown);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.founder-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 85, 52, 0.3);
}

.founder-signature p {
    margin: 0.3rem 0;
}

.founder-signature p:first-child {
    font-weight: 600;
    color: var(--primary-dark);
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

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

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--accent-orange);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-card p {
    color: var(--light-brown);
    font-size: 0.95rem;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: linear-gradient(135deg, var(--white), var(--cream));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-dark), var(--light-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.gallery-item h3 {
    padding: 1.5rem 1rem 0;
    color: var(--primary-dark);
    font-weight: 600;
}

.gallery-item p {
    padding: 0.5rem 1rem 1.5rem;
    color: var(--light-brown);
}

/* ==================== RESTAURANT GALLERY ==================== */
.restaurant-gallery {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

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

.restaurant-gallery-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.restaurant-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.restaurant-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.restaurant-gallery-item p {
    padding: 1.5rem;
    color: var(--primary-dark);
    font-weight: 600;
}

/* ==================== CATERING SECTION ==================== */
.catering-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.catering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.catering-card {
    background: linear-gradient(135deg, var(--white), var(--cream));
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-orange);
}

.catering-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.catering-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.catering-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.catering-card p {
    color: var(--light-brown);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.catering-card ul {
    list-style: none;
    margin: 1rem 0;
}

.catering-card li {
    color: var(--light-brown);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.catering-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.catering-process {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.catering-process h3 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--light-brown);
    font-size: 0.9rem;
}

.catering-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--light-brown));
    border-radius: 12px;
    color: var(--white);
}

.catering-cta h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.blog-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    color: var(--white);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    text-align: center;
    z-index: 10;
    font-weight: 600;
    font-size: 0.85rem;
}

.blog-date .day {
    display: block;
    font-size: 1.3rem;
}

.blog-date .month {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-dark), var(--light-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.blog-card h3 {
    padding: 2rem 1.5rem 0;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.3rem;
}

.blog-excerpt {
    padding: 1rem 1.5rem;
    color: var(--light-brown);
    line-height: 1.6;
}

.blog-meta {
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--light-brown);
    border-bottom: 1px solid var(--border-gray);
    padding-bottom: 1rem;
}

.read-more {
    display: block;
    padding: 1.5rem;
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* ==================== CONTACT FORM SECTION ==================== */
.contact-info-section {
    padding: 4rem 2rem;
    background: var(--light-gray);
}

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

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--accent-orange);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--light-brown);
}

.contact-info-card a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.small-text {
    font-size: 0.85rem;
    opacity: 0.8;
}

.contact-form-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-wrapper h2,
.contact-map-wrapper h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.contact-form-wrapper h2::after,
.contact-map-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--dark-gray);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(212, 85, 52, 0.1);
}

.contact-form button {
    margin-top: 1rem;
    align-self: flex-start;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary-dark), var(--light-brown));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--white);
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.map-content {
    position: relative;
    z-index: 1;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: var(--cream);
    margin: 0.5rem 0;
}

/* ==================== SPECIAL SERVICES ==================== */
.special-services-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

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

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    color: var(--light-brown);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.faq-card {
    background: linear-gradient(135deg, var(--white), var(--cream));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-orange);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-card p {
    color: var(--light-brown);
    line-height: 1.6;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--light-brown) 100%);
    color: var(--white);
    text-align: center;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    white-space: nowrap;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-column h3,
.footer-column h4 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column p {
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

.footer-column ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.85;
}

.footer-column ul li a:hover {
    color: var(--accent-orange);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .menu-container,
    .gallery-grid,
    .gallery-item,
    .blog-grid,
    .catering-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .about-grid,
    .founder-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-card.large {
        grid-column: span 1;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero {
        margin-top: 60px;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .contact-info-card,
    .feature-card,
    .mission-card {
        padding: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-content p {
        font-size: 1rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--light-brown) 100%);
    z-index: 1000;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-orange);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: 0.3s ease;
}

/* ==================== HERO SECTION ==================== */
.hero {
    margin-top: 70px;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--light-brown) 50%, var(--accent-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
}

.shape1 {
    width: 300px;
    height: 300px;
    background-color: var(--cream);
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape2 {
    width: 250px;
    height: 250px;
    background-color: var(--accent-orange);
    bottom: 20%;
    right: 15%;
    animation: float 10s ease-in-out infinite reverse;
}

.shape3 {
    width: 200px;
    height: 200px;
    background-color: var(--cream);
    top: 50%;
    right: 5%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-30px) translateX(15px); }
    50% { transform: translateY(-60px) translateX(-15px); }
    75% { transform: translateY(-30px) translateX(20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideInRight 1s ease-out;
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 85, 52, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 85, 52, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ==================== MENU SECTION ==================== */
.menu-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--light-brown);
    margin-top: 1rem;
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-orange);
    background-color: transparent;
    color: var(--accent-orange);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange), #FF6B4A);
    z-index: -1;
    transition: left 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: var(--accent-orange);
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

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

.menu-item {
    background: linear-gradient(135deg, var(--white), var(--cream));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(212, 85, 52, 0.1);
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.menu-item.hidden {
    display: none;
}

.menu-item-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-dark), var(--light-brown));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.menu-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(212, 85, 52, 0.2));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.menu-item-name {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-item-description {
    font-size: 0.95rem;
    color: var(--light-brown);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-price {
    font-size: 1.8rem;
    color: var(--accent-orange);
    font-weight: bold;
}

.menu-item-btn {
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 85, 52, 0.3);
}

.menu-item-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 85, 52, 0.4);
}

.menu-item-btn:active {
    transform: scale(0.98);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-title {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
    border-radius: 3px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--light-brown);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--white), var(--cream));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--accent-orange);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-orange), #FF6B4A);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-weight: bold;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--light-brown);
    font-size: 0.95rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--light-brown) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-title::after {
    background: linear-gradient(90deg, var(--accent-orange), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-orange);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--white);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-container {
        grid-template-columns: 1fr;
    }

    .menu-item {
        max-width: 100%;
    }

    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
    }

    .about-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }
}
