/* Font Face: Pecita (self-hosted from official source) */
/* Download from http://pecita.eu/b/ - Version 5.4 */
/* Supports OTF format - can also convert to WOFF2 for better web performance */
@font-face {
    font-family: 'Pecita';
    src: url('fonts/Pecita.woff2') format('woff2'),
         url('fonts/Pecita.woff') format('woff'),
         url('fonts/Pecita.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Krub', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: white;
    color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    padding: 2rem;
}

.logo-link {
    text-decoration: none;
    color: black;
    display: inline-block;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.triangle-logo {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Pecita', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Main content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content-container {
    max-width: 800px;
    width: 100%;
}

/* Landing page */
.landing-page {
    text-align: center;
}

.logo-container-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.logo-container-centered .triangle-logo {
    width: 60px;
    height: 60px;
}

.logo-container-centered .logo-text {
    font-family: 'Pecita', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.main-quote {
    font-family: 'Krub', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.arrow-link {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    margin-top: 1rem;
}

.arrow {
    width: 60px;
    height: 20px;
}

/* How it works page */
.how-it-works-page {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 4rem;
}

.how-it-works-page .content-container {
    text-align: left;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
}

.page-heading {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.content-text {
    font-family: 'Krub', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-text strong {
    font-weight: 600;
}

.how-it-works-page .arrow-link {
    margin-top: 1.5rem;
    display: block;
    text-align: left;
}

/* Privacy page */
.privacy-page .content-container {
    text-align: left;
}

/* Footer */
footer {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.footer-link {
    font-family: 'Krub', sans-serif;
    text-decoration: none;
    color: black;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: opacity 0.2s;
}

.footer-link:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .main-quote {
        font-size: 1.2rem;
    }
    
    .page-heading {
        font-size: 2rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

