* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}

body {
    background-image: url('../../res/img/join/process.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 35, 72, 0.7), rgba(18, 35, 72, 0.9));
    z-index: -1;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}


#process_1 hr {
    background-color: #cda757;
    height: 4px;
    width: 400px;
    border: none;
    margin: 10px auto;
    display: block;
    border-radius: 3px;
    margin-top: -10px;
}

h1 {
    font-family: 'Bree Serif', serif;
    font-size: 50px;
    color: white;
    text-align: center;
    margin-bottom: 5px;
}


h2 {
    font-family: 'Bree Serif', serif;
    font-size: 30px;
    color: #122348;
    text-align: center;
    margin-bottom: 8px;
}

.step_desc hr {
    background-color: #cda757;
    height: 4px;
    width: 500px;
    border: none;
    margin: 10px auto;
    display: block;
    border-radius: 3px;
}

#process {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 60px;
}

.process_container {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-in-out;
}

.process_container:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(205, 168, 87, 0.8);
}

.process_container img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* ===============================
   STEP CONTAINER
================================ */

.process-step {
    margin-bottom: 4rem;
    padding: 2.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    width: 70%;
}

.process-step h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #122348;
    font-weight: 700;
}

/* ===============================
   GRID LAYOUT
================================ */

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.process-col h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #122348;
}

/* ===============================
   LIST STYLES
================================ */

.process-col ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.process-col li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #122348;
}

.process-col li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #caa44d;
    font-size: 1.4rem;
    line-height: 1;
}

/* ===============================
   ANIMATION SUPPORT
================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1400px) {
    .process-step {
        background: rgba(255, 255, 255, 0.8) !important;
    }
}

@media (max-width: 900px) {

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding: 2rem;
    }

    #header_process h1 {
        font-size: 2.3rem;
    }
}

@media (max-width: 480px) {
    #process {
        padding: 4rem 6vw;
    }

    .process-step h2 {
        font-size: 1.5rem;
    }
}