:root {
--primary-color: #1e6b52;
--secondary-color: #d4af37;
--dark-color: #2c3e50;
--light-color: #f8f9fa;
--text-color: #333;
--shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Open Sans', sans-serif;
color: var(--text-color);
line-height: 1.6;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
font-weight: 700;
color: var(--dark-color);
}

/* Navbar Styles */
.navbar {
background-color: rgba(255, 255, 255, 0.95);
box-shadow: var(--shadow);
padding: 1rem 0;
transition: all 0.3s ease;
}

.navbar-brand {
font-weight: 700;
font-size: 1.8rem;
color: var(--primary-color) !important;
}

.navbar-brand span {
color: var(--secondary-color);
}

.nav-link {
font-weight: 600;
color: var(--dark-color) !important;
margin: 0 10px;
transition: color 0.3s;
}

.nav-link:hover {
color: var(--primary-color) !important;
}

.navbar-toggler {
border: none;
padding: 0;
}

.navbar-toggler:focus {
box-shadow: none;
}

/* Hero Section */
.hero-section {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://as1.ftcdn.net/jpg/01/29/77/84/1000_F_129778491_lt3bTwaFOxuCBwq9mEzEVPbR0SPQgkIH.jpg");
background-size: cover;
background-position: center;
background-attachment: fixed;
height: 100vh;
min-height: 600px;
color: white;
display: flex;
align-items: center;
position: relative;
}

.hero-content {
max-width: 800px;
}

.hero-title {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 1.5rem;
color: white;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
.hero-title {
font-size: 2.5rem;
}
}

.hero-subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
padding: 0.8rem 2rem;
font-weight: 600;
transition: all 0.3s;
}

.btn-primary:hover {
background-color: #15573d;
border-color: #15573d;
transform: translateY(-3px);
box-shadow: var(--shadow);
}

.btn-outline-light:hover {
background-color: rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-section {
padding: 100px 0;
background-color: #f8f9fa;
}

.section-title {
position: relative;
margin-bottom: 3rem;
padding-bottom: 1rem;
}

.section-title:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 80px;
height: 4px;
background-color: var(--secondary-color);
}

.section-title.text-center:after {
left: 50%;
transform: translateX(-50%);
}

.icon-box {
background-color: white;
padding: 2.5rem;
border-radius: 10px;
box-shadow: var(--shadow);
height: 100%;
transition: transform 0.3s;
}

.icon-box:hover {
transform: translateY(-10px);
}

.icon-box i {
font-size: 2.5rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}

/* Destinations Section */
.destinations-section {
padding: 100px 0;
}

.destination-card {
border-radius: 10px;
overflow: hidden;
box-shadow: var(--shadow);
margin-bottom: 30px;
transition: transform 0.3s;
}

.destination-card:hover {
transform: translateY(-10px);
}

.destination-img {
height: 250px;
width: 100%;
object-fit: cover;
}

.destination-content {
padding: 1.5rem;
}

.destination-title {
font-size: 1.3rem;
margin-bottom: 0.5rem;
}

/* Services Section */
.services-section {
padding: 100px 0;
background-color: #f8f9fa;
}

.service-item {
text-align: center;
padding: 2rem;
}

.service-icon {
width: 80px;
height: 80px;
background-color: var(--primary-color);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
}

.service-icon i {
font-size: 2rem;
color: white;
}

/* CTA Section */
.cta-section {
padding: 100px 0;
background: linear-gradient(rgba(30, 107, 82, 0.9), rgba(30, 107, 82, 0.9)), url("https://as1.ftcdn.net/jpg/01/29/77/84/1000_F_129778491_lt3bTwaFOxuCBwq9mEzEVPbR0SPQgkIH.jpg");
background-size: cover;
background-position: center;
color: white;
}

.cta-section h2 {
color: white;
}

/* Footer */
.footer {
background-color: var(--dark-color);
color: white;
padding: 70px 0 30px;
}

.footer-logo {
font-size: 1.8rem;
font-weight: 700;
color: white;
margin-bottom: 1.5rem;
display: inline-block;
}

.footer-logo span {
color: var(--secondary-color);
}

.footer h5 {
color: white;
margin-bottom: 1.5rem;
position: relative;
padding-bottom: 0.8rem;
}

.footer h5:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background-color: var(--secondary-color);
}

.footer-links {
list-style: none;
padding-left: 0;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: #bbb;
text-decoration: none;
transition: color 0.3s;
}

.footer-links a:hover {
color: white;
padding-left: 5px;
}

.social-icons a {
display: inline-block;
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
text-align: center;
line-height: 40px;
margin-right: 10px;
color: white;
transition: all 0.3s;
}

.social-icons a:hover {
background-color: var(--primary-color);
transform: translateY(-5px);
}

.copyright {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
margin-top: 50px;
text-align: center;
color: #bbb;
font-size: 0.9rem;
}


