:root {
    --forest-green: #2E8B57;
    --sky-blue: #87CEEB;
    --dark-grey: #333;
    --light-grey: #f9f9f9;
    --white: #ffffff;
    
    --serif: 'Merriweather', serif;
    --sans: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--dark-grey);
    font-family: var(--sans);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.vista-header { padding: 20px 0; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--forest-green); }
.header-row { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--dark-grey); display: flex; align-items: center; gap: 5px; }
.green { color: var(--forest-green); }
.icon { font-size: 2rem; }

.travel-nav a { margin-left: 20px; font-weight: 600; font-size: 0.95rem; color: #555; font-family: var(--sans); }
.travel-nav a:hover, .travel-nav a.active { color: var(--forest-green); border-bottom: 2px solid var(--forest-green); }

.btn-book { background: var(--forest-green); color: var(--white) !important; padding: 10px 20px; border-radius: 4px; border: none; font-weight: bold; }
.btn-book:hover { background: #246b42; }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; font-weight: bold; color: var(--forest-green); border: 2px solid var(--forest-green); padding: 5px 10px; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--forest-green); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.open { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: 2px solid var(--white); color: var(--white); font-size: 2rem; cursor: pointer; padding: 0 10px; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--white); margin: 15px 0; }

/* Hero */
.hero-landscape { height: 80vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.1)); display: flex; align-items: center; }
.hero-content { margin-left: 10%; color: var(--white); max-width: 600px; }
.tagline { font-family: var(--sans); font-weight: bold; letter-spacing: 2px; color: var(--sky-blue); display: block; margin-bottom: 10px; }
.hero-content h1 { font-family: var(--serif); font-size: 4rem; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 2px 5px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

.search-box { background: rgba(255,255,255,0.9); padding: 20px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); display: inline-block; }
#searchTour { display: flex; gap: 10px; flex-wrap: wrap; }
#searchTour input, #searchTour select { padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--sans); font-size: 1rem; }
#searchTour button { padding: 12px 30px; background: var(--forest-green); color: var(--white); border: none; border-radius: 4px; cursor: pointer; font-weight: bold; transition: 0.3s; }
#searchTour button:hover { background: #1e5c39; }

/* Destinations */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--serif); font-size: 2.5rem; color: var(--dark-grey); margin-bottom: 10px; }
.green-underline { width: 80px; height: 4px; background: var(--forest-green); margin: 0 auto; border-radius: 2px; }
.green-underline.left { margin: 20px 0; }

.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.dest-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #eee; }
.dest-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card-image { position: relative; height: 250px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.price-tag { position: absolute; bottom: 15px; right: 15px; background: var(--forest-green); color: var(--white); padding: 5px 15px; font-weight: bold; border-radius: 20px; font-size: 0.9rem; }
.card-text { padding: 25px; }
.card-text h3 { font-family: var(--serif); margin-bottom: 10px; color: var(--dark-grey); }
.card-text p { color: #666; margin-bottom: 20px; font-size: 0.95rem; }
.card-text a { color: var(--forest-green); font-weight: bold; font-size: 0.9rem; }

/* Newsletter */
.newsletter-strip { background: var(--light-grey); padding: 60px 0; text-align: center; border-top: 1px solid #ddd; }
.news-content h3 { font-family: var(--serif); font-size: 2rem; margin-bottom: 10px; }
.news-content p { color: #666; margin-bottom: 30px; }
#newsletterForm { display: flex; justify-content: center; gap: 10px; max-width: 500px; margin: 0 auto; }
#newsletterForm input { flex: 1; padding: 12px; border: 1px solid #ccc; border-radius: 4px; }
#newsletterForm button { background: var(--forest-green); color: var(--white); border: none; padding: 12px 30px; border-radius: 4px; font-weight: bold; cursor: pointer; }

/* About & Contact */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.text-block h1 { font-family: var(--serif); font-size: 3rem; line-height: 1.1; margin-bottom: 20px; }
.usp-list { list-style: none; margin-top: 30px; font-family: var(--serif); font-size: 1.1rem; }
.usp-list li { margin-bottom: 10px; color: #444; }
.img-block img { width: 100%; border-radius: 8px; box-shadow: 20px 20px 0 var(--sky-blue); }

.contact-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--white); padding: 50px; border: 1px solid #eee; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.contact-info h2 { font-family: var(--serif); color: var(--forest-green); margin-bottom: 20px; }
.details p { margin-bottom: 10px; font-size: 1.1rem; }

.travel-form .form-row { display: flex; gap: 20px; margin-bottom: 20px; }
.col { flex: 1; }
.travel-form label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 0.9rem; }
.travel-form input, .travel-form select, .travel-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--sans); background: #fdfdfd; }
.btn-submit { width: 100%; background: var(--forest-green); color: var(--white); border: none; padding: 15px; font-weight: bold; cursor: pointer; border-radius: 4px; font-size: 1.1rem; transition: 0.3s; }
.btn-submit:hover { background: #1e5c39; }

/* Reviews & Legal */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--light-grey); padding: 30px; border-radius: 8px; position: relative; }
.review-card.highlight { background: var(--forest-green); color: var(--white); }
.review-card.highlight .author { color: var(--sky-blue); }
.stars { color: #FFD700; margin-bottom: 15px; }
.review-card p { font-style: italic; margin-bottom: 20px; }
.author { font-weight: bold; font-family: var(--serif); text-align: right; }

.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border: 1px solid #eee; }
.legal-content h1 { font-family: var(--serif); color: var(--forest-green); }
.legal-content h3 { margin-top: 30px; font-family: var(--serif); }

/* Footer */
.vista-footer { background: #222; color: #ccc; padding: 60px 0 20px; margin-top: 80px; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #444; padding-bottom: 30px; margin-bottom: 20px; }
.f-brand h4 { font-family: var(--serif); color: var(--white); margin-bottom: 5px; }
.f-links a { color: #aaa; margin-left: 20px; }
.f-links a:hover { color: var(--white); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie */
.cookie-bar { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--white); padding: 15px 30px; border-radius: 50px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 20px; z-index: 9999; display: none; }
.cookie-bar.visible { display: flex; animation: slideUp 0.5s; }
.cookie-bar button { background: var(--forest-green); color: var(--white); border: none; padding: 8px 20px; border-radius: 20px; cursor: pointer; font-weight: bold; }

@keyframes slideUp { from { transform: translate(-50%, 100px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }

@media (max-width: 900px) {
    .travel-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 3rem; }
    .dest-grid, .about-story, .contact-box, .review-grid, .form-row { grid-template-columns: 1fr; }
    .footer-flex { flex-direction: column; text-align: center; gap: 20px; }
    #searchTour { flex-direction: column; }
    #searchTour input, #searchTour select, #searchTour button { width: 100%; }
}