:root {
    --primary-color: #4a5d4a; 
    --text-color: #333;
    --bg-color: #ffffff;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* --- Header / Sticky Nav with Logo inside --- */
header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px; /* Adjust height as needed */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* --- Carousel Section --- */
.carousel-container {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Smooth fade transition */
    transition: background-image 0.6s ease-in-out;
}

/* Hero Text Overlay */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    pointer-events: none; /* Allows arrows underneath to be clickable */
}

.hero-text h2 {
    font-size: 4rem;
    margin: 0;
}

.hero-text h3 {
    font-size: 2rem;
    margin: 0;
}

/* Carousel Navigation Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    color: #333;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* --- Content Container --- */
.container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

.btn-booking {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    margin-top: 20px;
    transition: opacity 0.3s;
    pointer-events: auto; /* Ensures button is clickable over carousel overlay */
}

.btn-booking:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        justify-content: center;
    }
    nav ul li {
        margin: 5px 10px;
    }
    .hero-text h2 { font-size: 2rem; }
}