@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap');

:root {
    --primary: #16a34a;
    --primary-dark: #15803d;
    --primary-light: #22c55e;
    --secondary: #1e293b;
    --accent: #f59e0b;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-blur: blur(12px);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    overflow-x: hidden;
}

h1,
h2,
h3,
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.animate-fade-up {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-bg {
    animation: heroZoom 20s ease-in-out infinite alternate;
}

/* Glassmorphism */
.glass-panel {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Overlay */
.hero-gradient {
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.3) 0%,
            rgba(15, 23, 42, 0.6) 50%,
            rgba(15, 23, 42, 0.95) 100%);
}

/* Buttons */
.btn-premium {
    position: relative;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: var(--transition);
    overflow: hidden;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn-premium:hover::before {
    width: 100%;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.4);
    color: white;
}

.btn-primary-gradient:hover {
    box-shadow: 0 15px 30px -5px rgba(22, 163, 74, 0.6);
    transform: translateY(-2px);
}

/* Section Transitions */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Logo enhancement */
.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

/* Typography fix for very large titles */
@media (max-width: 768px) {
    h1 {
        word-break: break-word;
    }
}