﻿/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   REGISTRATION & INTEREST CAPTURE
   =============================== */

/* Section Styling */
.registration-section {
    padding-top: 100px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 50%, rgba(45, 45, 45, 0.9) 100%), url('your-background-image.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
    animation: fadeInUp 1s ease-out;
}

    .registration-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

/* Title Styling */
.registration-eyebrow {
    font-size: 1rem;
    color: #f1c40f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.registration-section h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #f1c40f;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

    .registration-section h3:hover {
        color: #f39c12;
    }

/* Form Styling */
form {
    max-width: 600px;
    margin: 0 auto;
}

.conditional-fields {
    display: none;
}

/* Button Styling */
.btn-accent {
    background-color: #f1c40f;
    color: #121212;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-accent:hover,
    .btn-accent:focus {
        background-color: #f39c12;
        color: #fff;
        box-shadow: 0 0 10px rgba(241, 196, 15, 0.6);
    }

.btn-secondary {
    background-color: #444;
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-secondary:hover,
    .btn-secondary:focus {
        background-color: #666;
        color: #fff;
    }

/* Input and Select Styling */
.form-control, .form-select {
    background-color: #121212;
    color: #fff;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 12px;
}

    .form-control:focus, .form-select:focus {
        border-color: #f1c40f; /* Yellow border on focus */
        outline: none;
    }

/* Responsive Design */
@media (max-width: 992px) {
    .registration-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    h3 {
        font-size: 1.8rem;
    }

    .text-soft {
        font-size: 1rem;
    }

    .btn-accent {
        padding: 15px 20px;
    }

    .btn-secondary {
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .container {
        text-align: center;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .btn-accent,
    .btn-secondary {
        width: 100%;
        margin-top: 10px;
    }

    h3 {
        font-size: 1.6rem;
    }

    .text-soft {
        font-size: 1rem;
    }
}
