@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --accent-color: #8b5e34;
    --text-secondary-custom: #5a4033;
    --font-title: 'Great Vibes', cursive;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #fdfaf1 !important;
    color: #2c1e14 !important;
    font-family: 'Playfair Display', serif !important;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(253, 250, 241, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 2rem 2rem !important;
    position: relative;
    z-index: 2;
}

/* Header */
header {
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    background: linear-gradient(to bottom, rgba(253, 250, 241, 0.1), rgba(253, 250, 241, 0.6)), url('assets/hero.png') !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 4rem 1rem !important;
    margin: 0 !important;
}

.flyer-content {
    background: rgba(253, 250, 241, 0.8);
    backdrop-filter: blur(8px);
    padding: 5rem 3rem;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 94, 52, 0.1);
    width: 100%;
}

h1.hero-title {
    font-family: var(--font-title) !important;
    font-size: clamp(3.5rem, 8vw, 6rem) !important;
    color: #2c1e14 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem) !important;
    font-style: italic !important;
    color: var(--text-secondary-custom) !important;
    letter-spacing: 1px;
    margin-top: -0.5rem !important;
    margin-bottom: 0.5rem !important;
}

/* Liste */
.flyer-list {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto !important;
    padding: 0 !important;
}

.flyer-item {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 1rem 0 !important;
    border-bottom: 1px solid rgba(139, 94, 52, 0.1) !important;
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    font-style: italic !important;
    color: #2c1e14 !important;
    margin: 0 !important;
    list-style: none !important;
}

.flyer-item::before,
.flyer-item::after {
    content: '*';
    margin: 0 1rem;
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    transform: translateY(0.2rem);
}

/* Contact Section */
.contact-compact p {
    font-size: 1.2rem !important;
    font-style: italic !important;
    color: var(--text-secondary-custom) !important;
    margin-bottom: 1.5rem !important;
}

/* Custom Button */
.btn-custom {
    padding: 1rem 2.5rem !important;
    background-color: #2c1e14 !important;
    color: #fff !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.1rem !important;
    letter-spacing: 1px;
    border-radius: 4px !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.btn-custom:hover,
.btn-custom:focus {
    background-color: var(--accent-color) !important;
    transform: scale(1.05);
    color: #fff !important;
}

/* Footer */
footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    text-align: center !important;
    padding: 1rem 0 !important;
    color: var(--text-secondary-custom) !important;
    font-size: 0.9rem !important;
    /*background: rgba(253, 250, 241, 0.2) !important;*/ 
    backdrop-filter: blur(4px) !important;
    z-index: 10 !important;
    /*border-top: 1px solid rgba(139, 94, 52, 0.1) !important;*/
}

footer small {
    font-size: 0.9rem !important;
}

/* Animation */
.flyer-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.flyer-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .flyer-content {
        padding: 3.5rem 1.5rem;
    }
    
    h1.hero-title {
        font-size: 3.5rem !important;
    }
}
