/* OpenUp Travel - Main CSS Styles */

:root {
    --primary-color: #1e88e5;
    --secondary-color: #f4f4f4;
    --text-color: #333333;
    --light-text-color: #ffffff;
    --link-color: #1565c0;
    --footer-bg: #2c3e50;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/swiss-alps.jpg') no-repeat center center/cover;
    color: var(--light-text-color);
    padding: 150px 0;
    text-align: center;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#hero .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#hero .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 30px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

#hero .btn-primary:hover {
    background-color: #1565c0;
    border-color: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Featured Destinations */
#featured-destinations {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.destination-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%; /* Ensure all cards have the same height */
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card .card-body {
    padding: 20px;
}

.destination-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    #hero .lead {
        font-size: 1.2rem;
    }

    .destination-card {
        margin-bottom: 20px;
    }
}
/* About Us Page Styles */
#about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/img/swiss-landscape.jpg') no-repeat center center/cover;
    padding: 100px 0;
}

#about-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

#about-content h2, #about-content h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.timeline {
    list-style-type: none;
    position: relative;
    padding-left: 1.5rem;
}

.timeline:before {
    content: ' ';
    background: var(--primary-color);
    display: inline-block;
    position: absolute;
    left: 0;
    width: 2px;
    height: 100%;
    z-index: 400;
}

.timeline li {
    margin: 20px 0;
    padding-left: 20px;
}

.timeline li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    left: -10px;
    width: 20px;
    height: 20px;
    z-index: 400;
}


/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--light-text-color);
    padding: 40px 0;
}

footer h5 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

footer p {
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

    #hero .lead {
        font-size: 1.2rem;
    }
}