/* 
 * Los Laureles - Main Stylesheet 
 */

:root {
    /* Color Palette - Based on Mockup & Luxury Vibe */
    --color-gold: #C5A059;
    /* Gold/Brass for accents/titles */
    --color-green-dark: #2C3E2E;
    /* Dark Green for nature/luxury */
    --color-beige: #F5F3EB;
    /* Light Beige for backgrounds */
    --color-text-main: #333333;
    /* Dark Gray for text */
    --color-text-light: #777777;
    /* Lighter Gray for subtext */
    --color-white: #FFFFFF;

    /* Font Families (To be loaded via Google Fonts) */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;

    /* Spacing Utilities */
    --spacing-section: 5rem;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-main);
    background-color: var(--color-beige);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--color-green-dark);
}

/* Helper Class for "Gold" text */
.text-gold {
    color: var(--color-gold) !important;
}

/* Helper for Letter Spacing */
.ls-2 {
    letter-spacing: 2px;
}

.bg-green-dark {
    background-color: var(--color-green-dark);
}

/* Navbar Customization */
.navbar {
    min-height: 120px;
    /* User requested 120px */
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 100px;
    /* Adjusted property for better visibility */
    width: auto;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .navbar-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        z-index: 10;
        /* Ensure it stays on top if needed */
    }

    .navbar-brand img {
        height: 90px;
        /* Adjusted for better visibility on mobile */
    }

    .navbar-toggler {
        margin-left: auto;
        /* Push hamburger to the right since logo is absolute */
        z-index: 20;
        /* Ensure clickable */
    }
}

/* Mobile adjustments for Hero Buttons to fit horizontally */
@media (max-width: 650px) {
    .hero-content .btn {
        padding: 10px 15px !important;
        font-size: 0.75rem !important;
        white-space: nowrap;
    }

    .hero-content .d-flex {
        gap: 0.5rem !important;
        justify-content: center;
    }
}

/* Events & Offers Specific Styles */
.moments-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
}

.moments-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.moments-card:hover img {
    transform: scale(1.05);
}

.moments-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 2rem;
    color: white;
    z-index: 2;
}

.moments-card h3 {
    color: white;
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
}

.moments-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.inner-circle-section {
    background-color: #111;
    color: white;
    padding: 5rem 0;
    border: 1px solid #333;
    margin: 2rem auto;
    max-width: 900px;
}

.inner-circle-form .form-control {
    background: transparent;
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
}

.inner-circle-form .form-control:focus {
    border-color: var(--color-gold);
    box-shadow: none;
    background: transparent;
}

.navbar-nav .nav-item {
    position: relative;
    margin-left: 1rem;
    margin-right: 1rem;
}

/* Separator using pseudo-element */
@media (min-width: 992px) {
    .navbar-nav .nav-item:not(:last-child):not(:nth-last-child(2)):not(:nth-last-child(3))::after {
        content: "";
        position: absolute;
        right: -1rem;
        /* Half way between items */
        top: 50%;
        transform: translateY(-50%);
        height: 4px;
        width: 4px;
        background-color: rgba(255, 255, 255, 0.3);
        /* Subtle dot */
        border-radius: 50%;
    }

    /* Adjust spacing for the items with separators */
    .navbar-nav .nav-link {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        text-align: center;
        /* Center text if it wraps to two lines */
    }
}

/* Hero Section */
.hero-section {
    background-image: url('../img/FondoHero2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    color: var(--color-gold);
}

.hero-glass-card {
    background: rgba(60, 60, 60, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* Welcome Section */
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.welcome-section {
    background-color: var(--color-white);
    /* White background to contrast with beige body */
}

.welcome-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 3px;
}

.welcome-heading {
    color: var(--color-green-dark);
}

.welcome-image-wrapper img {
    transition: transform 0.5s ease;
}

.welcome-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Accommodations Section */
.accommodations-section {
    background-color: var(--color-beige);
}

.accommodation-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-img-wrapper img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.accommodation-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.btn-link {
    transition: color 0.3s ease;
}

/* Utilities */
.z-n1 {
    z-index: -1;
}

.z-1 {
    z-index: 1;
}

.border-gold {
    border-color: var(--color-gold) !important;
}

/* Dark Luxury Theme for Features Section */
.bg-dark-luxury {
    background-color: #1a1a1a;
    /* Dark almost black background */
    color: var(--color-white);
}

.bg-dark-luxury h2,
.bg-dark-luxury h3,
.bg-dark-luxury h4 {
    color: var(--color-white);
}

.bg-dark-luxury .text-secondary {
    color: #b0b0b0 !important;
    /* Lighter gray for readability on dark */
}

/* Circular Icons */
.icon-circle {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle i {
    font-size: 1.25rem;
    line-height: 1;
}

/* Gold Button */
.btn-gold {
    background-color: var(--color-gold);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #a08040;
    /* Darker gold/bronze on hover */
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Styles */
.footer-links a {
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-green-dark) !important;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border: 1px solid var(--color-gold) !important;
}

/* Booking Section (New) */
.booking-section {
    background-color: var(--color-beige);
    /* Or a specific background image if desired */
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.booking-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
}

.booking-info-col {
    background-color: #000;
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Optional pattern or logo in the background of global info col if needed */

.booking-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: auto;
}

.booking-form-col {
    padding: 3rem;
    background-color: #fff;
}

.booking-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #999;
    margin-bottom: 0.5rem;
    display: block;
}

.booking-input {
    background-color: #F8F9FA;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 1rem;
    width: 100%;
    color: #333;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.booking-input:focus {
    background-color: #fff;
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.btn-check-availability {
    background-color: var(--color-gold);
    color: #443311;
    /* Darker brownish for contrast on gold as per mockup? Or just black */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-check-availability:hover {
    background-color: #a08040;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.booking-logo-small {
    width: 80px;
    margin-bottom: 2rem;
    opacity: 0.9;
}