/* ========================================
   VARIABLES ET RESET
   ======================================== */
:root {
    --primary-color: #f9a825;    /* Jaune miel */
    --primary-dark: #c17900;
    --secondary-color: #558b2f;  /* Vert nature */
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.logo-script {
    font-family: 'Great Vibes', cursive;
    color: var(--primary-color);
    font-size: 5rem; /* un peu plus grand pour le style */
    font-weight: normal;
    letter-spacing: 1.5px;
    line-height: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* espace entre l'image et le texte */
}

.logo-img {
    height: 96px; /* adaptez cette taille selon vos besoins */
    width: auto;
    display: block;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

strong {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
}

.separator-large {
    height: 2px;
    background: var(--border-color);
    margin: 60px 0;
}

.section-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer-icon-apiculteur {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;  
}

/* NAVIGATION */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem !important;
    opacity: 0.9;
    margin-bottom: 30px !important;
}

/* SECTIONS GENERALES */
section {
    padding: 60px 0;
}

.presentation {
    background-color: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-text p {
	text-align: justify;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.content-text strong {
    color: var(--text-dark);
}

.content-image .image-placeholder {
    background-color: #e0e0e0;
    padding: 20px 20px;
    text-align: center;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* PRODUITS */
.products-preview {
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.product-detail {
    background-color: var(--bg-light);
}

.product-full {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.product-full.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.product-full.reverse .product-full-image {
    order: 2;
}

.product-full.reverse .product-full-content {
    order: 1;
}

.product-full-image .image-placeholder {
    background-color: #e0e0e0;
    padding: 20px 20px;
    text-align: center;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1.2rem;
    position: sticky;
    top: 100px;
}

.product-full-content h2 {
	text-align: justify;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-full-content h3 {
    text-align: justify;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-intro {
	text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.product-list {
    list-style: none;
    padding-left: 0;
}

.product-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
    color: var(--text-light);
}

.product-list li::before {
    content: '🌿';
    position: absolute;
    left: 0;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.feature {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* VALEURS */
.values {
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* INFO SECTION */
.info-section {
    background-color: var(--bg-light);
}

.info-section .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-box p {
	text-align: justify;
    color: var(--text-light);
    line-height: 1.8;
}

.info-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-box a:hover {
    text-decoration: underline;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* QUI SUIS-JE */
.about-content {
    background-color: var(--bg-light);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.about-image .image-placeholder {
    background-color: #e0e0e0;
    padding: 200px 20px;
    text-align: center;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
	text-align: justify;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-section {
	text-align: justify;
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.about-section p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.philosophy-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.philosophy-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.philosophy-item p {
	text-align: justify;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.ruchers-list,
.engagement-list {
    list-style: none;
    padding-left: 0;
}

.ruchers-list li,
.engagement-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
    color: var(--text-light);
}

.ruchers-list li::before {
    content: '🌳';
    position: absolute;
    left: 0;
}

.engagement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* OÙ ME TROUVER */
.locations {
    background-color: var(--bg-light);
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 0px;
}

.location-card.featured {
    border: 3px solid var(--primary-color);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.location-card h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.location-details p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.location-details ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.location-details li {
    padding: 5px 0;
    color: var(--text-light);
}

.location-note {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
    margin-top: 20px;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.market-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.market-card:hover {
    transform: translateY(-5px);
}

.market-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.market-card p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-top: 10px;
}

.badge.seasonal {
    background-color: var(--primary-color);
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.partner-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.partner-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.delivery-zone {
    background-color: var(--white);
    text-align: center;
}

.delivery-zone h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.delivery-zone > .container > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.zone-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.zone-tag {
    background-color: var(--bg-light);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.zone-note {
    color: var(--text-light);
    font-style: italic;
}

.quick-contact {
    background-color: var(--bg-light);
    text-align: center;
}

.quick-contact h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.quick-contact p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-icon {
    font-size: 1.5rem;
}

/* CONTACT */
.contact-section {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-item-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-item-content p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-item-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item-content a:hover {
    text-decoration: underline;
}

.small-text {
    font-size: 0.9rem;
    font-style: italic;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    font-size: 1.1rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin-top: 15px;
}

.form-message {
  background-color: rgba(0,0,0,0.75);
  color: white;
  padding: 15px 25px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.7);
  font-weight: bold;
  z-index: 9999;
  max-width: 90%;
  display: none;
  text-align: center;
}

.form-message.success {
  background-color: #28a745cc; /* vert transparent */
}

.form-message.error {
  background-color: #dc3545cc; /* rouge transparent */
}


.faq-section {
    background-color: var(--white);
}

.faq-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        display: none;
        gap: 0;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-menu li:last-child {
        border-bottom: none;
    }
    .hero {
        padding: 60px 20px;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .content-grid,
    .products-grid,
    .values-grid,
    .philosophy-grid,
    .markets-grid,
    .partners-list,
    .info-section .container,
    .faq-grid,
    .footer-content,
    .contact-grid,
    .about-intro,
    .product-full,
    .product-full.reverse {
        grid-template-columns: 1fr;
    }
    .product-full.reverse .product-full-image,
    .product-full.reverse .product-full-content {
        order: 0;
    }
    .section-header h2,
    .section-title {
        font-size: 1.8rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .cta h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    .section-header h2,
    .section-title {
        font-size: 1.5rem;
    }
    .page-header h1 {
        font-size: 1.8rem;
    }
    .contact-options {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-btn {
        justify-content: center;
    }
}
