﻿/* Hero Section Styles */
.hero {
    position: relative;
    background-image: url('/lib/images/travel-concept-with-landmarks.jpg'); /* Replace with your own image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .hero-content p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }

.hero-buttons .btn {
    padding: 12px 24px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn.primary {
    background-color: #ff6b35;
    color: white;
}

    .btn.primary:hover {
        background-color: #e65a27;
    }

.btn.secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

    .btn.secondary:hover {
        background-color: white;
        color: #333;
    }
/* Our Story Section Styles */
.our-story {
    background-color: #f9f9f9;
    padding: 80px 20px;
    color: #333;
}

    .our-story .container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .our-story h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .our-story .intro {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 50px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.story-text {
    flex: 1 1 500px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-image {
    flex: 1 1 400px;
}

    .story-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
/* Mission & Vision Section */
.mission-vision {
    background: #fff;
    padding: 80px 20px;
    color: #333;
}

    .mission-vision .container {
        max-width: 1100px;
        margin: 0 auto;
        text-align: center;
    }

    .mission-vision h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

.mv-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.mv-block {
    flex: 1 1 400px;
    background: #f3f3f3;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .mv-block h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .mv-block p {
        font-size: 1.1rem;
        line-height: 1.7;
    }

/* What We Offer Section */
.what-we-offer {
    background: #f5f7fa;
    padding: 80px 20px;
    color: #333;
}

    .what-we-offer .container {
        max-width: 1130px;
        margin: 0 auto;
        text-align: center;
    }

    .what-we-offer h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .what-we-offer .intro {
        font-size: 1.2rem;
        margin-bottom: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

.offer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.offer-card {
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    flex: 1 1 220px;
    max-width: 250px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .offer-card:hover {
        transform: translateY(-10px);
    }

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.offer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}
/* Meet the Team Section Styles */
.meet-the-team {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
    color: #333;
}

    .meet-the-team .container {
        max-width: 1130px;
        margin: 0 auto;
    }

    .meet-the-team h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .meet-the-team .intro {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    width: 220px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

.member-photo img {
    width: 100%;
    border-radius: 50%;
    transition: transform 0.3s;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.team-member h3 {
    margin: 15px 0 5px;
    font-size: 1.25rem;
}

.role {
    font-style: italic;
    color: #777;
    margin-bottom: 10px;
}

.bio {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.social-links a {
    margin: 0 5px;
    color: #555;
    text-decoration: none;
    font-weight: bold;
}

    .social-links a:hover {
        color: #ff6b35;
    }

@media (max-width: 576px) {
    .hero {
        position: relative;
        background-image: url(/lib/images/travel-concept-with-landmarks.jpg);
        background-size: cover;
        background-position: center;
        height: 250px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-buttons .btn {
        padding: 12px 14px;
        margin: 0 10px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background 0.3s ease;
    }
}