/* HERO SECTION - Isolated for Upcoming Page */
.trips-hero {
    position: relative;
    width: 100%;
    height: 70vh; /* One complete scroll length feel */
    background-image: url('assets/squadimg.png'); /* Your squad image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark tint over the image to make white text pop */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
        margin-top: 10px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Responsive font size */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
}

/* Brand highlight color (Deep Navy) */
.highlight-text {
    color: #0B2F56;
    /* Optional: adds a slight glow to the navy text so it stays visible on dark image */
    text-shadow: 0 0 10px rgba(255,255,255,0.2); 
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .trips-hero {
        height: 50vh; /* Shorter height on phones */
    }
}












/* TRIPS LISTING SECTION */
.trips-listing {
    padding: 80px 5%;
    background-color: #ffffff;
}

.cards-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.listing-title {
    text-align: center;
    font-size: 2.5rem;
    color: #0B2F56; /* Navy Brand Color */
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* THE GRID SYSTEM */
.trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 35px;
}

/* INDIVIDUAL CARD STYLING */
.trip-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-10px);
}

.card-img-box {
    width: 100%;
    height: 250px;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fit perfectly */
}

.card-info {
    padding: 25px;
    text-align: left;
}

.card-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.meta-data {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.details-btn {
    width: 100%;
    padding: 12px;
    background-color: #0B2F56; /* Navy Brand Color */
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.details-btn:hover {
    background-color: #082340;
}

/* MOBILE RESPONSIVE: One Column */
@media (max-width: 992px) {
    .trips-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cards on tablets */
    }
}

@media (max-width: 650px) {
    .trips-grid {
        grid-template-columns: 1fr; /* 1 card on mobile as requested */
    }
}











/* --- UPDATED UPCOMING TRIP STYLES --- */

.upcoming-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.details-link {
    flex-grow: 1; /* Makes the View Details button take most space */
    text-decoration: none;
}

.wa-circle-btn {
    width: 45px;
    height: 45px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.wa-circle-btn img {
    width: 25px;
    height: 25px;
}

.wa-circle-btn:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Coming Soon Badge Overlay */
.coming-soon-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0B2F56;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 10;
    text-transform: uppercase;
}

/* Announcement Box */
.wa-announcement {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #276749;
    font-weight: 600;
}