/* Fractul Font Family */
@font-face {
    font-family: 'Fractul';
    src: url('./fonts/Fractul-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Fractul';
    src: url('./fonts/Fractul-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Fractul';
    src: url('./fonts/Fractul-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Fractul';
    src: url('./fonts/Fractul-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Fractul';
    src: url('./fonts/Fractul-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Flocked Brand Colors */
    --flocked-neon-green: #D6FE9B;
    --flocked-dark-teal: #003C3C;
    --flocked-sky-blue: #99CDE6;
    --flocked-cloud-dancer: #F3F0EB;
    --flocked-darkest-hour: #201E1F;
    
    /* Dark Mode Colors (Default) */
    --background: #201E1F;
    --foreground: #F3F0EB;
    --card: #0E2E2F;
    --card-foreground: #F3F0EB;
    --primary: #D6FE9B;
    --primary-foreground: #003C3C;
    --secondary: #99CDE6;
    --secondary-foreground: #201E1F;
    --muted: #2A2829;
    --muted-foreground: #A8A8A8;
    --border: rgba(243, 240, 235, 0.1);
    --ring: #99CDE6;
    
    /* Spacing */
    --max-width: 1400px;
    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 12px;
}

body {
    font-family: 'Fractul', 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    background: var(--background);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(32, 30, 31, 0.95);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--flocked-neon-green);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.nav-links a:hover {
    color: var(--flocked-sky-blue);
}

/* Hero Section */
.hero {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--flocked-dark-teal) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./brand-assets/FlockedWallpaper.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--flocked-neon-green);
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    color: var(--foreground);
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
    font-size: 1rem;
    letter-spacing: -0.01em;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--flocked-neon-green);
    color: var(--flocked-dark-teal);
}

.btn-primary:hover {
    filter: brightness(0.92);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--flocked-sky-blue);
    border-color: var(--flocked-sky-blue);
}

.btn-secondary:hover {
    background: var(--flocked-sky-blue);
    color: var(--background);
}

.hero-note {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--foreground);
    font-weight: 400;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--background);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--flocked-neon-green);
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.2s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--flocked-sky-blue);
    box-shadow: 0 10px 30px rgba(153, 205, 230, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--flocked-neon-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--foreground);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--background) 0%, var(--card) 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    color: var(--foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--flocked-neon-green);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--muted-foreground);
    font-weight: 500;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    color: var(--flocked-neon-green);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--foreground);
    opacity: 0.9;
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--background);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

.footer-tagline {
    color: var(--muted-foreground);
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-section h4 {
    color: var(--flocked-neon-green);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--flocked-sky-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* Elevation System */
.elevation-1 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.elevation-2 {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
}

.elevation-3 {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.10);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .container {
        padding: 0 20px;
    }
}