:root {
    --primary-color: #1f5429;
    --secondary-color: #f9e6b3;
    --accent-color: #d00b28;
    --text-color: #333;
    --text-light: #f4f4f4;
    --bg-color: #ffffff;
    --bg-alt: #f8f9fa;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --border-radius: 12px;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s, backdrop-filter 0.3s, padding 0.3s, box-shadow 0.3s;
}

header.scrolled {
    background-color: rgba(31, 84, 41, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
}

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

.logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

.hero {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern.png');
    background-repeat: repeat;
    background-size: 530px;
    filter: blur(1px);
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 50%;
}

.tagline {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--secondary-color);
    font-style: italic;
}

.hero-text .btn {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

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

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.circle-bg {
    width: 470px;
    height: 470px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 1;
}

.floating-dish {
    width: 450px;
    height: 450px;
    object-fit: contain;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.chef-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.chef-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.chef-image {
    flex: 1;
    position: relative;
}

.chef-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.chef-name-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

.chef-name-overlay a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.chef-name-overlay a:hover {
    color: var(--accent-color);
}

.chef-text {
    flex: 1;
    flex: 1;
}

.chef-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.chef-features {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    opacity: 0.9;
}

.menu-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

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

.menu-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    background-color: #eee;
}

.menu-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-category {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.menu-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.menu-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.menu-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.add-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.add-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
}

footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.footer-address p {
    margin-bottom: 5px;
    opacity: 0.8;
}

.footer-address a {
    color: inherit;
    transition: color 0.3s;
}

.footer-address a:hover {
    color: var(--secondary-color);
}
.footer-address a:hover p {
    opacity: 1;
}

.social-links a {
    font-size: 1.5rem;
    margin-left: 15px;
    color: var(--secondary-color);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.copyright a {
    color: inherit;
    transition: 0.3s;
}

.copyright a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 15px 0;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        height: 80px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    nav a {
        font-size: 0.95rem;
    }

    .hero {
        padding: 40px 0;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
        margin-top: 20px;
        padding: 0 10px;
    }

    .hero h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

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

    .hero-image {
        width: 100%;
        height: auto;
        min-height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .circle-bg {
        width: 300px;
        height: 300px;
    }

    .floating-dish {
        width: 280px;
        height: 280px;
    }

    .chef-content {
        flex-direction: column;
        gap: 30px;
    }

    .chef-text {
        text-align: center;
    }
    
    .chef-text h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .chef-features {
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }

    .chef-name-overlay {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
        justify-content: center;
    }

    .social-links {
        margin-top: 0;
        display: flex;
        justify-content: center;
        gap: 15px;
    }
    
    .social-links a {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .menu-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }
    
    .circle-bg {
        width: 260px;
        height: 260px;
    }

    .floating-dish {
        width: 240px;
        height: 240px;
    }
}
