﻿body {
}



/* RESPONSIVE: hero padding */
.hero-section .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}


/* Базовые стили */
.avatar-container {
    width: clamp(180px, 25vw, 415px);
    height: clamp(180px, 25vw, 400px);
    margin-left: clamp(2rem, 10vw, 15rem);
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background-image: url('/images/nataIco.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; /* ключевой момент */
    background-origin: border-box; /* помогает выровнять рендер */
}


    .avatar-container img {
        display: none; /* Полностью скрываем img */
    }



.elegant-pay-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

    .elegant-pay-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .elegant-pay-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

        .elegant-pay-btn:hover::before {
            left: 100%;
        }

    .elegant-pay-btn:active {
        transform: translateY(0);
    }

    .elegant-pay-btn .btn-text {
        letter-spacing: 0.5px;
    }

    .elegant-pay-btn .btn-icon {
        font-size: 18px;
        transition: transform 0.3s ease;
    }

    .elegant-pay-btn:hover .btn-icon {
        transform: translateX(3px);
    }

/* Минималистичная версия */
.minimal-pay-btn {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .minimal-pay-btn:hover {
        background: #667eea;
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    }

/* Альтернативный цвет */
.primary-pay-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

    .primary-pay-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(79, 172, 254, 0.4);
    }


