/* Fonts loaded in HTML: Poppins + Inter */

/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top left, #f5f5f5, #ffffff 50%, #f0f0f0);
    color: #212121;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== UTIL ========== */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== TOPBAR ========== */
.topbar {
    width: 100%;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid #e0e0e0;
}
.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
}
.logo-icon {
    display: inline-block;
    background-color: #212121;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.5rem;
    border-radius: 50%;
    margin-right: 0.5rem;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
nav a {
    text-decoration: none;
    color: #212121;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #444;
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #212121;
}

/* ========== HERO ========== */
.hero-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 6rem auto 4rem auto;
    padding: 2rem;
}
.hero-left {
    flex: 1;
    padding: 1rem;
}
.hero-left h1 {
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
}
.highlight {
    border-bottom: 4px solid #212121;
    padding-bottom: 0.2rem;
}
.hero-left p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #444;
}
.hero-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 1rem;
}

/* ========== ABOUT ========== */
.about-section {
    padding: 4rem 2rem;
    background: #fdfdfd;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-points {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.about-points li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.about-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.about-photo {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.quote-box {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    padding: 1rem;
    background: #eee;
    border-radius: 8px;
    max-width: 400px;
}


/* ========== STATS ========== */
.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background-color: #f0f0f0;
}
.stat-box {
    text-align: center;
}
.stat-box h2 {
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    color: #212121;
}
.stat-box p {
    color: #666;
    font-size: 0.95rem;
}

/* ========== PROJECTS ========== */
.projects-section {
    padding: 4rem 2rem;
    text-align: center;
}
.projects-section h1 {
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.project-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.project-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.project-card p {
    font-size: 0.95rem;
    color: #666;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.gallery-section h1 {
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* ========== NEWS / AKTUALITY ========== */
.news-section {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.news-section h1 {
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
    transition: transform 0.2s ease;
}

.news-card:hover {
    transform: translateY(-4px);
}

.news-card img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    max-height: 200px;
}

.news-card .subtitle {
    font-weight: 500;
    color: #444;
}

.news-card .date {
    font-size: 0.85rem;
    color: #999;
}

.news-card .btn.small {
    background-color: #212121;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    margin-top: 0.5rem;
    align-self: start;
}

.news-card .btn.small:hover {
    background-color: #333;
}

#nav-links a img,
.footer-nav a img,
.footer-contact p img {
    margin-right: 6px;
    vertical-align: middle;
    filter: grayscale(100%);
    opacity: 0.8;
}



/* ========== FOOTER ========== */
.footer {
    background-color: #f0f0f0;
    color: #212121;
    padding: 4rem 2rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-grid h3,
.footer-grid h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    margin-top: 0.5rem;
    color: #666;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.footer-contact a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: #555;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem 2rem;
        border-top: 1px solid #ddd;
    }
    nav.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-grid {
        flex-direction: row;
        align-items: center;
    }
}
