@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --bg: #000000;
    --primary: #3B82F6;
    --neon: #EC4899;
    --white: #FFFFFF;
    --grey: #1F2937;
    --border: 3px solid #000000;
    --shadow: 8px 8px 0px #000000;
    --transition: all 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    background-color: var(--white);
    color: #000000;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar */
nav {
    padding: 20px 0;
    border-bottom: 4px solid #000;
    background: #FFD21E; /* Bauhaus yellow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--neon);
}

/* Hero */
.hero {
    display: flex;
    border-bottom: 4px solid #000;
}

.hero-content {
    flex: 1;
    padding: 100px;
    background: var(--primary);
    color: white;
    border-right: 4px solid #000;
}

.hero-visual {
    flex: 1;
    background: #000;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-content h1 {
    font-size: 100px;
    line-height: 0.8;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-content p {
    font-size: 24px;
    font-weight: 500;
    max-width: 400px;
    margin-bottom: 50px;
}

.btn {
    display: inline-block;
    padding: 24px 48px;
    background: var(--neon);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    border: 4px solid #000;
    box-shadow: 10px 10px 0 #000;
    transition: var(--transition);
}

.btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0 #000;
}

/* Grid Sections */
.section {
    padding: 120px 0;
    border-bottom: 4px solid #000;
}

.section-title {
    font-size: 80px;
    margin-bottom: 80px;
    text-transform: uppercase;
    background: linear-gradient(to right, #000, var(--neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.neo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.neo-card {
    padding: 60px;
    border: 4px solid #000;
    box-shadow: 15px 15px 0 #000;
    transition: var(--transition);
}

.neo-card:nth-child(1) { background: #FF6B6B; }
.neo-card:nth-child(2) { background: #4ECDC4; }
.neo-card:nth-child(3) { background: #FFE66D; }

.neo-card:hover {
    transform: scale(1.02);
}

.neo-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Contact */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #FFD21E;
}

.contact-info {
    padding: 100px;
    border-right: 4px solid #000;
}

.contact-form {
    padding: 100px;
    background: white;
}

.form-field {
    margin-bottom: 30px;
}

.form-field input, .form-field textarea {
    width: 100%;
    padding: 24px;
    border: 4px solid #000;
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
}

/* Footer */
footer {
    padding: 60px;
    background: #000;
    color: white;
    text-align: center;
}

@media (max-width: 1024px) {
    .hero { flex-direction: column; }
    .hero-content { padding: 60px; }
    .hero-content h1 { font-size: 60px; }
    .neo-grid { grid-template-columns: 1fr; }
    .contact-section { grid-template-columns: 1fr; }
}
