.image-container {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(201,165,92,0.2), rgba(26,26,26,0.2));
    z-index: 1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.image-container a {
    display: block;
    height: 100%;
    width: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: #ffffff;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-container:hover::before {
    opacity: 1;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(to top, 
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0) 100%);
}

.overlay-title {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #e67e21;
}

.overlay-text {
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0.9;
}

.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 5rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #c9a55c, #e3c283);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.lead {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    .overlay-title {
        font-size: 1.8rem;
    }
    .overlay-text {
        font-size: 1rem;
    }
    .lead {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
}