/* Top Things To Do Section Styles */

.things-to-do-section {
    padding: 90px 20px;
    background-color: #f4f7f4;
    font-family: 'Montserrat', sans-serif;
}

.things-container {
    max-width: 1200px;
    margin: 0 auto;
}

.things-header {
    text-align: center;
    margin-bottom: 50px;
}

.things-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #285638;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 15px;
    box-shadow: 0 6px 15px rgba(40, 86, 56, 0.2);
}

.things-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.things-header p {
    font-size: 15px;
    color: #555555;
    font-weight: 500;
}


/* Bento Grid Layout */

.things-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 25px;
}

.things-right-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}


/* Common Card Styling */

.thing-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    background-color: #111111;
}

.thing-large {
    height: 525px;
}

.thing-small {
    height: 250px;
}

.thing-img-box {
    width: 100%;
    height: 100%;
}

.thing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}


/* Dark Gradient Overlay for Readability */

.thing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    transition: background 0.3s ease;
}


/* Content Box Inside Cards */

.thing-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.thing-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}

.thing-small .thing-content h3 {
    font-size: 20px;
}

.thing-content p {
    font-size: 13px;
    color: #e0e0e0;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}


/* Hover Effects */

.thing-card:hover .thing-img {
    transform: scale(1.08);
}

.thing-card:hover .thing-overlay {
    background: linear-gradient(to top, rgba(40, 86, 56, 0.85) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
}

.thing-card:hover .thing-content {
    transform: translateY(-4px);
}


/* Scroll Animation Initial States */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Adjustments */

@media screen and (max-width: 992px) {
    .things-grid {
        grid-template-columns: 1fr;
    }
    .thing-large {
        height: 380px;
    }
}

@media screen and (max-width: 600px) {
    .thing-large {
        height: 300px;
    }
    .thing-small {
        height: 220px;
    }
    .things-header h2 {
        font-size: 30px;
    }
}