﻿/* ==========================================
                HERO SECTION
========================================== */
/*
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}*/

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    background: radial-gradient(circle at top left,#DBEAFE 0%,transparent 45%), radial-gradient(circle at bottom right,#BFDBFE 0%,transparent 35%), var(--background);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-subtitle {
    color: #2563eb;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.2;
    font-weight: 800;
    margin: 20px 0;
    max-width: 620px;
    color: #0f172a;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}
/*
.btn-primary {
    background: #2563eb;
    color: white;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}*/

.btn-primary {
    background: linear-gradient(135deg,#2563EB,#3B82F6);
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-small);
}

    /* .btn-primary:hover {
        transform: translateY(-4px);
    }*/

    /* .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-large);
    }*/
    .btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(37,99,235,.35);
    }

.btn-secondary {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s ease;
}

    .btn-secondary:hover {
        background: #2563eb;
        color: white;
    }

.hero-image img {
    width: 100%;
    max-width: 550px;
    margin: auto;
}
