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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fef7ff 0%, #f8fafc 50%, #f0f9ff 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Reduce container padding on left side */
header .container {
    padding-left: 10px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #C36359; /* Terracotta */
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 3rem;
}

.logo:hover {
    color: #A54E45; /* Darker terracotta */
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #C36359; /* Terracotta */
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #A54E45; /* Darker terracotta */
}

.logo-image {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
    margin-top: 8px;
}

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

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
    }
    
    .logo {
        font-size: 1.2rem;
        gap: 0.3rem;
        margin-right: 1rem;
    }
    
    header .container {
        padding-left: 15px;
    }
}

.mobile-menu {
    display: none;
    cursor: pointer;
    color: #C36359; /* Terracotta */
    font-weight: 900;
    font-size: 1.5rem;
    padding: 5px;
    transform: translateY(-1px);
}

.mobile-menu:hover {
    color: #A54E45; /* Darker terracotta */
}

/* Hero Section */
.hero {
    background:
        linear-gradient(to right, 
            rgba(195, 99, 89, 0.15) 0%, 
            transparent 15%, 
            transparent 85%, 
            rgba(195, 99, 89, 0.15) 100%
        ),
        url('images/cover.jpg') center 20%;
    background-size: cover;
    padding: 80px 0 80px;
    text-align: center;
    min-height: 120vh;
    background-attachment: fixed;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #8b3428; /* Dark terracotta for readability */
    text-align: center;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #8b3428; /* Dark terracotta */
    text-align: center;
}

.hero h1,
.hero p {
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-top-quote {
    font-family: 'Kalam', 'Dancing Script', cursive;
    font-size: 1.5rem;
    color: white;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.9;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .hero-top-quote {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}


.cta-button {
    background: #C36359; /* Terracotta */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(195, 99, 89, 0.4);
    background: #A54E45; /* Darker terracotta */
}

@media (max-width: 768px) {
    .hero {
        background-size: cover;
        background-position: center 40%;
        min-height: 60vh;
        background-attachment: scroll !important;
    }
}

/* Calendar Section */
.calendar-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #C36359; /* Terracotta */
    font-weight: 600;
}

.location-section .section-title {
    margin-bottom: 0.75rem;
}

.speakers-section .section-title {
    margin-bottom: 0.75rem;
}

.workshops-section .section-title {
    margin-bottom: 0.75rem;
}

/* Workshop photo adjustments */
.workshops-section .gallery-item:nth-child(1) img {
    object-fit: cover !important;
    object-position: center 35% !important;
    transform: none !important;
}

.workshops-section .gallery-item:nth-child(3) img {
    object-fit: cover !important;
    object-position: center 70% !important;
    transform: none !important;
}

.workshops-section .gallery-item:nth-child(7) img {
    object-fit: cover !important;
    object-position: center center;
    width: 100%;
    height: 100%;
}

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

.retreat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.retreat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #C36359; /* Terracotta */
}

.retreat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.retreat-header-multiple {
    justify-content: center;
    gap: 1rem;
}

