
/*Activity card*/

/* Container for the entire activity block */
.activity-card {
    font-family: 'Arial', sans-serif; /* Replace with your main font, looks like a clean sans-serif */
    color: #ffffff;
    max-width: 320px; /* Constrains the width like in the screenshot */
    background: transparent; /* Seamless blend into the background image */
    position: relative; /* Essential for positioning the arrow icon */
    padding: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Helps readability over images */
}

/* "Today's Activities" Heading */
.activity-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

/* Stacked items layout */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Compact spacing between distinct activities */
    margin-bottom: 12px;
}

/* Headings for specific activities (e.g., Spa Retreat, Sunset Jet Ski) */
.activity-list .item h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* Descriptions underneath the headings */
.activity-list .item p {
    font-size: 12px;
    color: #dddddd; /* Slightly lighter gray for contrast hierarchy */
    margin: 2px 0 0 0;
    font-weight: 400;
}

/* The italicized quote text at the bottom */
.card-quote {
    font-style: italic;
    font-size: 13px;
    color: #ffffff;
    margin: 15px 0 0 0;
    line-height: 1.4;
}

/* The little arrow icon sitting under the quote */
.card-arrow {
    font-size: 16px;
    margin-top: 5px;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.card-arrow:hover {
    transform: translate(2px, -2px); /* Subtle nudge effect on hover */
}
