/* style.css - Chania Bus Booking */

body {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
}

header {
    background: linear-gradient(120deg, #007bff 60%, #00bcd4 100%);
}

h1, h2, h3, .fw-bold {
    font-family: 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.navbar-brand img {
    background: #fff;
    border-radius: 8px;
    padding: 2px 6px;
}

.carousel-inner img {
    max-height: 350px;
    object-fit: cover;
}

section {
    scroll-margin-top: 80px;
}

#gallery img {
    transition: transform 0.2s;
}
#gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

footer {
    background: #007bff;
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .carousel-inner img {
        max-height: 180px;
    }
    .navbar-brand img {
        height: 32px;
    }
}
