/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 95vh;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    background-image: url('/static/core/public/images/hero-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    align-items: center;
}

.hero-section .col-lg-6:first-child {
    flex: 0 0 55%;
    max-width: 55%;
    padding-right: 10% !important;
    padding-left: 5% !important;
}

.hero-section .col-lg-6:first-child p {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
}

.hero-section .col-lg-6:last-child {
    flex: 0 0 45%;
    max-width: 45%;
    overflow: hidden;
    padding-right: 0 !important;
    padding-right: 30px !important;  /* отступ у колонки */
}


.hero-section .col-lg-6:last-child img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}


.hero-section .d-flex .text-muted {
    color: #ffffff !important;
}


body {
    padding-top: 0;
    overflow-x: hidden;
}



/* ===== FEATURE CARDS ===== */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}



.hero-section .container {
    max-width: 100% !important;
    padding: 0 30px !important;
}




.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
}

/* ===== LOGIN Button ===== */
.btn-outline-secondary {
    background-color: #f60 !important;
    color: #ffffff !important;
    border-color: #f60 !important;
}

.btn-outline-secondary:hover {
    background-color: #ffffff !important;
    color: #f60 !important;
    border-color: #f60 !important;
}