/* Variables CSS pour le thème */
:root {
    --primary-purple: #b19cd9;
    --light-purple: #d4c4e8;
    --soft-lavender: #e6ddf2;
    --pale-purple: #f5f2fa;
    --dark-purple: #8b7cb8;
    --text-dark: #4a4a4a;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --gradient-purple: linear-gradient(135deg, #b19cd9 0%, #d4c4e8 100%);
    --watercolor-bg: linear-gradient(45deg, rgba(177, 156, 217, 0.1) 0%, rgba(212, 196, 232, 0.1) 50%, rgba(245, 242, 250, 0.1) 100%);
}

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

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

/* Section Hero */
.hero {
    min-height: 100vh;
    background: var(--watercolor-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.hero-content {
    text-align: center;
    position: relative;
    max-width: 600px;
    animation: fadeInUp 1.5s ease-out;
}

.floral-decoration {
    position: absolute;
    width: 120px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 60"><path d="M10 30c10-15 25-10 35 0s25 15 35 0 25-15 35 0 25 15 35 0" fill="none" stroke="%23b19cd9" stroke-width="2" opacity="0.6"/><circle cx="20" cy="25" r="3" fill="%23d4c4e8" opacity="0.8"/><circle cx="50" cy="35" r="2" fill="%23b19cd9" opacity="0.6"/><circle cx="80" cy="20" r="2.5" fill="%23e6ddf2" opacity="0.9"/></svg>') no-repeat center;
    background-size: contain;
}

.floral-decoration.top {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.floral-decoration.bottom {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}

.couple-names {
    font-family: 'Dancing Script', cursive !important;
    font-size: 4rem;
    font-weight: 700 !important;
    font-family: 'Romantic Lovely', sans-serif;
/*    color: rgb(135, 69, 131) !important; */
    color: rgb(#b19cd9) !important; 
    margin: 2rem 0;
    text-shadow: 0 2px 4px rgba(177, 156, 217, 0.3);
}

.couple-signature {
    font-family: 'Dancing Script', cursive !important;
    font-size: 2rem;
    font-weight: 700 !important;
    color: rgb(135, 69, 131) !important;
    text-shadow: 0 2px 4px rgba(177, 156, 217, 0.3);
}

.welcome-message {
    margin: 2rem 0;
}

.welcome-message p {
    font-size: 1.5rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 300;
}

.date-info {
    margin: 2rem 0;
}

.wedding-date {
    font-size: 1.8rem;
    color: var(--dark-purple);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.wedding-time {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Indicateur de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-purple);
}

.scroll-arrow span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--primary-purple);
    animation: pulse 1.5s ease-in-out infinite alternate;
}

/* Navigation principale */
.main-nav {
    background: var(--pale-purple);
    padding: 2rem 0;
    border-top: 1px solid var(--soft-lavender);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(177, 156, 217, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(177, 156, 217, 0.3);
    border-color: var(--light-purple);
}

.nav-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.nav-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Section Photos */
.photos-section {
    padding: 4rem 0;
    background: var(--white);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.photos-section h2 {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
}

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

.photo-card {
    background: var(--pale-purple);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(177, 156, 217, 0.15);
    transition: transform 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-3px);
}

.photo-card h3 {
    font-size: 1.5rem;
    color: var(--dark-purple);
    margin-bottom: 1rem;
}

.photo-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.photo-link {
    display: inline-block;
    background: var(--gradient-purple);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(177, 156, 217, 0.3);
}

.photo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(177, 156, 217, 0.4);
}

/* Footer */
.footer {
    background: var(--gradient-purple);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
    position: relative;
}

.footer-floral {
    position: relative;
    width: 150px;
    height: 40px;
    margin: 0 auto 2rem;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 40"><path d="M10 20c15-10 30 0 40 0s25-10 40 0 25 10 40 0" fill="none" stroke="white" stroke-width="2" opacity="0.7"/><circle cx="25" cy="15" r="2" fill="white" opacity="0.8"/><circle cx="75" cy="25" r="1.5" fill="white" opacity="0.6"/><circle cx="125" cy="15" r="2" fill="white" opacity="0.8"/></svg>') no-repeat center;
    background-size: contain;
}

.footer p {
    margin-bottom: 0.5rem;
}



/* Pages spécifiques */
.page-header {
    background: var(--watercolor-bg);
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.page-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    font-style: italic;
}

/* Logements */
.logement-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(177, 156, 217, 0.15);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: transform 0.3s ease;
}

.logement-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(177, 156, 217, 0.25);
}

.logement-image {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--soft-lavender);
}

.logement-info h3 {
    color: var(--dark-purple);
    margin-bottom: 0.5rem;
}

.logement-distance {
    color: var(--primary-purple);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.logement-description {
    color: var(--text-light);
    line-height: 1.5;
}

.logement-link {
    background: var(--gradient-purple);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logement-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(177, 156, 217, 0.4);
}

/* Allergènes */
.allergenes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.allergene-category {
    background: var(--pale-purple);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(177, 156, 217, 0.1);
}

.allergene-category h3 {
    color: var(--dark-purple);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.allergene-list {
    list-style: none;
}

.allergene-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--soft-lavender);
    color: var(--text-dark);
}

.allergene-list li:last-child {
    border-bottom: none;
}

/* Formulaire allergies */
.allergy-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(177, 156, 217, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-purple);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--soft-lavender);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.form-button {
    background: var(--gradient-purple);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(177, 156, 217, 0.4);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.6;
    }
}

/* Styles supplémentaires */
.breadcrumb {
    background: var(--soft-lavender);
    padding: 1rem 0;
}

.back-link {
    color: var(--dark-purple);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-purple);
}

.main-content {
    padding: 3rem 0;
}

.intro-text {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.logements-list {
    max-width: 1000px;
    margin: 0 auto;
}

.allergy-declaration {
    margin-top: 4rem;
    text-align: center;
}

.allergy-declaration h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 2rem;
}

.no-data {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .couple-names {
        font-size: 3rem;
    }
    
    .nav-container {
        grid-template-columns: 1fr;
    }
    
    .logement-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
    }
    
    .allergenes-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .allergy-form {
        padding: 2rem;
    }
}
