/* Base Styles */
:root {
    --sage-green: #88A096;
    --light-beige: #F5F1ED;
    --gold: #D4AF37;
    --dark-text: #333333;
    --gray-text: #666666;
    --button-green: #556B2F;
    --button-text: #FFFFFF;
    --button-hover: #D4AF37;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-beige);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding-bottom: 0;
}
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--dark-text);
}

a {
    text-decoration: none;
    color: inherit;
}
/* Navigation Bar */
custom-navbar {
    display: block;
    background-color: var(--sage-green);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* Hero Section */
.hero-section {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://huggingface.co/spaces/Codeadevlopment09/le-jardin-gourmand-d-am-lie/resolve/main/images/ChatGPT%20Image%2012%20nov.%202025%2C%2022_44_17.png');
    background-size: cover;
    background-position: center center;
display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    margin-top: 60px;
    padding-left: 2rem;
}
.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #f8f8f8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
}

.hero-content h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(2px);
    border-radius: 5px;
    z-index: -1;
}
.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #f8f8f8;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(1px);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}
.text-center {
    text-align: center;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.btn-primary {
    background-color: #556B2F;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
}
/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 4rem 0 4rem 2rem;
    padding: 0 2rem;
}
.section-header {
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.divider {
    width: 100px;
    height: 2px;
    background-color: var(--gold);
    margin: 0;
}
/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--gray-text);
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials-section {
    background-color: white;
    padding: 4rem 0;
}

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

.testimonial-card {
    background-color: var(--light-beige);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
}
/* Page Header (for other pages) */
.page-header {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://huggingface.co/spaces/Codeadevlopment09/le-jardin-gourmand-d-am-lie/resolve/main/images/ChatGPT%20Image%2012%20nov.%202025%2C%2022_44_17.png');
    background-size: cover;
    background-position: center center;
display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    margin-top: 60px;
    padding-left: 2rem;
}
.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: left;
    margin-left: 0;
    color: #f8f8f8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
}

.header-content h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(2px);
    border-radius: 5px;
    z-index: -1;
}
.header-content p {
    font-size: 1.3rem;
    text-align: left;
    margin-left: 0;
    color: #f8f8f8;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
    background: rgba(0,0,0,0.15);
    backdrop-filter: blur(1px);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
}
/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.team-section {
    text-align: left;
    margin-top: 4rem;
    margin-left: 0;
}
.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.team-member {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--gold);
    font-weight: 500;
}

/* Gallery Page Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Menu Page Styles */
.menu-section {
    margin-bottom: 2rem;
}
.menu-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.menu-item:hover {
    transform: scale(1.01);
}
.menu-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--sage-green);
}
.menu-item-content p {
    color: var(--gray-text);
    margin: 0;
}
.price {
    font-weight: 600;
    color: var(--gold);
    font-size: 1.1rem;
    margin-left: 0.5rem;
}
/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info h2, .contact-form h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--sage-green);
    font-size: 1.2rem;
    width: 25px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--sage-green);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-container {
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer */
custom-footer {
    display: block;
    background-color: var(--sage-green);
    color: white;
    padding: 2rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .story-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image, .story-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p, .header-content p {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 0.5rem 1.25rem;
    }
}