/**
 * @file
 * Footer top section layout styles.
 * Provides responsive layout with title, text, and action buttons.
 */

.footer-top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    gap: 30px;
    max-width: 85%;
    width: 100%;
    margin: 0 auto;
}

.footer-top-content {
    flex: 1;
    min-width: 0;
    padding-top: 4%;
}

.footer-top-title {
    font-size: 28px;
    color: #1a2433;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-top-title-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-top-title-part-1 {
    color: #1a2433;
}

.footer-top-title-part-2 {
    color: #2fbf4a;
}

.menu--copyright-menu-footer-menu .menu {
    display: flex;
    gap: 9px;
    margin-inline-end: 32px;
    float: inline-end;
}

.footer-top-text {
    font-size: 16px;
    color: #5c6878;
    line-height: 1.6;
}

.footer-top-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.footer-top-btn {
    padding: 12px 24px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-top-btn-primary {
    background-color: #007bff;
    color: white;
}

.footer-top-btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.footer-top-btn-secondary {
    background-color: #28a745;
    color: white;
}

.footer-top-btn-secondary:hover {
    background-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

/* Tablet */
@media (max-width: 768px) {
    .footer-top-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .footer-top-buttons {
        width: 100%;
        flex-direction: row;
    }

    .footer-top-btn {
        flex: 1;
    }

    .footer-top-title {
        font-size: 24px;
    }

    .footer-top-text {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .footer-top-container {
        padding: 15px;
    }

    .footer-top-buttons {
        flex-direction: column;
    }

    .footer-top-btn {
        width: 100%;
    }

    .footer-top-title {
        font-size: 20px;
    }
}
