/* ==========================================================================
   index.css - СТИЛІ ТІЛЬКИ ДЛЯ ГОЛОВНОЇ СТОРІНКИ
   ========================================================================== */

.hero-section {
    padding: 20px 5% 5px;
    text-align: center;
    background: linear-gradient(180deg, #97e1f3 0%, #f0f794 100%);
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%; 
    margin-bottom: 2px;
    box-shadow: 0 10px 20px rgba(48, 2, 122, 0.705);
}

.hero-section h1 {
    margin-bottom: 15px;
    font-family: 'Cormorant', serif;
    font-size: 5.5rem;
    color: #1f2937;
}

.hero-section h3 {
    font-size: 2.4rem;
    font-weight: 500;
    color: #1f2937;
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.4;
}

.hero-section h5 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #1e40af;
    max-width: 750px;
    margin: 30px auto 50px; 
    line-height: 1.5;
    background: none;
    padding: 0;
    display: inline-block;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin: 0 auto;
    width: fit-content;
    border: none;
    position: relative;
    top: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 0 #1e40af, 0 8px 15px rgba(0, 0, 0, 0.2);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
}

.step-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow-heavy);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.step-card h3 {
    font-family: 'Cormorant', serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin: 5px 0 2px 0;
    color: #111827;
}

.step-card .step-text {
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    color: #111827 !important;
    margin-top: 2px !important;
    text-align: center !important;
}

.step-card .material-symbols-outlined {
    font-size: 4rem;
    margin-bottom: 5px;
    color: #00bfff; 
}

.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: rgba(8, 79, 88, 0.904);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(247, 181, 83, 0.705);
}

.section-base {
    position: relative;
    padding: 80px 5%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-base::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../Image/Background_Image_index.png") center/cover no-repeat fixed;
    filter: saturate(30%);
    z-index: -1;
}

.section-title {
    font-family: 'Bona Nova', serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: #ffffff;
    text-shadow: -1px -1px 0 #02723e, 1px -1px 0 #02723e, -1px 1px 0 #6b0385, 1px 1px 0 #6b0385;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}


