/* =============================================================================
   NOISETTE PÂTISSERIE V2 - STYLE RUSTIQUE & AUTHENTIQUE
   ============================================================================= */

/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Variables CSS - Palette Rustique */
:root {
    /* Couleurs principales */
    --primary-brown: #8B4513;
    --warm-cream: #F5F3F0;
    --rustic-gold: #D2B48C;
    --deep-brown: #5D4037;
    --accent-orange: #CD853F;
    --text-dark: #3E2723;
    --text-medium: #5D4037;
    --text-light: #8D6E63;
    
    /* Typographies */
    --font-script: 'Dancing Script', cursive;
    --font-serif: 'Libre Baskerville', serif;
    --font-body: 'Crimson Text', serif;
    
    /* Espacements */
    --section-padding: 4rem 0;
    --container-padding: 0 2rem;
    
    /* Animations */
    --transition-smooth: all 0.4s ease;
}

/* Base */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--warm-cream);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(210, 180, 140, 0.08) 0%, transparent 50%);
    overflow-x: hidden;
}

/* Conteneur principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* =============================================================================
   HEADER & NAVIGATION
   ============================================================================= */

.header {
    background: linear-gradient(145deg, var(--deep-brown), var(--primary-brown));
    padding: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5F3F0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Logo Vintage */
.brand {
    text-align: center;
}

.logo-vintage {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.logo-vintage.small {
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.logo-flourish {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--rustic-gold);
    font-weight: 600;
}

.logo-text {
    font-family: var(--font-script);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warm-cream);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.logo-vintage.small .logo-text {
    font-size: 1.8rem;
}

.tagline {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--rustic-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.est {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(245, 243, 240, 0.8);
    font-style: italic;
}

/* Navigation Vintage */
.nav-vintage ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-vintage a {
    color: var(--warm-cream);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.nav-vintage a:hover {
    color: var(--rustic-gold);
    transform: translateY(-1px);
}

.nav-vintage a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rustic-gold);
    transition: width 0.3s ease;
}

.nav-vintage a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--warm-cream);
    transition: var(--transition-smooth);
}

/* =============================================================================
   HERO VINTAGE
   ============================================================================= */

.hero-vintage {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--warm-cream) 0%, #F0EBE5 50%, var(--rustic-gold) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B4513' fill-opacity='0.03'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(139, 69, 19, 0.05) 50%, 
        transparent 70%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-title {
    font-family: var(--font-script);
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 600;
}

.hero-title em {
    color: var(--primary-brown);
    font-style: italic;
}

