:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --text-secondary: #666666;
    --accent-color: #000000;
    --border-color: #e5e5e5;
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

/* Utilities */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    background: #000;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.btn:hover {
    background: #333;
    color: #fff;
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid #e5e5e5;
    color: #000;
}

.btn-outline:hover {
    background: #f5f5f5;
    border-color: #d5d5d5;
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.0);
    backdrop-filter: none;
    border-bottom: none;
}

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

.logo {
    /* font-family: 'Alan', sans-serif; 
    font-family: 'Alan', sans-serif;*/
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-img {
    height: 1.2em;
    /* Match the font-size of the logo text */
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    /* Ensure content starts below header */
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
    z-index: 1;
    transform: translateY(-200px);
    /* Move up approx 2cm */
    text-align: left;
}

h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.1;
    color: #000;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: -0.5px;
}



/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

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

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.legal-page h2 {
    font-size: 1.2rem;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
        /* Reduce padding on mobile */
    }

    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero-content {
        margin-bottom: 40px;
        padding-top: 40px;
        /* Add some space */
    }

    .footer-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}