body {
    background-color: #121212;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

/* Fix Navbar Space Issue */
.navbar {
    margin-bottom: 0 !important;
}

.hero-section {
    margin-top: 0 !important;
}

/* Or even better - remove all default margins */
.hero-section .container-fluid {
    margin-top: 0;
    padding-top: 0;
}

.hero-section .row {
    margin-top: 0;
}

.hero-image {
    margin-top: 0;
}

/* Category Titles */
.category-title {
    color: #ffc107;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-weight: 300;
    font-size: 2rem;
}

/* Chef Cards */
.chef-card {
    border: none;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 15px;
}

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

.chef-img {
    height: 300px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

.chef-card:hover .chef-img {
    transform: scale(1.05);
}

.card-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.chef-specialty {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.card-text {
    text-align: center;
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.5;
}

.chef-signature {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #444;
}

/* Signature Dishes Styles */
.dish-card {
    transition: transform 0.3s ease;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
}

.dish-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
}

.dish-img {
    transition: transform 0.3s ease;
}

.dish-card:hover .dish-img {
    transform: scale(1.05);
}

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

/* Footer */
.footer1 {
    background-color: #343a40;
}

.footer2 {
    padding: 1rem 0;
}

.footer3, .footer4 {
    margin: 5px 0;
    color: #fff;
    text-align: center;
}

/* Loading Animation */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 17px;
    }

    .category-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .card-title {
        font-size: 16px;
        text-align: center;
    }

    .card-text {
        font-size: 13px;
        text-align: center;
    }

    .chef-img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .chef-card {
        margin-bottom: 18px;
    }

    .navbar-text {
        font-size: 11px;
        text-align: center;
        padding-top: 6px;
    }

    /* Responsive dish cards */
    .dish-card {
        margin-bottom: 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}