.hero-ornament {
    font-size: 2rem;
    color: var(--rustic-gold);
    margin: 1.5rem 0;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.btn-vintage {
    display: inline-block;
    background: var(--primary-brown);
    color: var(--warm-cream);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    box-shadow: 
        0 4px 15px rgba(139, 69, 19, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-vintage::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-vintage:hover::before {
    left: 100%;
}

.btn-vintage:hover {
    background: var(--deep-brown);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(139, 69, 19, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-decoration {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.decoration-left, .decoration-right {
    position: absolute;
    font-size: 4rem;
    color: rgba(139, 69, 19, 0.1);
    animation: float 6s ease-in-out infinite;
}

.decoration-left {
    left: 5%;
    animation-delay: 0s;
}

.decoration-right {
    right: 5%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* =============================================================================
   SECTIONS COMMUNES
   ============================================================================= */

section {
    padding: var(--section-padding);
}

.section-header-vintage {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-vintage h2 {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.ornament-line::before,
.ornament-line::after {
    content: '';
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rustic-gold), transparent);
}

.ornament-line span {
    font-size: 1.5rem;
    color: var(--rustic-gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}


/* =============================================================================
   IMAGES RUSTIQUES - EFFETS VINTAGE
   ============================================================================= */

.story-image-vintage {
    float: right;
    margin: 0 0 2rem 2rem;
    max-width: 300px;
    position: relative;
}

.rustic-frame {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 
        0 0 0 8px var(--warm-cream),
        0 0 0 12px var(--rustic-gold),
        0 8px 25px rgba(139, 69, 19, 0.3);
    transform: rotate(-2deg);
    transition: var(--transition-smooth);
}

.rustic-frame:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 
        0 0 0 8px var(--warm-cream),
        0 0 0 12px var(--accent-orange),
        0 12px 35px rgba(139, 69, 19, 0.4);
}

.image-caption {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-brown);
    color: var(--warm-cream);
    padding: 0.5rem 1rem;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    border-radius: 15px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.wide-rustic-frame {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 
        inset 0 0 0 8px rgba(245, 243, 240, 0.8),
        inset 0 0 0 16px var(--rustic-gold),
        0 8px 30px rgba(139, 69, 19, 0.2);
    filter: sepia(10%) contrast(1.1) brightness(0.95);
}

.craft-showcase-image {
    position: relative;
    margin: 3rem 0 4rem 0;
    overflow: hidden;
    border-radius: 12px;
}

.image-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(139, 69, 19, 0.9);
    color: var(--warm-cream);
    padding: 1rem 2rem;
    font-family: var(--font-script);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4);
}

.workshop-image-header {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.workshop-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: sepia(15%) contrast(1.1);
}

.workshop-vintage:hover .workshop-photo {
    transform: scale(1.1);
    filter: sepia(5%) contrast(1.2) brightness(1.1);
}

.workshop-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: var(--warm-cream);
    text-align: center;
}

.workshop-image-overlay h3 {
    margin: 1rem 0 0 0;
    font-family: var(--font-script);
    font-size: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.signature-visual {
    position: relative;
    text-align: center;
}

.signature-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid var(--rustic-gold);
    box-shadow: 
        0 0 0 4px var(--warm-cream),
        0 8px 30px rgba(139, 69, 19, 0.3);
    filter: sepia(20%) contrast(1.1) brightness(1.05);
    transition: var(--transition-smooth);
}

.signature-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 0 4px var(--warm-cream),
        0 0 0 8px var(--accent-orange),
        0 12px 40px rgba(139, 69, 19, 0.4);
    filter: sepia(10%) contrast(1.2) brightness(1.1);
}

.signature-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 320px;
    border: 3px dashed var(--accent-orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate-slow 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =============================================================================
   STORY SECTION
   ============================================================================= */

.story-section {
    background: rgba(139, 69, 19, 0.03);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.vintage-quote {
    background: var(--warm-cream);
    padding: 3rem;
    border-left: 5px solid var(--rustic-gold);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    margin-bottom: 3rem;
    position: relative;
}

.vintage-quote::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--rustic-gold);
    font-family: var(--font-serif);
    line-height: 1;
}

.vintage-quote blockquote {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.vintage-quote cite {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: normal;
    font-weight: 700;
    text-align: right;
}

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

.story-paragraphs strong {
    color: var(--deep-brown);
}

/* Timeline Vintage */
.timeline-vintage {
    position: relative;
}

.timeline-vintage::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--rustic-gold), var(--accent-orange));
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 1.2rem;
    top: 0.5rem;
    width: 1.6rem;
    height: 1.6rem;
    background: var(--rustic-gold);
    border: 3px solid var(--warm-cream);
    border-radius: 50%;
    z-index: 2;
}

.year {
    font-family: var(--font-script);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    min-width: 5rem;
    text-align: center;
    background: var(--warm-cream);
    padding: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.1);
}

.event {
    margin-left: 2rem;
}

.event h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.event p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* =============================================================================
   CRAFT SECTION
   ============================================================================= */

.craft-section {
    background: var(--warm-cream);
}

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

.craft-card {
    background: rgba(245, 243, 240, 0.8);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.08);
    border-top: 4px solid var(--rustic-gold);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.craft-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(210, 180, 140, 0.1) 0%, transparent 70%);
    transition: var(--transition-smooth);
    opacity: 0;
}

.craft-card:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.craft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.15);
}

.craft-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.craft-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.craft-card p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =============================================================================
   WORKSHOPS VINTAGE
   ============================================================================= */

.workshops-vintage {
    background: rgba(205, 133, 63, 0.05);
}

.workshops-content {
    display: grid;
    gap: 3rem;
}

.workshop-vintage {
    background: var(--warm-cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
    border: 2px solid rgba(139, 69, 19, 0.1);
    transition: var(--transition-smooth);
}

.workshop-vintage:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.15);
    border-color: var(--rustic-gold);
}

.workshop-header {
    background: linear-gradient(135deg, var(--primary-brown), var(--deep-brown));
    padding: 2rem;
    text-align: center;
    position: relative;
}

.workshop-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.workshop-badge.historic {
    background: var(--rustic-gold);
    color: var(--deep-brown);
}

.workshop-badge.new {
    background: var(--accent-orange);
    color: var(--warm-cream);
}

.workshop-header h3 {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--warm-cream);
    margin: 0;
    font-weight: 600;
}

.workshop-info {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-bottom: 2px dashed rgba(139, 69, 19, 0.2);
}

.address-vintage strong,
.hours-vintage strong {
    font-family: var(--font-serif);
    color: var(--deep-brown);
    font-size: 1.1rem;
}

.address-vintage,
.hours-vintage {
    color: var(--text-medium);
    line-height: 1.6;
}

.address-vintage a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
}

.address-vintage a:hover {
    text-decoration: underline;
    color: var(--deep-brown);
}

.workshop-description {
    padding: 2rem;
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    border-bottom: 2px dashed rgba(139, 69, 19, 0.2);
}

.workshop-description em {
    color: var(--primary-brown);
    font-weight: 600;
}

