@font-face {
    font-family: 'OCR';
    src: url('../fonts/ocr.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #121713;
    color: #b4b9b5;
    font-family: 'OCR', monospace;
    overflow-x: hidden;
}

/* --- DESKTOP CONFIGURATION --- */
.main {
    min-height: 100vh;
    padding: 80px;
    display: flex;
    flex-wrap: wrap; /* Allows sections to wrap correctly */
    align-items: center;
}

/* Desktop: Left side (50%) */
.content-text {
    width: 50%;
}

.content-address {
    width: 50%;
    margin-top: 20px;
}

/* Desktop: Right side (50%) */
.content-logo {
    width: 50%;
    display: flex;
    justify-content: center;
}

/* Typography & Visuals */
.title {
    font-size: 22px;
    letter-spacing: 4px;
    color: #8a8059;
    margin-bottom: 20px;
}

.text {
    font-size: 42px;
    line-height: 1.5;
    text-transform: uppercase;
}

.logo {
    width: 400px;
    opacity: 0.9;
}

.location-name, .label {
    color: #8a8059;
    font-weight: bold;
    letter-spacing: 2px;
}

.contact-section p {
    font-size: 16px;
    line-height: 1.6;
    text-transform: uppercase;
}

/* --- MOBILE CONFIGURATION --- */
@media screen and (max-width: 768px) {
    .main {
        display: flex;
        flex-direction: column; /* Force vertical stacking */
        text-align: center;
        padding: 40px 20px;
        justify-content: center;
    }

    .content-text, .content-logo, .content-address {
        width: 100%;
        margin-top: 0;
    }

    /* MOBILE ORDER: Text (1) -> Logo (2) -> Address (3) */
    .content-text {
        order: 1;
        margin-bottom: 30px;
    }

    .content-logo {
        order: 2;
        margin-bottom: 30px;
    }

    .content-address {
        order: 3;
    }

    /* Mobile Resizing */
    .text {
        font-size: 24px;
    }

    .logo {
        width: 220px;
    }

    .contact-section p {
        font-size: 14px;
    }
}