/* =========================
   FONT
========================= */

@font-face {
    font-family: 'AktivGroteskEx';
    src: url('assets/fonts/AktivGroteskEx-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* =========================
   GLOBAL
========================= */

:root {
    --black: #000000;
    --dark: #111111;
    --gray-light: #f4f4f4;
    --accent: #e10600;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'AktivGroteskEx', Arial, sans-serif;
    background-color: #ffffff;
    color: var(--dark);
    line-height: 1.65;
    letter-spacing: 0.2px;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* =========================
   CONTAINER (CRITICAL FIX)
========================= */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    padding: 100px 0 80px;
    background-color: var(--gray-light);
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero img {
    vertical-align: middle;
}

.logo {
    display: block;
    width: 360px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 40px auto;
}

h1 {
    font-size: 32px;
    font-weight: 500;
    margin: 0 auto;
    max-width: 850px;
    line-height: 1.4;
}

/* =========================
   CONTENT SECTION
========================= */

.content {
    background-color: var(--black);
    color: #ffffff;
    padding: 100px 0;   /* removed side padding */
}

.content h2,
.content p,
.content .contact-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

p {
    font-size: 18px;
    margin: 8px 0;
    opacity: 0.85;
}

.contact-text {
    margin-top: 30px;
}

.email {
    display: inline-block;
    margin-top: 12px;
    font-size: 18px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.25s ease;
}

.email:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* =========================
   FOOTER
========================= */

footer {
    padding: 25px 0;
    background-color: var(--black);
    color: #666;
    font-size: 13px;
    letter-spacing: 0.5px;
}

footer .container {
    text-align: center;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {

    .hero {
        padding: 70px 0 60px;
    }

    .logo {
        width: 240px;
        margin-bottom: 30px;
    }

    h1 {
        font-size: 24px;
        padding: 0 10px;
    }

    .content {
        padding: 70px 0;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 16px;
    }

    .email {
        font-size: 18px;
        word-break: break-word;
    }

    footer {
        font-size: 12px;
    }
}