.workshop-specialties {
    padding: 1.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.workshop-specialties span {
    background: rgba(139, 69, 19, 0.1);
    color: var(--deep-brown);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
}

/* =============================================================================
   RECIPES SECTION
   ============================================================================= */

.recipes-section {
    background: var(--warm-cream);
}

/* Signature Recipe */
.signature-recipe {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05), rgba(210, 180, 140, 0.1));
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
    border: 2px solid rgba(139, 69, 19, 0.1);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.signature-recipe::before {
    content: '🌰';
    position: absolute;
    top: -1rem;
    right: 2rem;
    font-size: 2rem;
    background: var(--warm-cream);
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.signature-badge {
    display: inline-block;
    background: var(--primary-brown);
    color: var(--warm-cream);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.signature-content h3 {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.signature-story {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.recipe-details h4 {
    font-family: var(--font-serif);
    color: var(--deep-brown);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.recipe-details ul {
    list-style: none;
    padding: 0;
}

.recipe-details li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 2rem;
}

.recipe-details li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--rustic-gold);
    font-size: 1.2rem;
}

/* Recipe Categories */
.recipe-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.recipe-category {
    background: rgba(245, 243, 240, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.08);
}

.recipe-category h4 {
    background: var(--primary-brown);
    color: var(--warm-cream);
    padding: 1.5rem 2rem;
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    text-align: center;
}

.recipe-list {
    padding: 2rem;
}

.recipe-item {
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recipe-item:last-child {
    border-bottom: none;
}

.recipe-item strong {
    font-family: var(--font-serif);
    color: var(--deep-brown);
    font-size: 1.05rem;
}

.recipe-item span {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-style: italic;
}

/* =============================================================================
   CONTACT VINTAGE
   ============================================================================= */

.contact-vintage {
    background: rgba(139, 69, 19, 0.03);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 3rem;
}

.contact-location {
    background: var(--warm-cream);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    border-left: 5px solid var(--rustic-gold);
}

.contact-location h3 {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-location address {
    font-style: normal;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-location a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-location a:hover {
    text-decoration: underline;
    color: var(--deep-brown);
}

.contact-location small {
    color: var(--text-light);
    font-style: italic;
    display: block;
    margin-top: 1rem;
}

/* Social Vintage */
.social-vintage {
    background: rgba(245, 243, 240, 0.8);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.08);
}

.social-vintage h3 {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.social-links-vintage {
    display: grid;
    gap: 1rem;
}

.social-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--warm-cream);
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.social-link:hover {
    border-color: var(--rustic-gold);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

.social-name {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--deep-brown);
    font-size: 1rem;
}

.social-handle {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-style: italic;
}

/* =============================================================================
   FOOTER VINTAGE
   ============================================================================= */

.footer-vintage {
    background: linear-gradient(145deg, var(--deep-brown), var(--primary-brown));
    color: var(--warm-cream);
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer-vintage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5F3F0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-brand p {
    color: rgba(245, 243, 240, 0.8);
    margin: 0.5rem 0 0 0;
}

.footer-quote {
    max-width: 400px;
    text-align: center;
}

.footer-quote em {
    font-size: 1.1rem;
    color: var(--rustic-gold);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 243, 240, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(245, 243, 240, 0.7);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.footer-craft {
    font-style: italic;
    color: var(--rustic-gold);
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-image-vintage {
        float: none;
        margin: 2rem auto;
        text-align: center;
    }
    
    .signature-recipe {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
        --container-padding: 0 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .nav-vintage ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deep-brown);
        padding: 2rem;
        gap: 1rem;
        z-index: 1000;
    }
    
    .nav-vintage ul.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-vintage {
        min-height: 70vh;
        padding: 2rem 1rem;
    }
    
    .craft-grid {
        grid-template-columns: 1fr;
    }
    
    .recipe-categories {
        grid-template-columns: 1fr;
    }
    
    .workshop-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .workshop-specialties {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .decoration-left,
    .decoration-right {
        display: none;
    }
    
    .craft-showcase-image {
        margin: 2rem 0;
    }
    
    .wide-rustic-frame {
        height: 250px;
    }
    
    .workshop-photo {
        height: 200px;
    }
    
    .signature-frame {
        width: 320px;
        height: 240px;
    }
    
    .signature-image {
        max-width: 300px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .vintage-quote {
        padding: 2rem;
    }
    
    .signature-recipe {
        padding: 2rem;
    }
    
    .workshop-vintage,
    .contact-location,
    .social-vintage {
        margin: 0 1rem;
    }
}

/* =============================================================================
   ANIMATIONS ET EFFETS
   ============================================================================= */

/* Animation de chargement */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation des éléments au scroll */
.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Effet de parallax léger */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* Smooth scrolling pour les ancres */
html {
    scroll-behavior: smooth;
}

/* États de focus pour l'accessibilité */
*:focus {
    outline: 2px solid var(--rustic-gold);
    outline-offset: 2px;
    border-radius: 2px;
}