/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #FAFAFA;       /* Quiet Luxury Cream-White */
    --text-color: #333333;     /* Deep Charcoal */
    --text-muted: #666666;     /* Muted Charcoal */
    --primary-color: #222222;  /* Bold Accent */
    --primary-hover: #444444;
    --gold-accent: #C5A059;    /* Refined Muted Gold */
    --card-bg: #FFFFFF;        /* Pure White content panels */
    --border-color: #EAEAEA;   /* Subtle divider */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #FAFAFA; /* Premium Milk-White */
    color: #333333;           /* Dark gray text */
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Floating Language Dropdown Selector */
.lang-dropdown-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.lang-trigger {
    background: rgba(34, 34, 34, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    letter-spacing: 0.05em;
}

.lang-trigger:hover {
    background: rgba(34, 34, 34, 0.95);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    display: flex;
    flex-direction: column;
    min-width: 95px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.lang-dropdown-container.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-btn {
    background: none;
    border: none;
    color: #333333;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
}

.lang-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000;
}

.lang-btn.active {
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(197, 160, 89, 0.15);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    color: #FFFFFF;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInDown 1.2s ease forwards;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #E0E0E0;
    max-width: 600px;
    animation: fadeInUp 1.2s ease forwards 0.3s;
    opacity: 0;
}

/* Accent color for buttons and links */
button, .btn {
    background-color: #222;
    color: #FFF;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #444;
    color: #FFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: #222;
    color: #FFF;
}

.btn-secondary {
    background-color: transparent;
    color: #222;
    border: 1px solid #222;
}

.btn-secondary:hover {
    background-color: #222;
    color: #FFF;
    border-color: #222;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-content .btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.hero-content .btn-secondary:hover {
    background-color: #FFFFFF;
    color: #222222;
    border-color: #FFFFFF;
}

/* Floating Social Media Sidebar */
.social-sidebar {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.social-sidebar a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333333;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.social-sidebar a:hover {
    background: #222222;
    color: #FFFFFF;
    transform: translateX(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.social-sidebar svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}



.slider-section {
    padding: 15px 0;
}

.slider-container {
    width: 100%;
    max-width: 1000px;
    margin: 15px auto;
    position: relative;
    overflow: visible; /* Essential to see side slides */
}

.slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    gap: 20px;
    width: 100%;
}

.img-wrapper {
    position: relative;
    width: 70%;
    flex-shrink: 0;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.img-wrapper.active img {
    opacity: 1;
}

.photo-label {
    display: none !important;
}

/* Navigation arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.arrow:hover {
    background: #222;
    color: #FFF;
    border-color: #222;
}
.prev { left: -60px; }
.next { right: -60px; }

/* Booking Section */
.booking-section {
    padding: 6rem 2rem;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-container {
    width: 100%;
    max-width: 1000px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--gold-accent);
}

/* Footer theme alignment for light theme */
footer {
    background-color: #F0F0F0 !important;
    color: #444444 !important;
    border-top: 1px solid #DDDDDD !important;
    padding: 25px 20px !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    margin-top: 20px !important;
}

#footer-contact p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #444444 !important;
}

#footer-contact a {
    color: #222222 !important;
    text-decoration: none !important;
    font-weight: 500;
}

#footer-contact a:hover {
    text-decoration: underline !important;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .slider-section {
        padding: 10px 0 !important;
    }
    .slider-container {
        margin: 10px auto !important;
    }
    footer {
        margin-top: 15px !important;
        padding: 20px 15px !important;
    }
    .img-wrapper img {
        height: auto;
        aspect-ratio: 3 / 2;
    }
    .arrow {
        display: none !important;
    }
    .lang-dropdown-container {
        top: 15px;
        right: 15px;
    }
    .social-sidebar {
        right: 10px;
        gap: 8px;
        z-index: 9999;
    }
    .social-sidebar a {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    }
    .social-sidebar svg {
        width: 15px;
        height: 15px;
    }
}

/* Custom styling overrides for Beds24 Calendar Widget */
#booking-widget .ui-datepicker td.ui-state-available .ui-state-default,
#booking-widget .ui-datepicker td.ui-state-available a.ui-state-default,
#booking-widget .ui-state-available > .ui-state-default,
#booking-widget .ui-state-available .ui-state-default,
.ui-datepicker td.ui-state-available a.ui-state-default,
.ui-datepicker td.ui-state-available .ui-state-default {
    border: 1px solid #EAEAEA !important;
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    color: #333333 !important;
    transition: all 0.2s ease;
}

#booking-widget .ui-datepicker td.ui-state-available .ui-state-default:hover,
#booking-widget .ui-datepicker td.ui-state-available a.ui-state-default:hover,
#booking-widget .ui-state-available > .ui-state-default:hover,
#booking-widget .ui-state-available .ui-state-default:hover,
.ui-datepicker td.ui-state-available a.ui-state-default:hover,
.ui-datepicker td.ui-state-available .ui-state-default:hover {
    background-color: #222222 !important;
    background: #222222 !important;
    color: #FFFFFF !important;
    border-color: #222222 !important;
}

#booking-widget .ui-datepicker td.ui-state-reserved .ui-state-default,
#booking-widget .ui-datepicker td.ui-state-reserved a.ui-state-default,
#booking-widget .ui-state-reserved > .ui-state-default,
#booking-widget .ui-state-reserved .ui-state-default,
.ui-datepicker td.ui-state-reserved a.ui-state-default,
.ui-datepicker td.ui-state-reserved .ui-state-default {
    border: 1px solid #F0F0F0 !important;
    background-color: #F0F0F0 !important;
    background: #F0F0F0 !important;
    color: #999999 !important;
    text-decoration: line-through;
}

#booking-widget .ui-datepicker-header {
    background-color: #FFFFFF !important;
    border: none !important;
    border-bottom: 1px solid #EAEAEA !important;
}

#booking-widget .ui-datepicker {
    border: 1px solid #EAEAEA !important;
    background-color: #FFFFFF !important;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}
