/* Custom CSS for t3trip.com */

/* Hero Section Styling */
/* Custom CSS for t3trip.com */

/* Hero Section Styling */
.hero-section {
    /* *** CHANGE THIS LINE *** */
    background: url('./images/travel-hero.png') no-repeat center center/cover; /* <--- Updated path */
    min-height: 80vh; /* Adjust as needed */
    position: relative;
    padding-top: 100px; /* To account for fixed navbar if you make it fixed */
    padding-bottom: 50px;
}

/* ... rest of your CSS ... */

/* Optional: Add an overlay to make text more readable */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 0;
}

.hero-section > .container {
    position: relative;
    z-index: 1; /* Ensure content is above the overlay */
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Service Cards in Hero Section */
.service-card {
    width: 150px; /* Fixed width for consistency */
    transition: transform 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.1) !important; /* Slightly transparent white */
    backdrop-filter: blur(5px); /* Frosted glass effect */
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.service-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.service-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.service-card h5 {
    margin-top: 10px;
    font-size: 1rem;
}

/* General Link Styling for WhatsApp Button in Nav */
.navbar .btn-success {
    background-color: #25D366 !important; /* WhatsApp green */
    border-color: #25D366 !important;
}

.navbar .btn-success:hover {
    background-color: #1DA851 !important;
    border-color: #1DA851 !important;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .service-card {
        width: 120px;
        padding: 0.5rem;
    }

    .service-card i {
        font-size: 2.5em !important;
    }

    .service-card h5 {
        font-size: 0.9rem;
    }
}