/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b7355;
    --accent-color: #f5e6d3;
    --accent-color-2: #e8d5c4;
    --accent-color-3: #c9a882;
    --dark-color: #2c2c2c;
    --light-color: #f8f8f8;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --gradient-1: linear-gradient(135deg, #f5e6d3 0%, #e8d5c4 100%);
    --gradient-2: linear-gradient(135deg, #d4a574 0%, #c9a882 100%);
    --gradient-about: linear-gradient(180deg, #faf8f5 0%, #f5e6d3 50%, #f0ddd0 100%);
    --gradient-spaces: linear-gradient(135deg, #fff5eb 0%, #ffe8d6 100%);
    --gradient-advantages: linear-gradient(180deg, #ffffff 0%, #f8f5f2 100%);
    --gradient-contact: linear-gradient(135deg, #f5f0e8 0%, #ede5d8 100%);
    --border-radius: 20px;
    --border-radius-small: 15px;
    --border-radius-large: 30px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--accent-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-reservation {
    background: var(--gradient-2);
    color: var(--white) !important;
    padding: 0.7rem 2rem;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    font-weight: 600;
}

.btn-reservation:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-reservation::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.95), rgba(232, 213, 196, 0.95)),
                url('https://images.unsplash.com/photo-1560179707-f14e90ef3623?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dark-color);
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.3), rgba(232, 213, 196, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 10px rgba(212, 165, 116, 0.2);
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Buttons */
.btn {
    padding: 0.9rem 2.5rem;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--gradient-2);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    border-color: transparent;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--gradient-2);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-2);
    margin: 0 auto 1rem;
    border-radius: var(--border-radius-small);
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.12) 0%, rgba(232, 213, 196, 0.08) 100%);
    border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%;
    animation: blob 20s ease-in-out infinite;
    transform-origin: center;
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.15) 0%, rgba(232, 213, 196, 0.1) 100%);
    border-radius: 50% 50% 60% 40% / 50% 50% 40% 60%;
    animation: blob 15s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes blob {
    0%, 100% {
        border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 50% 60% 40% 50% / 50% 40% 60% 50%;
        transform: translate(20px, 20px) rotate(5deg);
    }
    50% {
        border-radius: 40% 50% 60% 50% / 60% 50% 40% 50%;
        transform: translate(10px, -10px) rotate(-5deg);
    }
    75% {
        border-radius: 50% 40% 50% 60% / 50% 60% 50% 40%;
        transform: translate(-10px, 10px) rotate(3deg);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
    border: 1px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.25);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--gradient-1);
    border-radius: var(--border-radius-small);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Spaces Section */
.spaces {
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.spaces::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -120px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(201, 168, 130, 0.06) 100%);
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    animation: blob 25s ease-in-out infinite;
    z-index: 0;
}

.spaces::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -100px;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(255, 228, 214, 0.12) 0%, rgba(245, 230, 211, 0.08) 100%);
    border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
    animation: blob 18s ease-in-out infinite reverse;
    z-index: 0;
}

.spaces .container {
    position: relative;
    z-index: 1;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.space-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    position: relative;
}

.space-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.1), rgba(232, 213, 196, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.space-card:hover::before {
    opacity: 1;
}

.space-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 35px rgba(212, 165, 116, 0.3);
    border-color: var(--primary-color);
}

.space-image {
    height: 250px;
    background: linear-gradient(135deg, #ffe8d6 0%, #fff5eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.space-image::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%;
    animation: blob 12s ease-in-out infinite;
}

.space-placeholder {
    color: var(--text-light);
    font-size: 1.1rem;
}

.space-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.space-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.space-size {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.space-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.space-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--gradient-1);
    color: var(--text-color);
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-small);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--accent-color-2);
}

/* Advantages Section */
.advantages {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -150px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(232, 213, 196, 0.05) 100%);
    border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
    animation: blob 22s ease-in-out infinite;
    z-index: 0;
}

.advantages::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.12) 0%, rgba(232, 213, 196, 0.08) 100%);
    border-radius: 60% 50% 40% 50% / 50% 60% 50% 40%;
    animation: blob 17s ease-in-out infinite reverse;
    z-index: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-item {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    position: relative;
    z-index: 1;
}

.advantage-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 10px 35px rgba(212, 165, 116, 0.3);
    background: linear-gradient(135deg, #f5e6d3 0%, #ffffff 100%);
    border-color: var(--primary-color);
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: var(--white);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-2);
}

.advantage-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.advantage-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(201, 168, 130, 0.07) 100%);
    border-radius: 50% 60% 40% 50% / 50% 40% 60% 50%;
    animation: blob 19s ease-in-out infinite;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -80px;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(245, 230, 211, 0.12) 0%, rgba(232, 213, 196, 0.09) 100%);
    border-radius: 40% 50% 60% 50% / 60% 50% 40% 50%;
    animation: blob 21s ease-in-out infinite reverse;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, transparent 100%);
    border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
    animation: blob 14s ease-in-out infinite;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--accent-color-2);
    border-radius: var(--border-radius-small);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    filter: brightness(1.1);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .logo-img {
        height: 45px;
        max-width: 150px;
    }

    .footer-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .logo-img {
        height: 40px;
        max-width: 120px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Photo Gallery Modal */
.photo-count-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.photo-count-badge:hover {
    background: rgba(212, 165, 116, 0.9);
    transform: scale(1.05);
}

.photo-gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.photo-gallery-modal[style*="flex"] {
    display: flex !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.photo-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.photo-gallery-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.photo-gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.photo-gallery-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.photo-gallery-title {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.photo-gallery-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    min-height: 400px;
}

.photo-gallery-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 60vh;
    overflow: hidden;
    border-radius: var(--border-radius-small);
}

.photo-gallery-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: var(--border-radius-small);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.photo-gallery-nav {
    background: rgba(212, 165, 116, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 1rem;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.photo-gallery-nav:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.photo-gallery-nav:active {
    transform: scale(0.95);
}

.photo-gallery-prev {
    order: 1;
}

.photo-gallery-image-container {
    order: 2;
}

.photo-gallery-next {
    order: 3;
}

.photo-gallery-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 120px;
    overflow-y: auto;
    padding: 0.5rem;
    margin-bottom: 1rem;
}

.photo-gallery-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.photo-gallery-thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.photo-gallery-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(212, 165, 116, 0.4);
}

.photo-gallery-counter {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive pour la galerie */
@media (max-width: 768px) {
    .photo-gallery-container {
        width: 95%;
        padding: 1rem;
        max-height: 95vh;
    }

    .photo-gallery-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .photo-gallery-main {
        min-height: 300px;
        flex-direction: column;
    }

    .photo-gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }

    .photo-gallery-image {
        max-height: 50vh;
    }

    .photo-gallery-thumbnails {
        max-height: 100px;
    }

    .photo-gallery-thumbnail {
        width: 60px;
        height: 60px;
    }

    .photo-count-badge {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

