/* General Layout & Typography */
.afn-image-overlay-section {
    font-family: 'Open Sans', sans-serif;
    padding: 40px 0;
    text-align: center;
}

.afn-header {
    margin-bottom: 50px;
}

.afn-title {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.afn-highlight {
    color: #f7b731;
}

.afn-underline {
    border-bottom: 2px solid #ddd;
    width: 100px;
    margin: 0 auto 20px auto;
    position: relative;
}

.afn-underline i {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f7b731;
    color: #fff;
    padding: 5px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
}

/* Grid Container */
.afn-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Left Grid (4 Images) */
.afn-left-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.afn-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.afn-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.afn-image-wrapper {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.afn-grid-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.afn-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    text-align: left;
    color: #fff;
    transition: background-color 0.3s ease-in-out;
}

.afn-image-card:hover .afn-grid-image {
    transform: scale(1.05);
}

.afn-overlay-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 0;
}

.afn-overlay-subtext {
    font-size: 14px;
    margin-bottom: 0;
}

/* Special Offer Card (Right) */
.afn-special-offer-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.afn-offer-header {
    background-color: #92754d;
    padding: 25px 20px 15px 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.afn-offer-special {
    display: block;
    font-size: 24px;
}

.afn-offer-text {
    color: #f7b731;
    font-size: 38px;
}

.afn-offer-vacation {
    display: block;
    font-size: 24px;
}

.afn-countdown {
    display: flex;
    justify-content: space-around;
    background-color: #a38965;
    color: #fff;
    padding: 15px 10px;
}

.afn-countdown-item {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.2;
}

.afn-countdown-value {
    font-size: 24px;
    font-weight: bold;
    color: #f7b731;
}

.afn-countdown-label {
    font-size: 12px;
    text-transform: uppercase;
}

.afn-offer-image {
    height: 300px;
    overflow: hidden;
    flex-grow: 1;
}

.afn-offer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.afn-book-now-button {
    display: block;
    width: 100%;
    background-color: #f7b731;
    color: #fff;
    padding: 20px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border: none;
}

.afn-book-now-button:hover {
    background-color: #e6a720;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .afn-grid-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .afn-left-grid {
        grid-template-columns: 1fr;
    }
    
    .afn-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .afn-countdown-value {
        font-size: 20px;
    }
    
    .afn-countdown-label {
        font-size: 10px;
    }
    
    .afn-offer-header {
        font-size: 24px;
    }
    
    .afn-offer-text {
        font-size: 30px;
    }
    
    .afn-offer-vacation {
        font-size: 20px;
    }
    
    .afn-title {
        font-size: 28px;
    }
}
