/* Variables CSS Premium */
:root {
    --primary-color: #8B4513;
    --primary-light: #A0522D;
    --primary-dark: #654321;
    --secondary-color: #D2B48C;
    --accent-color: #DEB887;
    --accent-light: #F5DEB3;
    --gold: #FFD700;
    --gold-light: #FFF8DC;
    
    --text-dark: #2C1810;
    --text-medium: #4A3728;
    --text-light: #6B4E37;
    --text-muted: #8B7765;
    
    --white: #FFFFFF;
    --light-bg: #FAF8F5;
    --cream: #FDF6E3;
    --warm-white: #FEFCF8;
    
    --success: #28a745;
    --instagram: #E4405F;
    --facebook: #1877F2;
    --tiktok: #000000;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 40px rgba(0, 0, 0, 0.2);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
    color: var(--white);
}

.croissant {
    font-size: 4rem;
    animation: rotate 2s linear infinite;
    margin-bottom: 1rem;
}

.loader p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header Premium */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.logo-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    margin-left: 2.5rem;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--gold));
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section Premium */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 2rem 2rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg) 50%, var(--accent-light) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D2B48C" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="%238B4513" opacity="0.05"/><circle cx="50" cy="10" r="0.8" fill="%23DEB887" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 70%);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    min-width: 120px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Sections communes */
section {
    padding: 5rem 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Excellence Section */
.excellence {
    background: var(--white);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.excellence-card {
    position: relative;
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
}

.excellence-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.excellence-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    transform: scale(1.05);
}

.excellence-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-dark);
}

.excellence-card.featured .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.excellence-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: inherit;
}

.excellence-card p {
    line-height: 1.8;
    color: inherit;
    opacity: 0.9;
}

.card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), transparent);
    border-radius: 0 var(--border-radius-lg) 0 100px;
    opacity: 0.1;
}

.awards-showcase {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--cream), var(--light-bg));
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.awards-showcase h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.awards-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.award-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

/* Boutiques Premium */
.boutiques {
    background: linear-gradient(135deg, var(--light-bg), var(--cream));
}

.boutiques-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.boutique-card.premium {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.boutique-card.premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.boutique-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 2rem;
    position: relative;
}

.boutique-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.boutique-badge.new {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
}

.boutique-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.boutique-content {
    padding: 2.5rem;
}

.boutique-info {
    margin-bottom: 2rem;
}

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

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
}

.boutique-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature.premium {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature.premium i {
    color: var(--primary-color);
}

.boutique-description {
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

/* Spécialités Showcase */
.specialites {
    background: var(--white);
}

.signature-showcase {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--cream), var(--light-bg));
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.signature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.signature-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.signature-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.signature-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.signature-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.signature-feature i {
    color: var(--primary-color);
}

.signature-visual {
    display: flex;
    justify-content: center;
}

.signature-image {
    width: 250px;
    height: 250px;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

.product-category {
    background: var(--warm-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-category:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.product-category.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.product-category.seasonal {
    border: 2px solid var(--accent-color);
    background: var(--accent-light);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(139, 69, 19, 0.1);
}

.product-category.featured .category-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.category-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.product-category.featured .category-header i {
    color: var(--white);
}

.category-header h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: inherit;
}

.category-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.product-category.featured .product-item {
    background: rgba(255, 255, 255, 0.1);
}

.product-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.product-category.featured .product-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.product-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.product-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: inherit;
}

.product-item p {
    font-size: 0.9rem;
    color: inherit;
    opacity: 0.8;
    margin: 0;
}

/* Chef Section Premium */
.chef {
    background: linear-gradient(135deg, var(--light-bg), var(--cream));
}

.chef-showcase {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
}

.chef-image {
    position: relative;
}

.chef-photo {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.chef-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.chef-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.chef-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 2rem;
    font-style: italic;
}

.chef-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.chef-philosophy {
    margin: 2.5rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.chef-philosophy h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.chef-philosophy blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin: 0;
}

.timeline-premium {
    margin-top: 2rem;
}

.timeline-item-premium {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item-premium:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    bottom: -20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
}

.timeline-year {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h5 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Témoignages */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    transform: scale(1.02);
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    color: inherit;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: inherit;
}

.testimonial-author span {
    color: inherit;
    opacity: 0.8;
    font-size: 0.9rem;
}

.social-proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--cream), var(--light-bg));
    border-radius: var(--border-radius-lg);
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.proof-text strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.proof-text span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Premium */
.contact {
    background: linear-gradient(135deg, var(--light-bg), var(--cream));
}

.social-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.social-card.instagram {
    border-left: 4px solid var(--instagram);
}

.social-card.facebook {
    border-left: 4px solid var(--facebook);
}

.social-card.tiktok {
    border-left: 4px solid var(--tiktok);
}

.social-icon-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.social-card.instagram .social-icon-large {
    background: linear-gradient(135deg, #E4405F, #F56040);
    color: var(--white);
}

.social-card.facebook .social-icon-large {
    background: var(--facebook);
    color: var(--white);
}

.social-card.tiktok .social-icon-large {
    background: var(--tiktok);
    color: var(--white);
}

.social-content {
    flex: 1;
}

.social-content h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.social-content p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.followers {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.social-arrow {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-card:hover .social-arrow {
    transform: translateX(5px);
}

.contact-info {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-bg);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-card strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.contact-card p {
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

/* Footer Premium */
.footer {
    background: linear-gradient(135deg, var(--text-dark), var(--text-medium));
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 200px 200px 150px;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section.main {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
}

.footer-section p {
    color: #CCC;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--accent-color);
    width: 16px;
}

.footer-awards {
    margin-top: 1.5rem;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #AAA;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .signature-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .chef-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat {
        padding: 1rem;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .boutiques-showcase {
        grid-template-columns: 1fr;
    }

    .excellence-grid {
        grid-template-columns: 1fr;
    }

    .excellence-card.featured {
        transform: none;
    }

    .products-showcase {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card.featured {
        transform: none;
    }

    .social-showcase {
        grid-template-columns: 1fr;
    }

    .awards-list {
        flex-direction: column;
        gap: 1rem;
    }

    .social-proof {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-item-premium {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline-item-premium::after {
        display: none;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .tagline {
        display: none;
    }

    .hero {
        padding: 100px 1rem 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .boutique-content {
        padding: 1.5rem;
    }

    .boutique-features {
        flex-direction: column;
    }

    .signature-features {
        flex-direction: column;
        align-items: center;
    }

    .chef-photo {
        width: 250px;
        height: 320px;
        font-size: 4rem;
    }

    .signature-showcase {
        padding: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Mode sombre (si nécessaire) */
@media (prefers-color-scheme: dark) {
    .header {
        background: rgba(44, 24, 16, 0.95);
    }
    
    .nav-menu a {
        color: var(--white);
    }
}