
:root {
    --primary: #0A2540;
    --accent: #D4AF37;
    --text: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box;scroll-behavior: smooth; }

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text);
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
header {
    background: rgba(10, 37, 64, 0.97);
    color: white;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.7rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.02em;
}

.logo span { color: var(--accent); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.97rem;
    transition: color 0.3s;
    font-family: 'Roboto', sans-serif;
}

.nav-links a:hover { color: var(--accent); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.cta-btn {
    background: var(--accent);
    color: var(--primary);
    padding: 0.75rem 1.9rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: opacity 0.2s;
    font-family: 'Roboto', sans-serif;
}

.cta-btn:hover { opacity: 0.88; }

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 11px;
    border-radius: 50px;
    transition: all 0.2s;
    letter-spacing: 0.04em;
    font-family: 'Roboto', sans-serif;
}

.lang-btn.active {
    background: var(--accent);
    color: var(--primary);
}

.lang-btn:hover:not(.active) { color: white; }

/* Hamburger */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 37, 64, 0.98);
    padding: 1.5rem 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; }

.mobile-menu a {
    display: block;
    padding: 1rem 20px;
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    font-family: 'Roboto', sans-serif;
}

.mobile-lang { padding: 0.8rem 20px; }
.mobile-lang .lang-switcher { display: inline-flex; }

/* Hero */
.hero {
    height: 100vh;
    min-height: 650px;
    background: linear-gradient(rgba(10,37,64,0.78), rgba(10,37,64,0.85)), url('./assets/hero-pic.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding-top: 60px;
}

.hero h1 { font-size: 3.3rem; line-height: 1.15; margin-bottom: 1rem; font-weight: 700; }
.hero p { font-size: 1.35rem; margin-bottom: 2.5rem; font-weight: 300; }

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-outline {
    padding: 1.05rem 2.6rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Roboto', sans-serif;
}

.btn-primary { background: var(--accent); color: var(--primary); border: none; }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Sections */
section { padding: 100px 0; }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #555;
    font-weight: 400;
}

/* About */
#about { background: #f8f9fa; }

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
}

/* Translations */
#translations { background: white; }

.translations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.area-card {
    background: #f8f9fa;
    padding: 2.2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.area-card h3 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.area-card ul {
    padding-left: 1.4rem;
    line-height: 1.9;
    font-size: 0.97rem;
}

/* Quotes */
#quotes { background: #f8f9fa; }

.quotes-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;
}

/* Contact */
#contact { background: white; }

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem;
    background: #f8f9fa;
    border-radius: 16px;
}

.contact-info h2 { font-size: 2.2rem; margin-bottom: 2rem; color: var(--primary); }
.contact-info p { font-size: 1.15rem; margin: 1rem 0; }

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
}

.contact-info a:hover { color: var(--accent); }

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

footer p, footer li { font-size: 0.97rem; line-height: 1.8; }

/* Responsive */
@media (max-width: 992px) {
    .nav-links, .nav-right { display: none; }
    .hamburger { display: block; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.3rem; }
    section { padding: 80px 0; }
    .quotes-box { padding: 2.5rem 1.8rem; }
    .contact-info { padding: 2.5rem 1.8rem; }
}
