:root {
    --blue-marine: #0D3B66;
    --beige-sand: #F4E9CD;
    --white-shell: #FFFFFF;
    --green-algae: #3B6978;
}

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

body {
    font-family: 'Lora', serif;
    background-color: var(--white-shell);
    color: var(--blue-marine);
}

/* Navigation */
.navbar {
    background-color: var(--blue-marine);
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Pacifico', cursive;
    color: var(--white-shell);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--white-shell);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: var(--beige-sand);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 59, 102, 0.4);
}

.hero-content {
    position: relative;
    color: var(--white-shell);
}

.hero-content h2 {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    padding: 5rem 2rem;
    background-color: var(--beige-sand);
}

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

.product-card {
    background: var(--white-shell);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    font-family: 'Pacifico', cursive;
    padding: 1rem;
    color: var(--blue-marine);
}

/* History Section */
.history {
    padding: 5rem 2rem;
    background-color: var(--white-shell);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.text-content {
    padding: 2rem;
    background: var(--beige-sand);
    border-radius: 10px;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: var(--beige-sand);
}

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

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

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 2px solid var(--blue-marine);
    border-radius: 5px;
    font-family: 'Lora', serif;
}

.contact-form button {
    background-color: var(--blue-marine);
    color: var(--white-shell);
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--green-algae);
}

/* Footer */
footer {
    background-color: var(--blue-marine);
    color: var(--white-shell);
    padding: 3rem 2rem;
}

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

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

.social-icons a {
    color: var(--white-shell);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--beige-sand);
}

/* Menu Burger pour Mobile */
.menu-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-burger span {
    width: 30px;
    height: 3px;
    background-color: var(--white-shell);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-burger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--blue-marine);
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .contact-container,
    .history-content {
        grid-template-columns: 1fr;
    }
}
