:root {
    --primary-color: #f8e5ee;
    --secondary-color: #7a0014;
    --accent-color: #f7ef81;
    --text-color: #2c2c2c;
    --light-text: #4a6b8a;
    --white: #fff;
    --gold: #d4af37;
    --dark-overlay: rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-color);
}

h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero {
    height: 40vh;
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('images/domaine-chasse.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-size: 6rem;
    margin: 0;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-content .date {
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    font-family: 'Alex Brush', cursive;
    letter-spacing: 1px;
    margin-top: 1rem;
    display: inline-block;
    position: relative;
}

.hero-content .date::before,
.hero-content .date::after {
    content: '•';
    color: var(--gold);
    margin: 0 1.5rem;
    font-size: 1.4rem;
    vertical-align: middle;
}

.formulaire-hero-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.formulaire-hero-btn:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .formulaire-hero-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        top: auto;
        padding: 12px 24px;
        font-size: 1rem;
        background-color: var(--secondary-color);
        color: white;
        border-radius: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transform: scale(1);
        transition: all 0.3s ease;
    }

    .formulaire-hero-btn:hover {
        transform: scale(1.05);
        background-color: var(--gold);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }
}

.main-nav {
    background-color: var(--white);
    padding: 1rem 0;
    position: static;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

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

/* Styles pour le menu hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 1rem;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }

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

    .main-nav ul {
        flex-direction: column;
        padding: 2rem;
        height: 100%;
        justify-content: flex-start;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 1.4rem;
        padding: 1rem 0;
        display: block;
    }

    /* Animation du bouton hamburger */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(-6px);
    }

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

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

.section {
    padding: 3rem 0rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-logo {
    position: absolute;
    width: 50px;
    height: auto;
    opacity: 0.5;
    transition: transform 0.3s ease;
    z-index: 1;
}

.section-logo:hover {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.7;
}

.section-logo:nth-child(odd) {
    left: 5%;
    top: 20%;
}

.section-logo:nth-child(even) {
    right: 8%;
    top: 60%;
}

.section-logo:nth-child(3) {
    left: 15%;
    top: 80%;
}

.section-logo:nth-child(4) {
    right: 12%;
    top: 30%;
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    font-family: 'Playfair Display', serif;
}

.section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--secondary-color), var(--gold));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 1rem;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--secondary-color), var(--gold));
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem;
    }
}

.story-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.schedule::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--gold));
}

.schedule-item {
    width: 45%;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--gold);
    position: relative;
    transition: transform 0.3s;
    text-align: center;
    margin-bottom: 0.5rem;
}

.schedule-item-left {
    margin-right: auto;
    transform: translateX(-20px);
}

.schedule-item-right {
    margin-left: auto;
    transform: translateX(20px);
}

.schedule-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.schedule-item-left::before {
    right: -60px;
}

.schedule-item-right::before {
    left: -60px;
}

.schedule-item::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    top: 50%;
    transform: translateY(-50%);
}

.schedule-item-left::after {
    right: -40px;
}

.schedule-item-right::after {
    left: -40px;
}

.schedule-item:hover {
    transform: translateY(-5px);
}

.schedule-item-left:hover {
    transform: translateY(-5px) translateX(-10px);
}

.schedule-item-right:hover {
    transform: translateY(-5px) translateX(10px);
}

.schedule-item h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.event-location {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.event-address {
    font-size: 1rem;
    color: var(--light-text);
    font-style: italic;
}

.venue-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.venue-item {
    margin-bottom: 4rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.venue-content {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.venue-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.venue-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    min-height: 300px;
}

.venue-text h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.venue-description {
    color: var(--text-color);
    line-height: 1.6;
    flex: 1;
}

.venue-description p {
    margin-bottom: 1rem;
}

.venue-address {
    margin-top: 1rem;
    color: var(--light-text);
    font-style: italic;
}

.venue-map {
    width: 100%;
    height: 450px;
    border-top: 1px solid var(--gold);
}

.venue-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    margin-top: auto;
    align-self: flex-start;
}

.map-link:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .venue-content {
        flex-direction: column;
        padding: 1rem;
    }

    .venue-image {
        flex: 0 0 250px;
    }

    .venue-image img {
        min-height: 250px;
    }

    .venue-text {
        min-height: auto;
    }
    
    .map-link {
        margin-top: 1rem;
    }
}

