body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: #1A1A1A;
}

/* 🔝 NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 18px 0;
    background: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* LOGO */
.navbar-logo {
    height: 28px;
    width: auto;
    transition: 0.3s;
}

/* scroll esetén kisebb */
.navbar-scrolled .navbar-logo {
    height: 24px;
}

.navbar-scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 12px 0;
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: 2px;
    color: #002D74 !important;
}

/* MENU */
.nav-link {
    color: #005CC6 !important;
    margin-left: 30px;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
}

/* underline */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #005CC6;
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-active {
    background: #1855aa;
    color: #ffffff !important;
    padding: 8px 20px;
    margin-left: 30px;
    font-size: 13px;
    border-radius: 4px;
}

/* CONTACT BUTTON */
.btn-contact {
    background: #1855aa;
    color: #ffffff !important;
    padding: 8px 20px;
    margin-left: 30px;
    font-size: 13px;
    border-radius: 4px;
}

.btn-contact:hover {
    background: #2562B7;
}

/* 🎯 HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-content {
    max-width: 700px;
}

/* CÍM */
.hero h1 {
    font-size: 3.2rem;
    font-weight: 600;
    color: #002D74;
    line-height: 1.2;
}

/* SZÖVEG */
.hero p {
    margin-top: 20px;
    color: #1A1A1A;
    font-size: 1.1rem;
    max-width: 520px;
}

/* GOMB */
.btn-main {
    margin-top: 30px;
    padding: 14px 32px;
    background: #1855aa;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1px;
    border: none;
}

.btn-main:hover {
    background: #2562B7;
}

/* anim */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

.fade-in.delay-1 { animation-delay: 0.3s; }
.fade-in.delay-2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔚 FOOTER */
footer {
    background: #002d74;
    color: #ffffff;
    padding: 50px 0;
    margin-top: 30px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
}

footer a:hover {
    opacity: 1;
}

.footer-logo {
    
}
/* 🔚 END - FOOTER */

