:root {
    --sunset-orange: #FF6B35;
    --sunset-pink: #FF8B94;
    --sunset-purple: #B565A7;
    --sunset-gold: #F7B267;
    --lavender: #9B84C4;
    --deep-purple: #5D3A6F;
    --provence-rose: #FFB6C1;
    --terre-cuite: #C97B63;
    --olive: #6B7245;
    --sand: #F4E8D8;
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --text-dark: #2C1810;
    --text-light: #6B5B4F;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--cream);
    overflow-x: hidden;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 123, 99, 0.2);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-purple);
    font-style: italic;
}

.logo-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--terre-cuite);
    font-weight: 300;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--terre-cuite);
    transition: all 0.3s ease;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--sunset-pink));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--sunset-orange);
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sunset-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        #FFB6C1 0%,
        #FF8B94 20%,
        #FF6B35 40%,
        #F7B267 60%,
        #9B84C4 80%,
        #5D3A6F 100%
    );
    opacity: 0.9;
}

.sunset-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(93, 58, 111, 0.4) 0%, transparent 50%);
    animation: sunsetPulse 8s ease-in-out infinite;
}

@keyframes sunsetPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.flamingo-silhouette {
    position: absolute;
    width: 120px;
    height: 150px;
    background: rgba(44, 24, 16, 0.4);
    clip-path: polygon(
        50% 20%, 48% 25%, 46% 30%, 44% 35%, 42% 45%,
        40% 55%, 38% 65%, 36% 75%, 35% 85%, 34% 95%,
        50% 98%, 66% 95%, 65% 85%, 64% 75%, 62% 65%,
        60% 55%, 58% 45%, 56% 35%, 54% 25%, 52% 20%,
        50% 5%, 48% 15%
    );
    animation: flamingoDrift 20s ease-in-out infinite;
}

.flamingo-1 {
    bottom: 15%;
    left: 10%;
    animation-delay: 0s;
}

.flamingo-2 {
    bottom: 25%;
    left: 20%;
    animation-delay: -7s;
    transform: scale(0.8);
}

.flamingo-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: -14s;
    transform: scale(0.7) scaleX(-1);
}

@keyframes flamingoDrift {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) translateX(-10px) rotate(-2deg);
    }
    75% {
        transform: translateY(-30px) translateX(5px) rotate(1deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.title-main {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    font-style: italic;
    text-shadow: 3px 3px 10px rgba(44, 24, 16, 0.4);
    letter-spacing: 2px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 3px 3px 10px rgba(44, 24, 16, 0.4),
                     0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 3px 3px 10px rgba(44, 24, 16, 0.4),
                     0 0 50px rgba(255, 255, 255, 0.5);
    }
}

.title-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    opacity: 0.95;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-top: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero-specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1rem;
    margin-top: 2rem;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

.specialty {
    opacity: 0.95;
}

.specialty-separator {
    color: var(--sunset-gold);
}

.cta-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--white);
    color: var(--sunset-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

/* Section commune */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    font-style: italic;
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.title-underline {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--sunset-pink), var(--lavender));
    margin: 1rem auto;
    border-radius: 3px;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
}

/* Artiste Section */
.artiste-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

.artiste-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.artiste-image {
    position: relative;
}

.image-frame {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--sunset-pink) 0%, var(--sunset-orange) 50%, var(--sunset-gold) 100%);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(44, 24, 16, 0.2);
    position: relative;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 1.5rem;
    background: var(--sand);
    border-radius: 5px;
}

.frame-decoration {
    position: absolute;
    inset: 2rem;
    border: 2px solid var(--terre-cuite);
    border-radius: 5px;
    z-index: 1;
}

.artiste-text {
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.artiste-intro {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--deep-purple);
}

.artiste-intro strong {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
}

.artiste-text p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.artiste-specialties-list {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-left: 4px solid var(--sunset-orange);
    border-radius: 8px;
}

.artiste-specialties-list h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--deep-purple);
    margin-bottom: 1rem;
}

.artiste-specialties-list ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.artiste-specialties-list li {
    padding-left: 1.5rem;
    position: relative;
}

.artiste-specialties-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--sunset-orange);
}

/* Galerie Section */
.galerie-section {
    background: var(--white);
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.galerie-item {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.15);
    animation: fadeInScale 0.8s ease-out backwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.galerie-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-orange) 50%, var(--sunset-pink) 100%);
    position: relative;
    transition: transform 0.4s ease;
}

.galerie-item:hover .galerie-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.7);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.galerie-item:hover .image-overlay {
    opacity: 1;
}

.image-overlay p {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    margin: 0;
}

/* Boutique Section */
.boutique-section {
    background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

.filtres-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(44, 24, 16, 0.1);
}

.filtre-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filtre-group label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.filtre-select,
.filtre-input {
    padding: 0.7rem 1rem;
    border: 2px solid var(--terre-cuite);
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-width: 200px;
}

.filtre-select:focus,
.filtre-input:focus {
    outline: none;
    border-color: var(--sunset-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.btn-reset {
    padding: 0.7rem 2rem;
    background: var(--terre-cuite);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: var(--sunset-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.produit-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.15);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.produit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.25);
}

.produit-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--sunset-gold) 0%, var(--sunset-orange) 100%);
    position: relative;
    overflow: hidden;
}

.statut-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.statut-badge.en-stock {
    background: rgba(107, 114, 69, 0.9);
    color: var(--white);
}

.statut-badge.sur-commande {
    background: rgba(201, 123, 99, 0.9);
    color: var(--white);
}

.produit-content {
    padding: 1.5rem;
}

.produit-type {
    font-size: 0.9rem;
    color: var(--terre-cuite);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.produit-nom {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--deep-purple);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.produit-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.produit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(155, 132, 196, 0.15);
    color: var(--deep-purple);
    border-radius: 15px;
    font-size: 0.8rem;
}

.produit-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 123, 99, 0.2);
}

.produit-prix {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sunset-orange);
}

.btn-contact {
    padding: 0.6rem 1.5rem;
    background: var(--deep-purple);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--sunset-orange);
    transform: scale(1.05);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--provence-rose) 20%, var(--sunset-pink) 50%, var(--sunset-orange) 80%, var(--sunset-gold) 100%);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .title-underline {
    background: var(--white);
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.contact-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-description {
    line-height: 1.8;
    opacity: 0.95;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--sunset-orange);
    border: none;
    border-radius: 50px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: var(--deep-purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.main-footer {
    background: var(--deep-purple);
    color: var(--white);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    opacity: 0.8;
    display: block;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sunset-gold);
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .artiste-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .produits-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
}

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 248, 240, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(201, 123, 99, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .filtres-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filtre-select,
    .filtre-input {
        min-width: 100%;
    }

    .galerie-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .hero-specialties {
        flex-direction: column;
        gap: 0.5rem;
    }

    .specialty-separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }

    .logo-subtitle {
        font-size: 0.8rem;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
}