body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(4, 56, 104, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

header .container {
    max-width: 100%;
    margin: 0;
    padding-left: 50px;
    padding-right: 50px;
}

.nav-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 100%;
    max-height: 80px;
    object-fit: contain;
}

.logo-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;
}

.highlight { 
    color: #de540a; 
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    margin: 0 35px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active { 
    color: #de540a; 
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 5px;
}

.contact-page {
    position: relative;
    overflow: hidden;
}

.contact-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../poze/fundal.jpg') center/cover no-repeat;
    filter: brightness(0.6);
    z-index: -2;
}

.contact-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: -1;
}

.contact-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.contact-page h1,
.contact-page .subtitle {
    color: white;
}

@keyframes zoomBg {
    from { transform: scale(1.1); }
    to { transform: scale(1.18); }
}

.contact-page::before {
    animation: zoomBg 12s ease-in-out infinite alternate;
}

.contact-page {
    padding: 120px 0 60px;
    text-align: center;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
}

.qr-box,
.contact-card{
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-card h3 {
    margin-bottom: 20px;
    color: #003366;
}

.contact-card a {
    display: block;
    margin-bottom: 15px;
    color: #de540a;
    text-decoration: none;
    font-weight: 600;
}

.qr-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.qr-box img {
    width: 120px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.qr-box p {
    font-weight: 600;
}

footer {
    background-color: #001a33;
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #113355;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
}

footer a {
    display: block;
    margin-bottom: 5px;
    color: white;
    text-decoration: none;
}

@media (max-width: 1024px) {

    .hamburger {
        display: flex;
    }

    #nav-menu {
        display: none;

        position: absolute;
        top: 80px;
        left: 0;

        width: 100%;
        background: #001a33;
    }

    #nav-menu.active {
        display: block;
    }

    #nav-menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 20px;
        padding: 20px 0;
    }

    #nav-menu ul li a {
        margin: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}