/* Custom styles for Tourzappy website */
body {
    font-family: Arial, Helvetica, sans-serif;
}

/* Hero section styling */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 80vh;
    color: white;
    display: flex;
    align-items: flex-start;
    padding-left: 10%;
    padding-top: 10%;
    text-align: left;
}

.hero-section .hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-section .hero-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Navigation underline effect */
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #007bff;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-in-out;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Card image height */
.tour-card img {
    height: 200px;
    object-fit: cover;
}

/* Footer styling */
.footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}