/* Isolated Honeymoon Hero */
.honeymoon-hero {
    position: relative;
    width: 100%;
    height: 75vh; /* Slightly taller for a more premium feel */
    background: url('assets/squadimg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
}

.honeymoon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
        margin-top: 10px;
}

.honeymoon-content {
    position: relative;
    z-index: 2;
    color: white;
}

.honeymoon-content h1 {
    font-size: clamp(3rem, 10vw, 5rem);
    text-transform: uppercase;
    font-weight: 900;
}

.romantic-text {
    color: #0B2F56; /* Keeping your Navy Brand color */
    -webkit-text-stroke: 1px white;
}







.honeymoon-listing {
    padding: 100px 5%;
    background-color: #fff;
}

.honeymoon-container {
    max-width: 1100px;
    margin: 0 auto;
}

.honeymoon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Only 2 cards per row for a premium look */
    gap: 50px;
}

.honeymoon-card {
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img {
    position: relative;
    height: 350px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps photos looking perfect */
}

.special-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0B2F56;
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
}

/* .card-details {
    padding: 35px;
} */

.honey-btn {
    width: 100%;
    padding: 15px;
    background: #0B2F56;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

/* Responsive: 1 Column on mobile */
@media (max-width: 850px) {
    .honeymoon-grid { grid-template-columns: 1fr; }
    .honeymoon-hero { height: 60vh; }
}

/* --- HONEYMOON CARD STYLING --- */

.honeymoon-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #fce4ec; /* Very soft pink border */
}

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

.special-tag {
    background: linear-gradient(45deg, #ff8a80, #ff5252);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.honeymoon-note {
    font-style: italic;
    color: #777;
    font-size: 0.9rem;
    margin: 10px 0;
    line-height: 1.4;
}

.wa-quote-box {
    margin-top: 15px;
    padding: 15px;
    background: #fffafa; /* Blushing white background */
    border-radius: 12px;
    border: 1px dashed #ff8a80;
    text-align: center;
}

.wa-quote-box span {
    display: block;
    font-size: 0.8rem;
    color: #ff5252;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.honey-btn {
    background: #0B2F56; /* Keeping your brand blue for the button */
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.honey-btn:hover {
    background: #25D366; /* Changes to WhatsApp green on hover */
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.wa-honey-link {
    text-decoration: none;
}