/* ========== NAVBAR - GRANATOWA PALETA ========== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(22, 46, 81, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 39, .3);
    transition: all .3s;
}

nav.scrolled {
    background: rgba(22, 46, 81, .98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}



.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.submenu-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 8px 0;
    list-style: none;
}


.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: .5rem 0;
    transition: color .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}



/* SECTIONS */
section {
    padding: 5rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--light);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: rgba(255, 255, 255, .8);
    max-width: 600px;
    margin: 1.5rem auto 0;
}