:root {
    --primary-gold: #C29D4D;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.foto_prog{
    border: 0px solid #CCC;
        padding: 10px;
        cursor: pointer;
        margin-bottom: 30px;
        border-radius: 5px;
}
.dropdown-item{
    color: var(--white) !important;
}

.dropdown-item:hover{
    background-color: var(--primary-gold) !important;
    color: var(--dark-gray) !important;
}

.font-lora {
    font-family: 'Lora', serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Transitions */
.transition-all {
    transition: var(--transition);
}

/* Buttons */
.btn-gold {
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-gold:hover {
    background-color: #a6853d;
    color: var(--white);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background-color: rgba(0, 0, 0, 0.9) !important;
    transition: var(--transition);
}

.navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.navbar .contact-info-nav {
    color: #fff !important;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* .navbar.scrolled .navbar-brand img { */
    /* No filter needed as we use the white logo by default */
/* } */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.carousel, .carousel-inner, .carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    top: auto;
    bottom: 110px;
    transform: none;
    width: 100%;
    left: 0;
    right: 0;
}

.carousel-caption h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Features Section in Hero */
.features-section {
    background-color: transparent !important;
    position: relative;
    z-index: 11;
    margin-top: 2rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.6) !important;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    color: #000 !important;
}

.feature-card h6, .feature-card p {
    font-family: 'Lora', serif !important;
    color: #000 !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.bg-light-gray {
    background-color: transparent; /* Overriding previous bg-light-gray for hero context */
}

.border-gold {
    border-color: var(--primary-gold) !important;
}

.text-gold {
    color: var(--primary-gold);
}

/* Booking Section */
.booking-section {
    position: relative;
    z-index: 15;
    margin-top: -60px;
}

.booking-bar {
    border-top: 5px solid var(--primary-gold);
}

/* General Utilities */
.ls-2 { letter-spacing: 2px; }
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

.btn-outline-gold {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

/* Room Cards */
.room-card {
    transition: var(--transition);
}

.room-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.room-img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-img-container img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 5px 15px;
    font-weight: 700;
    border-top-left-radius: 10px;
}

/* Video Parallax */
.video-parallax {
    min-height: 500px;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.z-2 { z-index: 2; }

.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 2.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.play-btn:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 0 20px rgba(194, 157, 77, 0.5);
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    transition: var(--transition);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* Map */
.map-container iframe {
    filter: grayscale(0.5) contrast(1.1) brightness(0.9);
}

/* Footer */
.brightness-0-invert {
    filter: brightness(0) invert(1);
}

.footer-links a:hover {
    color: var(--primary-gold) !important;
    padding-left: 5px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: var(--primary-gold);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: #a6853d;
    color: white;
    transform: translateY(-5px);
}

.slide_mobile {
    display: none;
    margin-bottom: 0px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .navbar {
        background-color: rgba(0, 0, 0, 0.95) !important;
        padding: 0.8rem 0;
        }

    
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .features-section {
        margin-top: 0;
    }
    
    .parallax-bg {
        background-attachment: scroll;
    }

    .slide_mobile {
        display: inline;
        margin-bottom: 0px;
    }

    .slide_desktop {
        display: none;
    }
}
