/* ===================================
General
====================================== */
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #fff;
    background: #82580B;
    font-weight: 300;
    line-height: 25px;
    width: 100%;
    overflow-x: hidden;
    transition: background 0.3s ease;
}

.h1, .h2, .h3, .h4, .h5, h1, h2, h3, h4, h5 {
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.logo-main {
    margin: 20px 0;
    transition: transform 0.3s ease;
}

    .logo-main:hover {
        transform: scale(1.05);
    }

input {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb),var(--bs-text-opacity)) !important;
    color: rgb(240, 120, 40) !important;
    transition: all 0.3s ease;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #F09717;
    --bs-btn-border-color: #F09717;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #82580B;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #000;
    --bs-btn-active-border-color: #000;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #F09717;
    --eds-darkColor: #000;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: black;
    border-color: var(--bs-btn-hover-border-color);
    transform: translateY(-2px);
}

/* ===================================
Form Container
====================================== */
.superactivator-form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.95); /* mostly white */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    color: #333; /* darker text for readability */
    transition: all 0.3s ease;
    transform: translateY(0);
}

    /* Form Title */
    .superactivator-form-container h1 {
        text-align: center;
        margin-bottom: 25px;
        font-weight: 500;
        font-size: 28px;
        color: #F09717; /* orange accent */
        transition: color 0.3s ease;
    }

    /* Input styling */
    .superactivator-form-container input.form-control {
        background-color: #fff;
        border: 2px solid #82580B; /* darker brown border */
        border-radius: 8px;
        padding: 10px 12px;
        color: #333;
        transition: all 0.3s ease;
    }

        .superactivator-form-container input.form-control:focus {
            border-color: #F09717; /* highlight on focus */
            background-color: #fff;
            box-shadow: 0 0 12px rgba(240, 151, 23, 0.5);
            outline: none;
            transform: scale(1.02);
        }

    /* Labels */
    .superactivator-form-container label {
        font-weight: 500;
        color: #000; /* black labels */
        margin-bottom: 5px;
        display: block;
        transition: color 0.3s ease;
    }

    /* Validation messages */
    .superactivator-form-container .text-danger {
        font-size: 0.875rem;
        margin-top: 3px;
        color: #d9534f; /* red for errors */
        transition: all 0.3s ease;
    }

    /* Submit Button */
    .superactivator-form-container .btn-primary {
        width: 100%;
        padding: 14px;
        font-size: 16px;
        font-weight: 500;
        border-radius: 8px;
        background-color: #F09717;
        border-color: #F09717;
        color: #fff;
        transition: all 0.3s ease, transform 0.2s ease;
    }

        .superactivator-form-container .btn-primary:hover {
            background-color: #e6830f;
            border-color: #e6830f;
            color: #fff;
            transform: translateY(-2px);
        }



/* Style list items like cards inside coupon-summary */
.success-details .list-group-item {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background-color: #ffffff;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

    .success-details .list-group-item strong {
        color: #333;
    }

.btn-secondary {
    margin-top: 1rem;
}



/* Responsive adjustments */
@media screen and (max-width: 767px) {
    .superactivator-form-container {
        padding: 25px;
        margin: 20px;
    }

        .superactivator-form-container h1 {
            font-size: 26px;
        }
}

.footer {
    background-color: #2f2f2f;
    color: white;
    padding: 40px 0;
    font-size: 1.5rem;
    line-height: 2.5rem;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle {
    background-color: #f39200;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.2;
}

.logo-highlight {
    color: white;
}

.logo-circle small {
    font-size: 12px;
    letter-spacing: 1px;
}

.footer-section {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.divider {
    width: 6px;
    height: 4.5rem;
    background-color: #f39200;
    align-self: center;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section li {
    margin: 5px 0;
}

.footer-section a {
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

    .footer-section a:hover {
        color: #f39200;
    }


.logo-footer {
    margin-top: 0px;
    transition: transform 0.3s ease;
    width: 70%;
    
}


