/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5016;
    --accent-orange: #d2691e;
    --gold: #ffd700;
    --text-light: #f5f5f5;
    --dark-bg: #1a1a1a;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f9f9f9;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo h2 {
    background: linear-gradient(45deg, var(--accent-orange), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.nav-links li {
    position: relative;
    padding: 5px 0 0 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 6px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: rgba(210, 105, 30, 0.1);
    color: var(--accent-orange);
}
.call-to-action{
    width: 100%;
    padding: 12px 9px;
    background: linear-gradient(45deg, var(--accent-orange), var(--gold));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: auto
}
/* Dropdowns */
.dropdown,
.sub-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-bg);
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    min-width: 220px;
}

.nav-links li:hover>.dropdown {
    display: block;
}

.dropdown li {
    margin: 0;
}

.dropdown a {
    display: block;
    padding: 0.5rem;
    color: var(--text-light);
}

.dropdown li:hover>.sub-dropdown {
    display: block;
    left: 100%;
    top: 0;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    margin-top: 70px;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text-light);
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(245, 245, 245, 0.9);
    max-width: 800px;
    margin: auto;
}

.hero-button {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--accent-orange), var(--gold));
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
}

/* Overview */
.overview {
    background: white;
    padding: 5rem 10%;
}

.overview h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.overview h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--gold));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.overview p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* Lodging Cards */
.lodging_options {
    padding: 5rem 10%;
    background: #f8f9fa;
}

.lodging_options h2 {
    text-align: center;
    color: var(--primary-green);
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.lodging_options_content_cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.lodging_options_content_card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lodging_options_content_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.lodging_options_content_card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.lodging_options_content_card:hover img {
    transform: scale(1.05);
}

.lodging_options_content_card_content {
    padding: 1.5rem;
}

.lodging_options_content_card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.lodging_options_content_card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
color: white;
padding: 60px 20px 30px;
}

.footer-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
max-width: 1200px;
margin: 0 auto;
}

.footer-section h3 {
margin-bottom: 20px;
color: #ff6600;
font-weight: 600;
}

.footer-section p,
.footer-section a {
color: #ccc;
text-decoration: none;
margin-bottom: 10px;
display: block;
transition: color 0.3s ease;
}

.footer-section a:hover {
color: #ff6600;
}

.footer-social {
display: flex;
gap: 15px;
margin-top: 20px;
}

.footer-social a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: linear-gradient(45deg, #ff6600, #ff9900);
border-radius: 50%;
color: white;
transition: all 0.3s ease;
}

.footer-social a:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.footer-bottom {
text-align: center;
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #333;
color: #999;
}

/* WhatsApp Button */
.whatsapp-button {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 1000;
background: linear-gradient(45deg, #25d366, #128c7e);
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
transition: all 0.3s ease;
color: white;
font-size: 1.5rem;
text-decoration: none;
}

.whatsapp-button:hover {
transform: scale(1.1);
box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media(max-width:768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--dark-bg);
        padding: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }
}