/* Global */
body {
    margin: 0;
    padding: 0;
    background: #0d0d0d;
    color: #f2f2f2;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.4px;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav-center {
    display: flex;
    flex-direction: column;
    padding: 40px 0 30px 0;
}

/* LOGO – vasakule, õhuga, suurem */
.logo-img {
    height: 90px;            /* 2–3× suurem */
    width: auto;
    display: block;
    align-self: flex-start;  /* murab välja keskjoondusest */
    margin-left: 28px;       /* õhk vasakult */
    margin-bottom: 22px;     /* ruum logo ja linkide vahel */
}

/* NAV-LINKS – keskel, suuremad */
.nav-links {
    display: flex;
    justify-content: center;
}

.nav-links a {
    margin: 0 22px;
    color: #bfbfbf;
    text-decoration: none;
    font-size: 18px;         /* suurem */
    letter-spacing: 1.2px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Hero */
.hero {
    text-align: center;
    padding: 160px 20px 140px 20px;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 22px;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 18px;
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto 45px auto;
    line-height: 1.65;
    color: #c8c8c8;
}

.cta {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1.2px;
    transition: all 0.25s ease;
}

.cta:hover {
    background: #ffffff;
    color: #000000;
}

/* Footer */
footer {
    text-align: center;
    padding: 50px 0;
    margin-top: 140px;
    border-top: 1px solid #1c1c1c;
}

.footer-links a {
    margin: 0 14px;
    color: #bfbfbf;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero h2 {
        font-size: 16px;
        padding: 0 10px;
    }

    .nav-links a {
        margin: 0 10px;
        font-size: 16px;
    }

    .logo-img {
        height: 70px; /* mobiilis veidi väiksem */
        margin-left: 20px;
    }
}

/* Gallery */
.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 120px 20px;
}

.gallery-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.gallery-section-title {
    font-size: 18px;
    font-weight: 400;
    margin: 60px 0 20px 0;
    color: #d0d0d0;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    background: #111;
    border: 1px solid #1a1a1a;
    transition: opacity 0.25s ease;
}

.gallery-grid img:hover {
    opacity: 0.75;
}

/* Mobile */
@media (max-width: 600px) {
    .gallery-title {
        font-size: 26px;
    }
    .gallery-section-title {
        margin-top: 40px;
    }
}

/* Vector Art – 2-column fixed layout */
.gallery-grid.vector {
    grid-template-columns: repeat(2, 1fr);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    font-size: 1.2rem;
}
