/* Experiences Section */
.experiences-section {
    background: rgba(26, 26, 26, 0.5);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.experiences-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/public/asset/mayon1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.5;
    z-index: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.experiences-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 74, 61, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
    transition: opacity 0.5s ease-out, background 0.5s ease-out;
}

.experiences-section > .section-wrapper {
    position: relative;
    z-index: 2;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.experience-card {
    background: rgba(248, 246, 242, 0.02);
    border: 1px solid rgba(248, 246, 242, 0.05);
    overflow: hidden;
    transition: all 0.5s ease;
    border-radius: 4px;
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
}

.experience-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.experience-card:hover .experience-image img {
    transform: scale(1.08);
}

.experience-icon {
    position: absolute;
    bottom: -20px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--warm-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-charcoal);
}

.experience-content {
    padding: 35px 30px 30px;
}

.experience-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--ivory-white);
}

.experience-content p {
    font-family: 'Inter', sans-serif;
    color: rgba(248, 246, 242, 0.6);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.experience-link {
    background: none;
    border: none;
    color: var(--warm-gold);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.experience-link:hover {
    gap: 15px;
}