.venue-item iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.venue-item iframe:hover {
    transform: scale(1.02);
}

.venue-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.venue-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: left;
    line-height: 1.8;
    color: var(--text-color);
}

.venue-description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.venue-description p:last-child {
    margin-bottom: 0;
}

.registry {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.registry-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid var(--secondary-color);
}

.registry-link:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group label::after {
    content: ' *';
    color: var(--secondary-color);
}

.form-group-optional label::after {
    content: '';
}

.form-group label:has(input[type="radio"])::after,
.form-group label:has(textarea)::after {
    content: '';
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    background-color: #fff8f8;
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

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

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1);
}

.form-group textarea::placeholder {
    color: var(--light-text);
    font-style: italic;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.form-group textarea:focus::placeholder {
    opacity: 0.3;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--text-color);
    color: var(--white);
    border-top: 2px solid var(--secondary-color);
}

#histoire {

    
}

#programme {
    position: relative;
    padding-top: 2rem;
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.95)), url('images/domaine-chasse-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: relative;
    border-radius: 30px;
}

#lieux {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.location-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid var(--secondary-color);
    transition: all 0.3s;
    font-size: 0.9rem;
}

.location-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .schedule {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        padding: 2rem 0;
    }

    .schedule::before {
        display: none;
    }

    .schedule-item {
        width: 100%;
        padding: 1.5rem;
        background-color: var(--white);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border: 1px solid var(--gold);
        position: relative;
        transition: transform 0.3s;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .schedule-item-left,
    .schedule-item-right {
        margin: 0;
        transform: none;
    }

    .schedule-item::before,
    .schedule-item::after {
        display: none;
    }

    .schedule-item:hover {
        transform: translateY(-5px);
    }

    .schedule-item-left:hover,
    .schedule-item-right:hover {
        transform: translateY(-5px);
    }
}

.detailed-schedule {
    max-width: 800px;
    margin: 0 auto;
}

.day-schedule {
    margin-bottom: 3rem;
}

.day-schedule h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.schedule-item-detailed {
    width: 100%;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--gold);
    margin-bottom: 2rem;
    transition: transform 0.3s;
}

.schedule-item-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.schedule-item-detailed h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Dancing Script', cursive;
}

.schedule-item-detailed .event-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
}

.schedule-item-detailed .event-location {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.schedule-item-detailed .event-address {
    font-size: 1.1rem;
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 1rem;
}

.schedule-item-detailed .event-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.programme-link-container {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
}

.programme-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.programme-link:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
    border-color: var(--gold);
}

.schedule-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.schedule-item-link:hover .schedule-item {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.schedule-item-link:hover .event-location {
    color: var(--secondary-color);
}

.hero-image {
    display: none;
}

.story-image {
    width: 80px;
    height: auto;
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.schedule-image {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.registry-image {
    width: 70px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.rsvp-image {
    width: 80px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .story-image {
        float: none;
        display: block;
        margin: 0 auto 1rem;
    }
    
    .schedule-image,
    .registry-image,
    .rsvp-image {
        width: 50px;
    }
}

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

.side-logos {
    display: none;
}

.content-center {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .section-logo {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
}

/* Styles spécifiques pour les logos de la page programme */
#programme .section-logo {
    width: 150px;
    opacity: 0.15;
    transition: all 0.3s ease;
}

#programme .section-logo:hover {
    opacity: 0.25;
    transform: scale(1.05) rotate(3deg);
}

#programme .section-logo:nth-child(1) {
    left: 5%;
    top: 20%;
}

#programme .section-logo:nth-child(2) {
    right: 8%;
    top: 60%;
}

.retour-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--gold);
}

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

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

.form-group label::after {
    content: ' *';
    color: var(--secondary-color);
}

