/* ===========================
   NAVIGATION
=========================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #f7f5ee;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #4a7c8c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
}

.logo-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3c5a64;
    text-transform: uppercase;
    line-height: 1.2;
}

.logo-subtitle {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: #7a8e94;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-menu a {
    text-decoration: none;
    color: #444a51;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #4a7c8c;
}

.lang-switch {
    display: flex;
    background-color: #e2ded5;
    padding: 4px;
    border-radius: 20px;
    gap: 4px;
}

.lang-btn {
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    color: #555;
}

.lang-btn.active {
    background-color: #4a7c8c;
    color: #fff;
}

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
    background: linear-gradient(to bottom, #728c94 0%, #8ca4ac 40%, #a4b4bc 70%, #f7f5ee 100%);
    padding: 100px 8% 120px 8%;
    text-align: left;
}

.hero-content {
    max-width: 620px;
}

.hero-topline {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.12);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.info-box {
    background-color: rgba(255, 255, 255, 0.95);
    color: #4a525a;
    padding: 35px 40px;
    border-radius: 16px;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: #457888;
    color: #fff;
}

.btn-secondary {
    background-color: #fff;
    color: #457888;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 6%;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 10px;
    }

    .hero-section {
        padding: 80px 6% 100px 6%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1024px) {

    .navbar {
        padding: 18px 6%;
    }

    .hero-section {
        padding: 90px 6% 110px 6%;
    }

    .hero-title {
        font-size: 3rem;
    }
}
