/* =========================
   RESET + GLOBAL FIX
   ========================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
}

/* =========================
   HEADER
   ========================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, #000, #141414);
    border-bottom: 2px solid #b00000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    position: relative;
}

/* LOGO FIX */
.logo img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
}

/* =========================
   HAMBURGER
   ========================= */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

/* =========================
   NAVIGAATIO
   ========================= */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-left: 32px;
    padding-bottom: 6px;
}

.main-nav a:hover,
.main-nav a.active {
    border-bottom: 2px solid #c00000;
}

/* =========================
   LAYOUT
   ========================= */
.home,
.page {
    margin-top: 220px;
}

/* =========================
   HERO
   ========================= */
.home-hero {
    height: calc(100vh - 220px);
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.85)),
        url("../images/hero-composite.jpg") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-overlay {
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.home-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.home-hero h2 {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 40px;
}

/* =========================
   BUTTONS
   ========================= */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.btn {
    background: #2a2a2a;
    color: #fff;
    text-decoration: none;
    padding: 14px 38px;
    font-weight: bold;
    border-radius: 4px;
}

.btn:hover {
    background: #444;
}

.btn-red {
    background: #b00000;
}

.btn-red:hover {
    background: #e00000;
}

/* =========================
   CONTACT
   ========================= */
.contact-section {
    padding: 60px 40px 100px;
}

.contact-grid-fixed {
    display: grid;
    grid-template-columns: 45% 55%;
}

/* =========================
   FOOTER
   ========================= */
.footer-content {
    text-align: center;
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    padding: 10px 20px;
}

.footer-content a {
    color: #999;
    text-decoration: none;
}

/* =========================
   TABLET
   ========================= */
@media (max-width: 1024px) {

    .header-inner {
        padding: 10px 20px;
    }

    .logo img {
        max-height: 150px;
    }

    .main-nav a {
        margin-left: 20px;
    }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 768px) {

    /* HEADER */
    .header-inner {
        flex-direction: column;
        padding: 10px 20px;
    }

    .logo img {
        max-height: 100px;
    }

    /* HAMBURGER */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        z-index: 2000;
    }

    /* NAV */
    .main-nav {
        width: 100%;
        flex-direction: column;
        display: none;
        text-align: center;
        margin-top: 10px;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        margin: 10px 0;
        font-size: 18px;
    }

    /* LAYOUT */
    .home,
    .page {
        margin-top: 160px;
    }

    /* HERO FIX (TÄRKEÄ) */
    .home-hero {
        height: auto;
        min-height: 60vh;
        padding: 60px 20px;
    }

    .home-hero h1 {
        font-size: 26px;
    }

    .home-hero h2 {
        font-size: 16px;
    }

    /* BUTTONS */
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* CONTACT */
    .contact-grid-fixed {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer-content {
        font-size: 12px;
        padding: 15px;
    }
}