.form-group label:has(input[type="radio"])::after,
.form-group label:has(textarea)::after {
    content: '';
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gold);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(122, 0, 20, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: var(--text-color);
    transform: translateY(-2px);
}

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

.accommodation-option {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--gold);
    text-align: center;
    transition: all 0.3s ease;
}

.accommodation-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.accommodation-option h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.accommodation-option p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.accommodation-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.accommodation-link:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

.accommodation-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
    color: var(--text-color);
}

.accommodation-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
    max-width: 100%;
}

.accommodation-item {
    background-color: var(--primary-color);
    padding: 1.2rem;
    border-radius: 6px;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.accommodation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.accommodation-item > * {
    position: relative;
    z-index: 1;
}

.accommodation-item[data-hotel="bretagne"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1b/3b/1a/1c/hotel-le-bretagne.jpg');
}

.accommodation-item[data-hotel="saint-michel"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1d/3a/1b/1d/hotel-saint-michel.jpg');
}

.accommodation-item[data-hotel="maison-foret"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1c/3c/1e/1c/la-maison-de-la-foret.jpg');
}

.accommodation-item[data-hotel="gite-val"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1b/3b/1d/1c/le-gite-du-val.jpg');
}

.accommodation-item[data-hotel="camping-chaussee"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1d/3a/1c/1d/camping-de-la-chaussee.jpg');
}

.accommodation-item[data-hotel="gandalf"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1b/3b/1a/1c/hotel-magique.jpg');
}

.accommodation-item[data-hotel="galadriel"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1d/3a/1b/1d/hotel-charme.jpg');
}

.accommodation-item[data-hotel="moria"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1c/3c/1e/1c/gite-troglodyte.jpg');
}

.accommodation-item[data-hotel="frodon"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1b/3b/1d/1c/maison-hobbit.jpg');
}

.accommodation-item[data-hotel="rivendell"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1d/3a/1c/1d/camping-nature.jpg');
}

.accommodation-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.accommodation-item .location,
.accommodation-item .distance,
.accommodation-item .description {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.reservation-info {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--gold);
    text-align: center;
}

.reservation-info p {
    color: var(--text-color);
    line-height: 1.8;
}

.reservation-info a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.reservation-info a:hover {
    color: var(--gold);
}

.hotel-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--gold);
}

.hotel-section h2 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.hotel-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.8;
    color: var(--text-color);
}

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

.feature {
    padding: 1.5rem;
    background-color: var(--primary-color);
    border-radius: 10px;
    text-align: center;
}

.feature h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.feature li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.accommodation-carousel {
    position: relative;
    max-width: 800px;
    margin: 1.5rem auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.accommodation-carousel.gites-carousel {
    margin-bottom: 3rem;
}

.accommodation-carousel .carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.accommodation-carousel .carousel-slide {
    min-width: 100%;
    position: relative;
}

.accommodation-carousel .carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.accommodation-carousel .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.8rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.accommodation-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    color: var(--secondary-color);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.accommodation-carousel .carousel-btn:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.accommodation-carousel .carousel-btn.prev {
    left: 1rem;
}

.accommodation-carousel .carousel-btn.next {
    right: 1rem;
}

.accommodation-carousel .carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.accommodation-carousel .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.accommodation-carousel .carousel-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .accommodation-carousel .carousel-slide img {
        height: 300px;
    }
}

.camping-car-info {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--gold);
    text-align: center;
}

.camping-car-info h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.camping-car-info p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.video-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--gold);
    text-align: center;
}

.video-container iframe {
    width: 100%;
    max-width: 640px;
    height: 360px;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .video-container iframe {
        height: 240px;
    }
}

