/* --- Variables & Reset --- */
:root {
    --primary-dark: #112A24;
    --primary-light: #F4F1EA;
    --accent-gold: #C5A065;
    --accent-green: #2C5E50;
    --text-color: #333;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary-dark); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { width: 100%; display: block; border-radius: 8px; }

/* --- Layout Utilities --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 5rem 0; }
.bg-light { background-color: var(--primary-light); }
.mt-2 { margin-top: 2rem; }
.mt-5 { margin-top: 5rem; }
.mb-5 { margin-bottom: 5rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
.grid-center .activity-box, .grid-center .menu-item, .grid-center .product-card { 
    flex: 1 1 300px; max-width: 350px; 
}

/* --- Titles & Buttons --- */
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; position: relative; text-transform: uppercase; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background-color: var(--accent-gold); margin: 10px auto 0; }
.section-title-left { font-size: 2rem; margin-bottom: 1.5rem; border-left: 5px solid var(--accent-gold); padding-left: 15px; }
.section-subtitle { text-align: center; margin-bottom: 2rem; font-style: italic; color: #666; }

.btn-main, .btn-card {
    display: inline-block; padding: 0.8rem 2rem;
    background-color: var(--accent-gold); color: var(--primary-dark);
    font-weight: 700; border-radius: 4px; transition: var(--transition);
    text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer;
}
.btn-main:hover, .btn-card:hover { background-color: var(--primary-dark); color: var(--white); }

/* --- Navigation --- */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; background-color: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links li a { font-weight: 600; color: var(--primary-dark); text-transform: uppercase; font-size: 0.9rem; }
.nav-links li a:hover { color: var(--accent-gold); }
.btn-nav { background-color: var(--primary-dark); color: var(--white) !important; padding: 0.5rem 1rem; border-radius: 4px; }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-dark); }

/* --- Hero --- */
.hero { height: 90vh; background: url('images/landingpageimg.jpeg') no-repeat center center/cover; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(17, 42, 36, 0.4); }
.hero-content { position: relative; color: var(--white); z-index: 2; padding: 0 20px; }
.hero-content h1 { font-size: 3.5rem; color: var(--white); margin-bottom: 1rem; }

/* --- About/Mission/History --- */
.text-box { padding: 2rem; border-radius: 8px; }
.bg-cream-box { background-color: var(--primary-light); border-left: 5px solid var(--accent-gold); }
.feature-block { display: flex; align-items: center; gap: 3rem; }
.feature-text { flex: 1; }
.feature-image { flex: 1; }
.feature-image img { box-shadow: 10px 10px 0px var(--accent-gold); }

