/* Font definitions for your Fort Foundry fonts */
@font-face {
    font-family: 'Prohibition';
    src: url('../fonts/Prohibition-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Native';
    src: url('../fonts/Native-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
body {
    font-family: 'Native', monospace;
    line-height: 1.6;
    color: #000;
    background: #fff;
    margin: 0;
    padding: 0;
}

/* Layout */
.content {
    max-width: 50rem;
    margin: 0 auto;
    padding: 1.25rem 1.25rem 3.75rem;
}

/* Logo */
.logo-container {
    position: fixed;
    top: 1.25rem;
    left: 1.25rem;
    width: 18vw;
    max-width: 11rem;
    min-width: 5rem;
    z-index: 100;
}

.logo-container svg {
    width: 100%;
    height: auto;
}

/* Language toggle */
.lang-toggle {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 100;
}

.lang-toggle button {
    background: transparent;
    border: 0.125rem solid #000;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    font-family: 'Native', monospace;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.lang-toggle button::after {
    content: '';
    position: absolute;
    top: 0.10rem;
    left: 0.10rem;
    right: 0.10rem;
    bottom: 0.10rem;
    border: 0.125rem solid white;
    border-radius: 0.188rem;
    pointer-events: none;
}

.lang-toggle button.active {
    background: #000;
    color: #fff;
}

.lang-toggle button:not(.active) {
    color: #000;
}

/* Mobile language toggle */
.lang-toggle-mobile {
    display: none;
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 100;
}

.lang-toggle-mobile select {
    background: #000;
    color: #fff;
    border: 0.125rem solid #000;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    font-family: 'Native', monospace;
    cursor: pointer;
    appearance: none;
    position: relative;
}

.lang-toggle-mobile select option {
    background: #000;
    color: #fff;
}

/* Typography */
h1, h2 {
    font-family: 'Prohibition', sans-serif;
    margin: 1.5rem 0 1.25rem;
}

h1 {
    font-size: 2.5rem;
    margin-top: 2rem;
}

h2 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

/* Divider */
.divider {
    border-top: 0.0625rem solid #000;
    margin: 2.5rem 0;
}

/* Form elements */
.contact-form {
    margin-top: 2rem;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-family: 'Native', monospace;
    border: 0.0625rem solid #000;
    font-size: 1.1rem;
    background: transparent;
}

button {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-family: 'Native', monospace;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 1rem;
}

button:hover {
    background: #333;
}

/* Footer */
footer {
    text-align: center;
    padding: 1.875rem 1.25rem;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 48rem) {
    .lang-toggle {
        display: none;
    }
    
    .lang-toggle-mobile {
        display: block;
    }
    
    .logo-container {
        position: relative;
        width: 60vw;
        max-width: none;
        margin: 1rem auto 2rem;
        text-align: center;
        left: 0;
    }
    
    .content {
        padding-top: 2rem;
    }
    
    h1 {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
}