.formulaire-link-container {
    text-align: center;
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.formulaire-link {
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 3px solid var(--secondary-color);
    position: relative;
    animation: pulse 2s infinite;
}

.formulaire-link:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(122, 0, 20, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(122, 0, 20, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(122, 0, 20, 0);
    }
}

@media (max-width: 768px) {
    .formulaire-link {
        padding: 1.2rem 2.5rem;
        font-size: 1.3rem;
    }
}

.hidden {
    display: none;
}

.presence-dependent {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
}

.presence-dependent:not(.hidden) {
    opacity: 1;
    max-height: 200px;
    margin-bottom: 1.5rem;
}

.info-text {
    margin-top: 1rem;
    font-style: italic;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.gite-options,
.hotel-options {
    background-color: rgba(248, 229, 238, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--gold);
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.gite-options:not(.hidden),
.hotel-options:not(.hidden) {
    opacity: 1;
    max-height: 300px;
    margin-bottom: 1.5rem;
}

.gite-options select,
.hotel-options select {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.absent-message {
    background-color: rgba(248, 229, 238, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--gold);
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.absent-message:not(.hidden) {
    opacity: 1;
    max-height: 300px;
    margin-bottom: 1.5rem;
}

.absent-message .info-text {
    margin-bottom: 1rem;
}

.absent-message a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.absent-message a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* Options de polices pour le titre */
.font-options {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
    border-top: 2px solid var(--gold);
}

.font-options h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

.font-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gold);
}

.font-option h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.preview {
    font-size: 3.5rem;
    margin: 1rem 0;
    text-align: center;
    color: var(--secondary-color);
    line-height: 1.2;
}

.preview-date {
    font-size: 2rem;
    color: var(--gold);
    margin-top: 1rem;
    text-align: center;
}

/* Nouvelles polices calligraphiques */
.font-dancing-script {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
}

.font-great-vibes {
    font-family: 'Great Vibes', cursive;
}

.font-alex-brush {
    font-family: 'Alex Brush', cursive;
}

.font-parisienne {
    font-family: 'Parisienne', cursive;
}

.font-mr-de-haviland {
    font-family: 'Mr De Haviland', cursive;
}

.font-petit-formal {
    font-family: 'Petit Formal Script', cursive;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Style actuel */
.font-allura {
    font-family: 'Allura', cursive;
}

@media (max-width: 768px) {
    .programme-link-container {
        position: static;
        text-align: center;
        margin-top: 2rem;
    }
}

.intro-box {
    background-color: white;
    color: var(--text-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid var(--gold);
}

.intro-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-color);
}

.gites-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gite-photo {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold);
}

.gite-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gite-photo:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gites-gallery {
        grid-template-columns: 1fr;
    }
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.friday-section {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: var(--primary-color);
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.friday-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.friday-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.accommodation-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.accommodation-category {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gold);
}

.accommodation-category h3 {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
}

.accommodation-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.accommodation-item {
    background-color: var(--primary-color);
    padding: 1.2rem;
    border-radius: 6px;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.accommodation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.accommodation-item > * {
    position: relative;
    z-index: 1;
}

.accommodation-item[data-hotel="bretagne"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1b/3b/1a/1c/hotel-le-bretagne.jpg');
}

.accommodation-item[data-hotel="saint-michel"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1d/3a/1b/1d/hotel-saint-michel.jpg');
}

.accommodation-item[data-hotel="maison-foret"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1c/3c/1e/1c/la-maison-de-la-foret.jpg');
}

.accommodation-item[data-hotel="gite-val"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1b/3b/1d/1c/le-gite-du-val.jpg');
}

.accommodation-item[data-hotel="camping-chaussee"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1d/3a/1c/1d/camping-de-la-chaussee.jpg');
}

.accommodation-item[data-hotel="gandalf"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1b/3b/1a/1c/hotel-magique.jpg');
}

.accommodation-item[data-hotel="galadriel"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1d/3a/1b/1d/hotel-charme.jpg');
}

.accommodation-item[data-hotel="moria"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1c/3c/1e/1c/gite-troglodyte.jpg');
}

.accommodation-item[data-hotel="frodon"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1b/3b/1d/1c/maison-hobbit.jpg');
}

.accommodation-item[data-hotel="rivendell"]::before {
    background-image: url('https://media-cdn.tripadvisor.com/media/photo-s/1d/3a/1c/1d/camping-nature.jpg');
}

.accommodation-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.accommodation-item .location,
.accommodation-item .distance,
.accommodation-item .description {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.booking-link {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.booking-link:hover {
    background-color: var(--gold);
}

.booking-note {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--primary-color);
    border-radius: 8px;
    border: 1px solid var(--gold);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .accommodation-list {
        grid-template-columns: 1fr;
    }
    
    .accommodation-category {
        padding: 1rem;
    }
}

.construction-banner {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 1rem;
    font-weight: bold;
    border-bottom: 2px solid #ffeeba;
    position: relative;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        background-color: #fff3cd;
    }
    50% {
        background-color: #ffeeba;
    }
    100% {
        background-color: #fff3cd;
    }
}

/* Styles pour la page de confirmation */
.confirmation-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.confirmation-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.confirmation-title {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 20px;
}

.confirmation-message {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.back-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #7a0014;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #b71c1c;
}

.deadline-info {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: -1rem 0 2rem 0;
    font-style: italic;
}

.registry-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

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

.registry-store {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--gold);
}

.registry-store:hover {
    transform: translateY(-5px);
}

.registry-store h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.registry-store p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.registry-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.registry-link:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
}

.registry-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--primary-color);
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.registry-note p {
    color: var(--text-color);
    font-style: italic;
}