/* --- Accommodations Cards --- */
.card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: var(--transition); display: flex; flex-direction: column; height: 100%; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.card img { height: 250px; object-fit: cover; }
.card-content { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
.price { font-weight: 700; color: var(--accent-gold); }
.sub-details { font-size: 0.9rem; color: #666; margin-bottom: 1rem; flex-grow: 1; }
.btn-card { width: 100%; margin-top: auto; display: block !important; }

/* --- Activities --- */
.activity-box { background: var(--white); padding: 2rem; border-radius: 8px; text-align: center; border: 1px solid #eee; transition: var(--transition); cursor: pointer; }
.activity-box:hover { border-color: var(--accent-gold); transform: scale(1.02); }
.icon-header { display: inline-block; padding: 5px 15px; border-radius: 20px; color: white; font-size: 0.8rem; margin-bottom: 1rem; font-weight: bold; }
.icon-header.water { background-color: #3498db; }
.icon-header.air { background-color: #e74c3c; }
.icon-header.land { background-color: #d35400; }
.icon-header.eco { background-color: var(--primary-dark); }
.btn-details { margin-top: 10px; background: transparent; border: 1px solid var(--primary-dark); padding: 5px 15px; border-radius: 20px; cursor: pointer; transition: var(--transition); }
.activity-box:hover .btn-details { background: var(--primary-dark); color: white; }

/* --- TABS --- */
.menu-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 3rem; flex-wrap: wrap; }
.menu-tab-btn, .shop-tab-btn {
    padding: 10px 25px; border: 2px solid var(--accent-gold); background: transparent;
    color: var(--primary-dark); font-weight: 600; cursor: pointer; border-radius: 50px; transition: var(--transition);
}
.menu-tab-btn.active, .shop-tab-btn.active, .menu-tab-btn:hover, .shop-tab-btn:hover { background-color: var(--accent-gold); color: white; }
.menu-category, .shop-category { display: none; animation: fadeIn 0.5s ease; }
.menu-category.active, .shop-category.active { display: block; }

/* Items styling */
.menu-item, .product-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; padding-bottom: 1rem; transition: var(--transition); }
.menu-item:hover, .product-card:hover { transform: translateY(-5px); }
.menu-item img, .product-card img { height: 200px; object-fit: cover; width: 100%; margin-bottom: 1rem; }
.menu-item h4, .product-card h4 { margin-bottom: 0.5rem; font-size: 1.1rem; padding: 0 10px; }
.menu-item .price, .product-card p { font-size: 1rem; color: var(--primary-dark); font-weight: 700; padding: 0 10px; }

/* Lists & Tables */
.list-menu { max-width: 800px; margin: 0 auto; background: white; padding: 2rem; border-radius: 8px; }
.list-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed #ddd; font-size: 1.1rem; }
.cafe-card { background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.cafe-card h3 { margin-bottom: 1.5rem; border-bottom: 2px solid var(--accent-gold); padding-bottom: 10px; display: inline-block; }
.coffee-table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.coffee-table th, .coffee-table td { padding: 10px; text-align: left; border-bottom: 1px solid #eee; }
.coffee-table th { background-color: var(--primary-light); color: var(--primary-dark); }
.simple-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f9f9f9; }

/* --- Contact & Footer --- */
.contact-section { background-color: var(--primary-dark); color: var(--primary-light); }
.contact-section h2, .contact-section h3 { color: var(--white); }
.contact-section h2::after { background-color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info ul li { margin-bottom: 1.5rem; display: flex; align-items: center; gap: 15px; font-size: 1.1rem; }
.form-group label { color: var(--white); display: block; margin-bottom: 5px;}
.form-group input, .form-group textarea { width: 100%; padding: 0.8rem; border-radius: 4px; border: none; }
.thank-you-msg {
    background-color: var(--white); color: var(--primary-dark); padding: 2.5rem;
    border-radius: 8px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: fadeIn 0.5s ease;
}
.success-icon { font-size: 4rem; color: #2ecc71; margin-bottom: 1rem; }
footer { background-color: #0b1c18; color: #888; text-align: center; padding: 1.5rem; font-size: 0.8rem; }

/* --- MODALS --- */
.modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); align-items: center; justify-content: center; padding: 20px; }
.modal-content { background-color: var(--white); padding: 25px; border-radius: 8px; width: 100%; max-width: 600px; position: relative; max-height: 90vh; overflow-y: auto; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; }
.booking-intro { display: flex; gap: 15px; margin-bottom: 1.5rem; margin-top: 1rem; }
.quote-icon { color: #ccc; font-size: 1.2rem; margin-top: 5px; }
.date-input-container { display: flex; align-items: center; border: 1px solid #e0e0e0; padding: 10px; border-radius: 4px; background: #fff; }
.date-input-container input { border: none; outline: none; width: 100%; }
.btn-book-styled { width: 100%; background-color: #2E5239; color: white; padding: 12px; border: none; border-radius: 50px; cursor: pointer; margin-top: 10px; }

/* --- ANIMATIONS (Scroll & Fade) --- */
/* For hero section load */
.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* For scroll sections */
.hidden {
    opacity: 0;
    transform: translateY(30px); /* Move down slightly */
    transition: all 0.6s ease-out; /* Smooth transition when appearing */
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links { position: absolute; right: 0; top: 60px; background-color: var(--white); flex-direction: column; width: 100%; text-align: center; padding: 2rem 0; transform: translateY(-150%); transition: var(--transition); box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-links.nav-active { transform: translateY(0%); }
    .hamburger { display: block; }
    .grid-2, .contact-grid, .feature-block { grid-template-columns: 1fr; gap: 2rem; flex-direction: column; }
}