﻿

/*.target-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease forwards;
}

    .target-container img {
        width: 300px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.4s ease;
    }

        .target-container img:hover {
            transform: scale(1.05);
        }

.target-text {
    max-width: 500px;
}

    .target-text h2 {
        font-size: 28px;
        color: #ff5722;
        margin-bottom: 15px;
        animation: slideInRight 1s ease forwards;
    }

    .target-text p {
        font-size: 18px;
        line-height: 1.6;
        color: #333;
        animation: slideInRight 1.3s ease forwards;
    }*/

/* Animations */
/*@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}*/

.target-container {
    position: relative;
    width: 100%;
    height: 150px;
    background: url('../../Content/1.jpeg') no-repeat center center/cover;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease forwards;
}

/* Dark overlay for readability */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.target-text {
    color: #fff;
    max-width: 700px;
    animation: slideInUp 1.2s ease forwards;
}

    .target-text h2 {
        font-size: 36px;
        margin-bottom: 15px;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .target-text p {
        font-size: 20px;
        line-height: 1.6;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    }

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}