@media (max-width: 768px) {
    .registry-stores {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .registry-store {
        padding: 1.5rem;
    }
}

.hebergements-columns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin: 2rem auto;
    max-width: 1400px;
    width: 100%;
    position: relative;
}

.hebergements-col {
    flex: 1 1 0;
    padding: 2rem;
    min-width: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0;
    position: relative;
    z-index: 1;
}

.hebergements-col.gauche {
    border-radius: 20px 0 0 20px;
    border-right: none;
}

.hebergements-col.droite {
    border-radius: 0 20px 20px 0;
    border-left: none;
}

.separateur-colonnes {
    width: 6px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--gold));
    border-radius: 8px;
    margin: 0;
    position: relative;
    z-index: 2;
    flex: 0 0 6px;
}

@media (max-width: 1000px) {
    .hebergements-columns {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .separateur-colonnes {
        display: none;
    }
    
    .hebergements-col {
        width: 100%;
        margin-bottom: 2rem;
        border-radius: 20px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .hebergements-col.gauche,
    .hebergements-col.droite {
        border: 1px solid var(--gold);
    }
}

@media (max-width: 768px) {
    .hebergements-columns {
        padding: 0 0.5rem;
    }
    
    .hebergements-col {
        padding: 1.5rem;
    }
}

.subsection-title {
    text-align: center;
    margin: 2rem 0 1.5rem;
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 0.8rem;
}

.subsection-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--secondary-color), var(--gold));
    border-radius: 2px;
}

.accommodation-list-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0 2rem;
}

.accommodation-item-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
    background-color: #f8f8f8;
    border: 1px solid var(--gold);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accommodation-item-simple:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
    background-color: #f5f5f5;
}

.accommodation-info {
    flex: 1;
}

.accommodation-item-simple h5 {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.accommodation-description {
    color: var(--text-color);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .accommodation-item-simple {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .accommodation-info {
        margin-bottom: 0;
    }
}

.accommodation-info-text {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gold);
}

.accommodation-info-text p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .accommodation-info-text {
        padding: 1rem;
        margin-bottom: 1rem;
    }
}

/* Styles pour la page liste-mariage.html (pastilles) */
.pastilles-explication {
    text-align: center;
    margin: 2.5rem 0 1.5rem 0;
}
.pastilles-liste {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.pastille {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 180px;
    max-width: 270px;
    height: 170px;
    padding: 2em 1.2em 1.2em 1.2em;
    border-radius: 1.5em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    background: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    border: 2.5px solid #c9a14a;
}
.pastille .montant {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 0.5em;
    padding: 0.2em 0.9em;
    border-radius: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2.2em;
    color: #000000;
    margin-top: 4px;
}
.pastille .desc {
    font-size: 1em;
    color: #444;
    text-align: center;
} 