/* ############ */
/* Global */
/* ############ */
* {
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
    scroll-behavior: smooth;
}

:root {
    --accent: #d32f2f;
    --accent2: #b71c1c;
    --accent-light: #ffcdd2;
    --bg: #fff;
    --text: #333;
    --text-light: #666;
    --gray: #f5f5f5;
    --border: #e0e0e0;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

section {
    padding: 80px 10%;
}

img {
    width: 100%;
    height: auto;
}

.btn {
    padding: 12px 24px;
    background: var(--accent);
    color: var(--bg);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: white;
}

.btn-inscription {
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 10px;
}

.section-heading {
    margin-bottom: 3rem;
    text-align: center;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--text);
    letter-spacing: 0.5px;
    margin: 10px 0;
}

.section-heading span {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.section-description {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ############ */
/* Navigation */
/* ############ */

nav {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: var(--bg);
}

.navigation {
    display: flex;
    align-items: center;
}

.navigation a {
    color: var(--text);
    padding: 1rem 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation a:hover,
.navigation a.active {
    color: var(--accent);
}

.logo {
    font-weight: 700;
    font-size: 2rem;
    color: var(--text);
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

#burger-menu {
    font-size: 1.5rem;
    color: var(--accent);
    cursor: pointer;
    display: none;
    transition: all 0.3s ease;
}

#burger-menu:hover {
    color: var(--accent2);
}

/* ############ */
/* Home */
/* ############ */

.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                no-repeat center/cover url('./images/bg.jpg');
    color: white;
    text-align: center;
    padding-top: 80px;
}

.home-content {
    max-width: 800px;
    margin-bottom: 3rem;
}

.home .subtitle {
    display: inline-block;
    color: var(--accent);
    background: var(--accent-light);
    border-radius: 30px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home h1 {
    font-size: 3.5rem;
    margin: 1rem 0;
    line-height: 1.2;
}

.home h1 span {
    color: var(--accent);
}

.home p {
    margin: 1.5rem 0 2.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.home-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.home-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* ############ */
/* Services */
/* ############ */

.services {
    background: var(--gray);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.services-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.services-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    font-size: 1.8rem;
}

.services-box h3 {
    margin: 1rem 0;
    color: var(--text);
}

.services-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    text-align: left;
    margin: 1.5rem 0;
}

.service-features li {
    margin: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--accent);
    margin-right: 10px;
}

.btn-service {
    color: var(--accent);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-service:hover {
    color: var(--accent2);
    transform: translateX(5px);
}

/* ############ */
/* Chefs */
/* ############ */

.chefs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.chefs-box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.chefs-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.chef-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.chef-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.chefs-box:hover .chef-image img {
    transform: scale(1.05);
}

.chef-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.chefs-content {
    padding: 2rem;
}

.chefs-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.chef-specialty {
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.chefs-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.chef-social {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.chef-social a {
    width: 40px;
    height: 40px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
}

.chef-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* ############ */
/* Contact */
/* ############ */

.contact {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-item p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin: 0.8rem 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form select {
    cursor: pointer;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.form-footer p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-submit {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* ############ */
/* Footer */
/* ############ */

footer {
    background: #1a1a1a;
    color: white;
    padding: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding: 4rem 10%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin: 0.8rem 0;
}

.footer-col ul a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--accent);
}

.newsletter {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border-radius: 30px 0 0 30px;
    border: none;
}

.newsletter button {
    background: var(--accent);
    color: white;
    padding: 0 20px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: var(--accent2);
}

.copy {
    padding: 1.5rem;
    text-align: center;
    background: #111;
    color: #888;
    font-size: 0.9rem;
}

/* ############ */
/* Responsive */
/* ############ */

@media screen and (max-width: 1024px) {
    section {
        padding: 60px 5%;
    }
    
    .home h1 {
        font-size: 2.8rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        padding-right: 0;
    }
}

@media screen and (max-width: 768px) {
    #burger-menu {
        display: block;
    }
    
    h1 {
        font-size: 2.2rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .navigation {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        width: 280px;
        min-height: calc(100vh - 70px);
        box-shadow: -2px 0 5px rgba(0,0,0,.2);
        padding: 2rem;
        transition: 0.3s ease-in-out;
        background: var(--bg);
        z-index: 999;
    }
    
    .navigation.active {
        right: 0;
    }
    
    .navigation a {
        display: block;
        margin: 1rem 0;
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--border);
    }
    
    .navigation a:last-child {
        border-bottom: none;
    }
    
    .home-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .home-stats {
        gap: 2rem;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 50px 5%;
    }
    
    .home h1 {
        font-size: 1.8rem !important;
    }
    
    .section-heading h2 {
        font-size: 1.8rem !important;
    }
    
    .services-container,
    .chefs-container {
        grid-template-columns: 1fr;
    }
    
    .services-box,
    .chefs-box {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}