:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-light: #ecf0f1;
    --text-dark: #2c3e50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/backg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-light);
    position: relative;
    font-size: 20px;
}

#home .hero-content h1 {
    font-size: 36px;
}

#home .hero-content p {
    font-size: 26px;
    color: #a6a6a6;
}

.travel-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 100px;
    font-family: sans-serif;
    flex-wrap: wrap;
    height: 100vh;
}

.travel-images img {
    max-width: 500px;
    border-radius: 40px;
}

.travel-content {
    max-width: 600px;
}

.travel-content h5 {
    color: #000000;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}

.travel-content h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #000;
}

.travel-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
}

.travel-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 25px;
}

.travel-stats h3 {
    color: #000000;
    font-size: 24px;
    margin: 0;
}

.travel-stats p {
    margin: 5px 0 0;
    color: #444;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-custom {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
}

.btn-custom:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-outline-custom {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--text-light);
    color: var(--text-dark);
}

.contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./img/co.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    padding: 80px 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px;
    margin-bottom: 1rem;
}


/* Footer */

.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0 20px;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

@media (max-width: 770px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .btn-custom {
        margin: 5px;
        padding: 10px 25px;
    }
}

@media (max-width: 768px) {
    .travel-images {
        display: none;
    }
}