/* style-informations.css */

/* Même surcharge que pour RSVP pour le scroll */
html,
body {
    display: block !important;
    height: auto !important;
    min-height: 100vh;
    overflow-y: auto !important;
    align-items: initial !important;
    justify-content: initial !important;
}

.card-container {
    width: 70% !important;
    max-width: 70% !important;
    margin: 0 auto;
    padding: 80px 20px 40px 20px !important;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .card-container {
        width: 95% !important;
        max-width: 95% !important;
    }
}

.content {
    width: 100% !important;
    max-width: 100% !important;
    align-items: stretch !important;
}

.info-content {
    font-family: 'Nunito', sans-serif;
    color: #5a4e49;
}

.info-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Navigation par onglets - style identique aux boutons de l'accueil */
.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    width: 180px;
    height: 60px;
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    border: none;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.6;
}

.tab-btn:hover {
    transform: scale(1.05);
    opacity: 0.85;
}

.tab-btn.active {
    opacity: 1;
    transform: scale(1.05);
}

.tab-btn.button-blue {
    background-image: url('images/blue_button.png');
}

.tab-btn.button-pink {
    background-image: url('images/red_button.png');
}

.tab-btn.button-green {
    background-image: url('images/green_button.png');
}

@media (max-width: 768px) {
    .tab-btn {
        width: 140px;
        height: 50px;
        font-size: 1.1rem;
    }
}

/* Contenu des onglets */
.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #796c66;
    margin-bottom: 25px;
    text-align: center;
}

/* Programme - Timeline */
.day-block {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.day-block h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #a1887f;
    margin-bottom: 20px;
    border-bottom: 2px dashed #e0e0e0;
    padding-bottom: 10px;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.time {
    background-color: #cdb4db;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
}

/* Lieux */
.location-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.location-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #a1887f;
    margin-bottom: 10px;
}

.location-card .address {
    font-weight: bold;
    color: #5a4e49;
    margin-bottom: 5px;
}

.map-container {
    margin-top: 15px;
}

/* Hébergement */
.intro-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.accommodation-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-5px);
}

.accommodation-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.accommodation-info {
    padding: 20px;
}

.accommodation-info h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    color: #a1887f;
    margin-bottom: 10px;
}

.accommodation-info .capacity {
    color: #796c66;
    margin-bottom: 5px;
}

.accommodation-info .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #5a4e49;
    margin-bottom: 10px;
}

.accommodation-info .description {
    color: #666;
    font-size: 0.95rem;
}

.booking-note {
    text-align: center;
    padding: 20px;
    background: rgba(205, 180, 219, 0.2);
    border-radius: 10px;
    font-size: 1.1rem;
}

.booking-note a {
    color: #a1887f;
    font-weight: bold;
}

/* Page navigation */
.page-nav {
    position: static;
    margin-bottom: 20px;
    text-align: left;
}

.nav-link {
    text-decoration: none;
    color: #5a4e49;
    font-weight: bold;
    font-size: 1.1rem;
}