/* Hero Section */
.trip-hero {
    position: relative;
    min-height: 80vh; /* Covers 80% of the screen height */
    display: flex;
    align-items: center;
    color: white;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                      url('');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed; /* Creates a slight parallax scrolling effect */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4.5rem; /* Large, attention-grabbing title */
    margin: 10px 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.ship-tagline {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.hero-details {
    display: flex;
    gap: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('images/princess-group.jpg');
    background-size: cover;
    background-position: center;
}

.host-label {
    color: var(--red);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Layout Grid */
.trip-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
}

@media (min-width: 992px) {
    .trip-layout {
        grid-template-columns: 2fr 1fr;
    }
}

/* Itinerary Styling */
.itinerary-grid {
    margin-top: 30px;
}

.itinerary-node {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    border-left: 3px solid var(--red);
    padding-left: 20px;
}

.day {
    font-weight: bold;
    color: var(--red);
    min-width: 60px;
}

/* Sidebar Booking Card */
.booking-card {
    background: var(--charcoal);
    padding: 30px;
    border-radius: 12px;
    color: white;
    position: sticky;
    top: 20px;
    border: 1px solid #333;
}

.highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.highlights li::before {
    content: "✓";
    color: var(--red);
    margin-right: 10px;
}

.price-box {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #444;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
}

.btn-join-full {
    display: block;
    background: var(--red);
    color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-join-full:hover {
    background: #b00321; /* Slightly darker red */
}