/* Lark Development Theme */

:root {
    --color-primary: #F9F8F6;
    --color-secondary: #EFE9E3;
    --color-tertiary: #D9CFC7;
    --color-accent: #C9B59C;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #F9F8F6;
    color: #333;
    line-height: 1.6;
}

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

/* Landing Page Styles */
.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background: linear-gradient(135deg, #F9F8F6 0%, #EFE9E3 100%);
}

.landing-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #D9CFC7;
}

.landing-content h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.landing-content p {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0;
}

.accent-text {
    color: #C9B59C;
}

/* Global Button & Link Color Overrides */
.btn-primary {
    background-color: #C9B59C;
    border-color: #C9B59C;
    color: #333;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #B8A389;
    border-color: #B8A389;
    color: #000;
}

.btn-secondary {
    background-color: #D9CFC7;
    border-color: #D9CFC7;
    color: #333;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #C9B59C;
    border-color: #C9B59C;
    color: #333;
}

a {
    color: #C9B59C;
    text-decoration: none;
}

a:hover {
    color: #B8A389;
    text-decoration: underline;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Site Footer */
.site-footer {
    padding: 20px;
    text-align: right;
    background-color: #EFE9E3;
    border-top: 1px solid #D9CFC7;
}

.site-footer p {
    margin: 0;
    font-size: 0.75rem;
    color: #666;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 15px;
    }
    
    .site-footer p {
        font-size: 0.7rem;
    }
}

