/* CSS Variables for Color Palette */
:root {
    /* Color Palette */
    --white: #ffffff;
    --black: #000000;
    --red: #ff3600;
    --green: #58BB00;
    --blue: #007dff;
    --yellow: #E1B700;

    /* Dark Mode Colors */
    --background: var(--black);
    --foreground: var(--white);
    --muted: #1a1a1a;
    --muted-foreground: #a1a1aa;
    --border: #27272a;
    --input: #1a1a1a;
    --primary: var(--blue);
    --primary-foreground: var(--white);
    --secondary: var(--muted);
    --secondary-foreground: var(--foreground);
    --accent: var(--muted);
    --accent-foreground: var(--foreground);
    --destructive: var(--red);
    --destructive-foreground: var(--white);
    --ring: var(--blue);
    --radius: 0.5rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Navigation */
.navigation {
    padding: 3rem 2rem 1rem 2rem;
    background-color: var(--background);
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Typography */
.logo-image {
    max-width: 300px;
    height: auto;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.body-text {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--muted-foreground);
    max-width: 500px;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.hero-text {
    text-align: center;
}

/* Button Styles (shadcn-inspired) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
    background-color: transparent;
    color: var(--foreground);
}

.btn-primary {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--white);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.25rem;
}

.social-link:hover {
    opacity: 0.8;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

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

/* Confetti Animation */
.confetti {
    position: fixed;
    width: 8px;
    height: 8px;
    pointer-events: none;
    z-index: 9999;
    animation: confettiFall 1.5s ease-out forwards;
    border-radius: 2px;
}

@keyframes confettiFall {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--endX), var(--endY)) rotate(var(--rotation)) scale(0.8);
        opacity: 0;
    }
}

/* Colored text classes */
.text-blue {
    color: var(--blue);
}

.text-red {
    color: var(--red);
}

.text-green {
    color: var(--green);
}

.text-yellow {
    color: var(--yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        gap: 2.5rem;
    }

    .hero-content {
        max-width: 500px;
    }

    .hero-text {
        text-align: center;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .body-text {
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .footer {
        padding: 1rem;
    }

    .logo-image {
        max-width: 200px;
    }
} 