@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Inter:wght@400;700&display=swap&subset=latin-ext');

:root {
    --primary-color: #EAE0D5;
    --secondary-color: #C6AC8F;
    --background-color: #0A0A0A;
    --dark-gray: #1A1A1A;
    --text-color: #F5F5F5;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
    font-weight: 400;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    max-width: 70ch;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Header */
.main-header {
    padding: 2rem 0;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    max-width: 150px; /* Adjust as needed */
    height: auto;
    display: block; /* Remove extra space below image */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=2084&auto=format&fit=crop') no-repeat center center/cover;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 2rem;
}

.hero .tagline {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
}

/* Sections */
.section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--dark-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

/* Manifesto */
#manifesto {
    text-align: center;
}

#manifesto p {
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
}

/* Focus Areas */
.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.focus-item {
    background: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 8px;
}

.focus-item h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

/* Form Section */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-gray);
    padding: 3rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: #2c2c2c;
    border: 1px solid #444;
    border-radius: 4px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--background-color);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: var(--primary-color);
}

.kvkk-check {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.kvkk-check input {
    margin-top: 4px;
}

/* Footer */
.main-footer {
    padding: 4rem 0;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

/* Legal & Thanks Pages */
.static-page {
    padding: 8rem 0 4rem;
}

.static-page .container {
    max-width: 800px;
}

.static-page h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.static-page h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 2rem;
}

.static-page ul {
    list-style-position: inside;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.back-link {
    display: inline-block;
    margin-top: 3rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero .subtitle {
        font-size: 1.2rem;
    }
    .section {
        padding: 4rem 0;
    }
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-container {
        padding: 2rem;
    }
}