@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Courier+Prime&display=swap');

:root {
    --rust: #8B3A3A;
    --navy: #1A2A3A;
    --mustard: #E5B13A;
    --charcoal: #2C2C2C;
    --off-white: #F4F1EA;
    --border-color: #2C2C2C;
}

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

body {
    background-color: var(--off-white);
    color: var(--charcoal);
    font-family: 'Courier Prime', monospace;
    line-height: 1.6;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: var(--charcoal);
    color: var(--off-white);
    padding: 2rem;
    border-bottom: 8px solid var(--rust);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2.5rem;
    border: 4px solid var(--off-white);
    padding: 0.5rem 1rem;
    background-color: var(--navy);
    transform: rotate(-2deg);
    box-shadow: 5px 5px 0 var(--mustard);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-size: 1.2rem;
    font-family: 'Oswald', sans-serif;
    position: relative;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--mustard);
    text-decoration: underline;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background: radial-gradient(circle, rgba(229,177,58,0.2) 0%, rgba(244,241,234,0) 70%);
    border-bottom: 4px solid var(--charcoal);
}

.hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--navy);
    text-shadow: 3px 3px 0 var(--rust);
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: bold;
}

.btn {
    display: inline-block;
    background-color: var(--rust);
    color: var(--off-white);
    padding: 1rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    border: 2px solid var(--charcoal);
    box-shadow: 4px 4px 0 var(--charcoal);
    transition: transform 0.1s, box-shadow 0.1s;
}

.btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--charcoal);
    background-color: var(--navy);
}

.btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--charcoal);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Sections */
.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    border-left: 10px solid var(--mustard);
    padding-left: 1rem;
    color: var(--charcoal);
}

.card {
    background-color: #fff;
    border: 3px solid var(--charcoal);
    padding: 2rem;
    position: relative;
}

.card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    z-index: -1;
    border: 3px solid var(--charcoal);
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--rust);
}

/* About Section */
.about-img {
    width: 100%;
    border: 4px solid var(--charcoal);
    filter: sepia(0.5) contrast(1.2);
}

/* Footer */
footer {
    background-color: var(--charcoal);
    color: var(--off-white);
    padding: 4rem 2rem;
    margin-top: 4rem;
    border-top: 8px solid var(--mustard);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--mustard);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #555;
    font-size: 0.9rem;
}

/* Contact Page Specific */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 3px solid var(--charcoal);
    background-color: #fff;
    font-family: 'Courier Prime', monospace;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--rust);
    background-color: #fffaf0;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 3rem;
    }
    header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}