.retreat-date {
    background: linear-gradient(135deg, #C36359, #fbbf24);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
}

.retreat-price {
    background: linear-gradient(135deg, #10b981, #06b6d4);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
}

.retreat-location {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.retreat-location:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    color: white;
    text-decoration: none;
}

.retreat-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.retreat-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #C36359; /* Terracotta */
    font-style: italic;
    font-weight: 500;
}

.retreat-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.program-item .program-activity .program-activity-title .speaker-name {
    color: #C36359; /* Terracotta */
    font-weight: 600;
    font-style: italic;
    margin-left: 4px;
    font-size: 0.95em;
    opacity: 0.9;
}

.program-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.day-program {
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #f0f9ff 100%);
    border-radius: 12px;
    border-left: 4px solid #C36359; /* Terracotta */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.day-program:last-child {
    margin-bottom: 0;
}

.day-program p {
    margin: 0;
}

.day-program p:first-child {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.day-details {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: normal;
}

.retreat-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight-tag {
    background: linear-gradient(135deg, #fce8e6, #fef3f2);
    color: #A54E45; /* Dark terracotta */
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #C36359;
}

.spots-left {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.spots-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #10b981;
}

.spots-indicator.limited {
    background: #f59e0b;
}

.spots-indicator.full {
    background: #ef4444;
}

.retreat-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-button {
    width: 100%;
    background: linear-gradient(135deg, #fce8e6, #fef3f2);
    color: #A54E45; /* Dark terracotta */
    padding: 12px;
    border: 2px solid #C36359;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.program-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 99, 89, 0.3);
    background: linear-gradient(135deg, #fef3f2, #fce8e6);
}

.book-button {
    width: 100%;
    background: linear-gradient(135deg, #C36359, #E89A73);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(195, 99, 89, 0.4);
}

.book-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Sejours Tabs */
.sejours-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 30px;
    border: 2px solid #8b5cf6;
    background: white;
    color: #8b5cf6;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-width: 220px;
}

.tab-date {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.tab-button.active {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    border: none;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

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

/* Teaser Card Styling */
.retreat-teaser {
    position: relative;
    background: linear-gradient(135deg, #fef7ff 0%, #f0f9ff 100%);
    border: 2px solid #8b5cf6;
}

.teaser-badge {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.teaser-info {
    margin: 2rem 0;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 15px;
    border-left: 4px solid #8b5cf6;
}

.teaser-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.teaser-detail:last-child {
    border-bottom: none;
}

.teaser-icon {
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
}

.teaser-cta {
    text-align: center;
    margin-top: 2rem;
}

.teaser-message {
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.notify-button {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.notify-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Activities Section */
.activities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef7ff 0%, #f0f9ff 50%, #f0fdf4 100%);
}

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

.activity-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

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

.activity-image {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.activity-image img.zoom-out-2x {
    object-fit: contain;
    object-position: center;
}

.activity-image img.zoom-out-85 {
    object-fit: contain;
    object-position: center;
}

.activity-image img.position-up-30 {
    object-position: center calc(50% - 20px);
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-card:hover .activity-image img.zoom-out-2x {
    transform: scale(1.05);
}

.activity-card:hover .activity-image img.zoom-out-85 {
    transform: scale(1.05);
}

.activity-icon {
    font-size: 3rem;
    display: none;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #fef3c7, #fecaca);
    border-radius: 10px;
}

.activity-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #C36359; /* Terracotta */
    font-weight: 600;
}

/* Speakers Section */
.speakers-section {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.speaker-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C36359, #06b6d4, #10b981, #fbbf24);
    z-index: 1;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(195, 99, 89, 0.25);
}

.speaker-card:nth-child(5) .speaker-image img {
    transform: scale(1.4) translate(0px, -15px) !important;
    object-position: center center;
}

.speaker-card:nth-child(6) .speaker-image img {
    transform: translate(3px, -2px) scale(1.1) !important;
}

.speaker-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #C36359, #06b6d4);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.speaker-image img.position-down-20 {
    object-position: center calc(50% + 20px);
}

.speaker-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    background: linear-gradient(135deg, #C36359, #06b6d4);
}

.speaker-card:nth-child(3) .speaker-image img {
    object-position: center 20%;
}

.speaker-card:nth-child(4) .speaker-image img {
    object-position: left center;
}

.speaker-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.speaker-name-icon {
    width: 2.4rem;
    height: 2.4rem;
    display: inline-block;
    vertical-align: middle;
    margin-right: calc(0.5rem - 15px);
    transform: translateY(-3px);
}

.speaker-specialty {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #C36359; /* Terracotta */
    font-weight: 500;
    text-align: center;
    font-style: italic;
}

.speaker-bio {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
}

.speaker-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.service-tag {
    background: linear-gradient(135deg, #C36359, #E89A73);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.speaker-description {
    color: #666;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #fef7ff 50%, #f0f9ff 100%);
}

.location-photo {
    position: relative;
    overflow: hidden;
}

.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: white;
}

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

.location-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

/* Workshops Section */
.workshops-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef7ff 0%, #fff7ed 50%, #fef3c7 100%);
}

.workshops-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.workshop-photo {
    position: relative;
    overflow: hidden;
}

.workshop-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.workshop-photo:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    transition: transform 0.3s;
}

.gallery-item:nth-child(1) {
    background: linear-gradient(135deg, #a78bfa, #c084fc);
}

.gallery-item:nth-child(2) {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.gallery-item:nth-child(3) {
    background: linear-gradient(135deg, #fb7185, #f472b6);
}

.gallery-item:nth-child(4) {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.gallery-item:nth-child(5) {
    background: linear-gradient(135deg, #10b981, #059669);
}

.gallery-item:nth-child(6) {
    background: linear-gradient(135deg, #f472b6, #ec4899);
}

.gallery-item:nth-child(7) {
    background: linear-gradient(135deg, #34d399, #10b981);
}

.gallery-item:nth-child(8) {
    background: linear-gradient(135deg, #fbbf24, #fb7185);
}

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

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 50%, #e0e7ff 100%);
}

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

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-author {
    font-weight: 600;
    color: #C36359; /* Terracotta */
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #C36359; /* Terracotta */
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: #C36359; /* Terracotta */
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon.facebook {
    background: #1877F2;
    color: white;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-large {
    max-width: 800px;
    width: 95%;
}

.program-modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f9ff;
}

.program-modal-title {
    font-size: 2rem;
    color: #C36359; /* Terracotta */
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.program-modal-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.program-day {
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #fef7ff 0%, #f0f9ff 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 5px solid #C36359; /* Terracotta */
}

.program-day-title {
    font-size: 1.4rem;
    color: #C36359; /* Terracotta */
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-schedule {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-time {
    font-weight: 600;
    color: #C36359; /* Terracotta */
    font-size: 0.9rem;
    min-width: 37px;
    background: linear-gradient(135deg, #fce8e6, #fef3f2);
    padding: 4px 8px;
    border-radius: 8px;
    text-align: center;
}

.program-activity {
    flex: 1;
}

.program-activity-title {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.program-activity-details {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #C36359; /* Terracotta */
}

.booking-form {
    margin-top: 2rem;
    padding: 0 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C36359; /* Terracotta */
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #C36359, #06b6d4);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(195, 99, 89, 0.3);
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 0.5rem;
    justify-content: center;
}

.payment-option {
    display: flex;
    align-items: stretch;
    position: relative;
    flex: 1;
    max-width: 300px;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-label {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    padding: 1rem !important;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    min-height: 80px !important;
    max-height: 80px !important;
    text-align: center;
    gap: 0.5rem !important;
}

.payment-label:hover {
    border-color: #C36359; /* Terracotta */
    background: #fce8e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 99, 89, 0.2);
}

.payment-option input[type="radio"]:checked + .payment-label {
    border-color: #C36359; /* Terracotta */
    background: linear-gradient(135deg, #fce8e6, #fef3f2);
    box-shadow: 0 6px 20px rgba(195, 99, 89, 0.3);
    transform: translateY(-2px);
}

.payment-option input[type="radio"]:checked + .payment-label::after {
    content: "✓";
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    color: #C36359; /* Terracotta */
    font-weight: bold;
    font-size: 1rem;
    background: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.payment-icon {
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px;
    flex-shrink: 0;
    background: transparent !important;
    margin: 0 !important;
}

.payment-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 4px;
}

.payment-label span {
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    color: #333 !important;
    line-height: 1.1 !important;
    margin: 0 !important;
}

.payment-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    background: linear-gradient(135deg, #fef3c7, #fef7cd);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
    text-align: center;
}

.payment-option input[type="radio"]:focus + .payment-label {
    outline: 2px solid #C36359; /* Terracotta */
    outline-offset: 2px;
}

/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.booking-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: bookingModalSlideIn 0.3s ease-out;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes bookingModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.booking-modal-header {
    background: linear-gradient(135deg, #C36359 0%, #A54E45 100%);
    color: white;
    padding: 1rem;
    text-align: center;
    position: relative;
}

.booking-modal-header h2 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 600;
}

.booking-modal-header .step-indicator {
    margin-top: 15px;
    font-size: 0.9em;
    opacity: 0.9;
}

.booking-modal .close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-modal .close:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.booking-modal-body {
    padding: 25px 40px;
}

.retreat-info {
    background: none;
    color: #333;
    padding: 0;
    border-radius: 0;
    margin-bottom: 20px;
    text-align: left;
}

.retreat-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
    color: #333;
    font-weight: 600;
}

.retreat-info p {
    margin: 0;
    opacity: 1;
    color: #666;
    font-size: 0.95rem;
}

.booking-modal .booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 0;
    padding: 0;
}

.booking-modal .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.booking-modal .form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.booking-modal .form-group input,
.booking-modal .form-group textarea {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.2s;
    font-family: inherit;
}

.booking-modal .form-group input:focus,
.booking-modal .form-group textarea:focus {
    outline: none;
    border-color: #C36359; /* Terracotta */
    box-shadow: 0 0 0 3px rgba(195, 99, 89, 0.1);
}

.required {
    color: #e74c3c;
}

.booking-modal .payment-options {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.booking-modal .payment-option {
    flex: 1;
}

.booking-modal .payment-option input[type="radio"] {
    display: none;
}

.booking-modal .payment-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.booking-modal .payment-option input[type="radio"]:checked + .payment-label {
    border-color: #C36359; /* Terracotta */
    background: linear-gradient(135deg, #fce8e6 0%, #fef3f2 100%);
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(195, 99, 89, 0.3);
}

.booking-modal .payment-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f8f9fa;
}

.booking-modal .payment-option input[type="radio"]:checked + .payment-label .payment-icon {
    background: rgba(195, 99, 89, 0.1);
}

.booking-modal .payment-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.booking-modal .payment-label span {
    font-weight: 500;
    font-size: 0.9em;
}

.booking-modal .payment-note {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    font-size: 0.9em;
    color: #666;
    text-align: center;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #C36359 0%, #A54E45 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(195, 99, 89, 0.3);
}

.btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e1e5e9;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.booking-modal .submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.booking-modal .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.progress-step {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.progress-step.active {
    background: white;
    transform: scale(1.2);
}

.progress-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.success-content {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 4em;
    margin-bottom: 20px;
    color: #28a745;
}

.success-content h3 {
    color: #333;
    margin-bottom: 15px;
}

.success-content p {
    color: #666;
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef7ff 0%, #f8fafc 50%, #f0f9ff 100%);
}

.founder-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.founder-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #C36359, #06b6d4);
    box-shadow: 0 10px 30px rgba(195, 99, 89, 0.3);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C36359, #06b6d4);
}

.founder-content {
    text-align: left;
}

.founder-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 700;
}

.founder-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #C36359; /* Terracotta */
    font-weight: 600;
    font-style: italic;
}

.founder-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0;
    font-weight: 500;
}

.founder-mission {
    font-style: italic;
    font-size: 1.05rem;
    color: #C36359; /* Terracotta */
    background: linear-gradient(135deg, #fef3c7, #f0f9ff);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #C36359; /* Terracotta */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.founder-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fce8e6, #fef3f2);
    border-radius: 12px;
    border-left: 3px solid #C36359; /* Terracotta */
    text-align: left;
}

.value-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.value-text {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.founder-emoji-image {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.founder-title-emoji {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.founder-mission-secondary {
    font-style: italic;
    color: #C36359; /* Terracotta */
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1rem;
    padding-left: 1rem;
    border-left: 3px solid #C36359; /* Terracotta */
}

.highlight-text {
    color: #C36359; /* Terracotta */
    font-weight: 600;
}

.founder-intro-handwritten {
    font-family: 'Kalam', 'Dancing Script', 'Caveat', cursive;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
    font-weight: 400;
    transform: rotate(-0.5deg);
    padding: 1.5rem;
    background: linear-gradient(135deg, #fefefe, #f9f9f9);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.handwritten-signature {
    display: block;
    text-align: right;
    margin-right: 25%;
    margin-top: 0rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #C36359; /* Terracotta */
    font-style: italic;
    transform: rotate(1deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

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

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

    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .activity-image {
        height: 180px;
    }

    .activity-image img.show-more-mobile {
        object-fit: contain;
        padding: 1rem;
        background: white;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .activity-image img.zoom-slight-mobile {
        object-fit: contain;
        object-position: center;
        transform: scale(1.94);
    }

    .activity-image img.zoom-slight-mobile.position-up-30 {
        object-position: center calc(50% - 10px);
    }

    .activity-card:hover .activity-image img.zoom-slight-mobile {
        transform: scale(2.0);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .location-section .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .workshops-section .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .speaker-card {
        padding: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .founder-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .founder-image {
        width: 200px;
        height: 200px;
    }

    .founder-content {
        text-align: center;
    }

    .founder-title {
        font-size: 1.8rem;
    }

    .founder-subtitle {
        font-size: 1.1rem;
    }

    .founder-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .retreat-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .retreat-date,
    .retreat-price,
    .retreat-location {
        width: 100%;
        text-align: center;
    }

    .payment-options {
        flex-direction: column;
        gap: 1rem;
    }

    .payment-option {
        max-width: 100%;
    }

    .payment-label {
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
        min-height: 60px !important;
        max-height: 60px !important;
        text-align: left !important;
        padding: 0.75rem !important;
    }

    .payment-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .payment-label span {
        align-self: center !important;
        font-size: 0.85rem !important;
    }

    .payment-option input[type="radio"]:checked + .payment-label::after {
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .booking-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .booking-modal-body {
        padding: 30px 25px;
    }

    .booking-modal .payment-options {
        flex-direction: column;
    }

    .button-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .location-section .gallery-grid {
        grid-template-columns: 1fr;
    }

    .workshops-section .gallery-grid {
        grid-template-columns: 1fr;
    }
}

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #C36359; /* Terracotta */
    outline-offset: 2px;
}

/* Image Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: lightboxZoom 0.3s ease-out;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #C36359;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: #f1f1f1;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 2001;
    background-color: rgba(0, 0, 0, 0.3);
}

.lightbox-prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(195, 99, 89, 0.8);
    color: white;
}

.lightbox-caption {
    display: none;
}

.gallery-item img,
.location-photo img,
.workshop-photo img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover,
.location-photo img:hover,
.workshop-photo img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fountain-image {
    object-position: -170px center;
}

.bedroom-image {
    object-position: -70px center;
}

/* Location Section Subtitle */
.location-section .section-subtitle {
    margin-bottom: 1rem;
}

/* Hotel Accordion */
.hotel-accordion {
    max-width: 600px;
    margin: 1rem auto 2rem;
}

.accordion-toggle {
    width: 100%;
    background: linear-gradient(135deg, #C36359, #A54E45);
    color: white;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(195, 99, 89, 0.3);
}

.accordion-toggle:hover {
    box-shadow: 0 6px 20px rgba(195, 99, 89, 0.4);
    filter: brightness(1.05);
}

.accordion-toggle:focus {
    outline: none !important;
    border: none !important;
}

.accordion-toggle:focus-visible {
    outline: none !important;
    border: none !important;
}

.accordion-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.accordion-toggle.active {
    border-radius: 12px 12px 0 0;
}

.accordion-toggle.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease-out;
    background: transparent;
    border-radius: 0 0 12px 12px;
    opacity: 0;
}

.accordion-content.active {
    max-height: 500px;
    padding: 1.5rem;
    margin-top: 0;
    border: 2px solid #C36359;
    border-top: none;
    box-shadow: 0 4px 15px rgba(195, 99, 89, 0.1);
    background: white;
    opacity: 1;
}

.hotel-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #fef7ff, #f0f9ff);
    border-radius: 10px;
    border-left: 3px solid #C36359;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(195, 99, 89, 0.2);
}

.amenity-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.amenity-text {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 12px;
    }

    .hotel-amenities {
        grid-template-columns: 1fr;
    }

    .accordion-toggle {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
}