:root {
    --primary-color: #6e340b;
    --secondary-color: #0b6e20;
    --accent-color: #E67E22;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-brand p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding: 10px 15px !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.btn-reserva-nav {
    background-color: var(--secondary-color);
    color: white !important;
    border-radius: 50px;
    padding: 8px 25px !important;
}

.btn-reserva-nav:hover {
    background-color: #085017;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(11, 110, 32, 0.3);
}

/* Hero Carousel */
#heroCarousel .carousel-item {
    height: 80vh;
    min-height: 500px;
    background-color: #000;
}

#heroCarousel .carousel-item img {
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    /* Darken image for better text readability */
}

#heroCarousel .carousel-caption {
    bottom: 30%;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    color: #fff;
    /* Ensure visibility on dark overlay */
}

.hero-main-title {
    font-family: var(--font-heading);
    /* Or a specific font if requested, using serif for now */
    font-size: 3.5rem;
  text-shadow: 1px 1px 2px black;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background-color: var(--secondary-color);
    /* Or accent color? Using secondary (green) for now */
    margin: 0 auto 2rem auto;
}

/* Utils */
.section-padding {
    padding: 80px 0;
}

.btn-primary-custom {
    background-color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #085017;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.1rem;
        /* Smaller font on mobile */
    }

.lead{
   font-size: 0.9rem;
}
  
  .open-whatsapp{
    font-size: 1rem !important;
  }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    #heroCarousel .carousel-caption {
        bottom: 20%;
        /* Adjust position for mobile */
        text-align: center;
    }

    .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Accommodations Tabs */
.nav-tabs .nav-link {
    color: #5D6D7E;
    border: none;
    font-weight: 600;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    background: transparent;
}

.tab-pane {
    padding-top: 20px;
}

.tab-pane img {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.facility-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #555;
}

.facility-item i {
    width: 25px;
    color: var(--secondary-color);
}

/* Booking Form */
#booking {
    margin-top: -80px;
    /* Pull up to overlap with hero if needed, or adjust as per design */
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.booking-form {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.booking-form .form-control,
.booking-form .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    height: 50px;
    padding-left: 15px;
    box-shadow: none;
    transition: border-color 0.3s;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.booking-form .form-label {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    height: 50px;
    width: 100%;
    border: none;
    border-radius: 4px;
    transition: all 0.3s;
    margin-top: 24px;
    /* Align with inputs */
}

.submit-btn:hover {
    background-color: #085017;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* A Pousada Section */
#carouselPousada img {
    object-fit: cover;
    object-position: center;
    height: 400px;
    /* Fixed height for consistency */
}

.text-a-pousada {
    color: var(--primary-color);
    font-weight: 700;
}