:root {
    --lavender-deep: #5d4e7f;
    --lavender-mid: #8b7fa8;
    --lavender-light: #c8b8db;
    --lavender-pale: #f0ebf8;
    --sage: #9ba88d;
    --cream: #faf8f3;
    --charcoal: #2a2a2a;
    --gold: #d4af37;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

.lang-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(93, 78, 127, 0.2);
    transition: all 0.3s ease;
}

.lang-switcher:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(93, 78, 127, 0.3);
}

.lang-switcher button {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--lavender-mid);
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px 10px;
}

.lang-switcher button.active {
    color: var(--lavender-deep);
    border-bottom: 2px solid var(--gold);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 25px 0;
    box-shadow: 0 2px 20px rgba(93, 78, 127, 0.08);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--lavender-deep);
    text-decoration: none;
    letter-spacing: 1px;
    position: relative;
}

.logo::after {
    content: '✿';
    position: absolute;
    right: -25px;
    top: -5px;
    font-size: 16px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

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

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

.hero {
    margin-top: 90px;
    height: 85vh;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 24px 24px;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(93, 78, 127, 0.5), rgba(139, 127, 168, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 24px 24px;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.95;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

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

.dot.active {
    background: white;
    width: 35px;
    border-radius: 6px;
}

section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--lavender-deep);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-header .divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.room-card {
    margin-bottom: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.room-card:nth-child(even) {
    direction: rtl;
}

.room-card:nth-child(even) > * {
    direction: ltr;
}

.room-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.room-gallery img:first-child {
    grid-column: 1 / -1;
    height: 300px;
}

.room-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.room-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(93, 78, 127, 0.3);
}

.room-info {
    padding: 20px;
}

.room-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--lavender-deep);
    margin-bottom: 20px;
}

.room-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 25px;
    opacity: 0.9;
}

.room-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold);
    font-weight: 600;
}

#about {
    background: var(--lavender-pale);
    padding: 100px 40px;
}

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

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
    color: var(--charcoal);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-details {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(93, 78, 127, 0.1);
    margin-bottom: 40px;
    display: inline-block;
    text-align: left;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    color: var(--lavender-mid);
    font-size: 20px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(93, 78, 127, 0.15);
    height: 500px;
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info a {
    display: inline-block;
    font-size: 24px;
    color: var(--lavender-deep);
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s;
}

.contact-form {
    background: var(--lavender-pale);
    padding: 50px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--lavender-deep);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--lavender-light);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--lavender-deep);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

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

footer {
    background: var(--lavender-deep);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-top: 100px;
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 968px) {
    .lang-switcher {
        bottom: 20px;
        right: 20px;
        padding: 10px 15px;
    }

    .hero {
        border-radius: 0 0 16px 16px;
    }

    .carousel,
    .carousel-slide img,
    .carousel-overlay {
        border-radius: 0 0 16px 16px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;
        gap: 15px;
        width: auto;
        justify-content: center;
    }

    .nav-links a {
        font-size: 14px;
    }

    .room-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        border-radius: 0 0 12px 12px;
    }

    .carousel,
    .carousel-slide img,
    .carousel-overlay {
        border-radius: 0 0 12px 12px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 13px;
    }
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--charcoal);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--lavender-deep);
    color: white;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--charcoal);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--charcoal);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
        width: 50px;
        height: 50px;
    }

    .lightbox-next {
        right: 10px;
        width: 50px;
        height: 50px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}
