:root {
    --accent-color: #3C8C51;
    --hover-color: #2A6B3C;
    --background-color: #F6F8F5;
    --text-color: #262A26;
    --subtle-color: #DEEDDE;
}

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

::selection {
    background-color: var(--accent-color);
    color: white;
}

::-moz-selection {
    background-color: var(--accent-color);
    color: white;
}

body {
    font-family: 'Bitter', Georgia, serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 3rem 2rem;
    line-height: 1.5;
    position: relative;
    overflow-x: hidden;
}

.language-toggle {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    z-index: 100;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.3rem 0.5rem;
    cursor: pointer;
    color: #7A7572;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--accent-color);
}

.lang-btn.active {
    color: var(--accent-color);
    font-weight: 600;
}

.separator {
    color: #ccc;
    margin: 0 0.2rem;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--accent-color);
    z-index: 10;
}

body::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05);
    z-index: 5;
}

.container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.content {
    padding: 1.5rem;
    max-width: 580px;
    position: relative;
}

h1 {
    font-weight: 600;
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.22;
    letter-spacing: -0.01em;
    color: #262220;
    text-transform: uppercase;
}

h1 span {
    position: relative;
    font-weight: 700;
}

h1 span::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
}

p {
    font-family: 'Bitter', Georgia, serif;
    font-size: 1.35rem;
    margin-bottom: 4rem;
    line-height: 1.5;
    color: #4A4541;
    font-weight: 400;
    font-style: normal;
}

.tagline {
    margin-bottom: 3.5rem;
    font-weight: 400;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 2px solid var(--accent-color);
    background-color: transparent;
    text-decoration: none;
    color: var(--accent-color);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

footer {
    padding: 3rem 0 1.5rem;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    position: absolute;
    bottom: 0;
    color: #7A7572;
    font-family: 'Inter', sans-serif;
    max-width: 700px;
    margin: 0 auto;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
    position: relative;
    transition: all 0.2s ease;
    text-transform: lowercase;
    letter-spacing: 0.03em;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

.location {
    margin-left: 0.5rem;
    color: #7A7572;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    body {
        padding: 2.5rem 1.5rem;
    }
    
    .language-toggle {
        top: 1rem;
        right: 1rem;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    p {
        font-size: 1.15rem;
        margin-bottom: 3.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
    }
    
    footer {
        position: relative;
        padding-top: 2rem;
        max-width: 580px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    body {
        padding: 2.5rem 1.2rem 2rem;
    }
    
    .language-toggle {
        top: 0.8rem;
        right: 0.8rem;
    }
    
    h1 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }
    
    p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

@media (min-height: 700px) {
    body {
        justify-content: center;
    }
} 