/* static/css/landing-page.css */

body {
    font-family: 'Satoshi', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.landing-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    background-color: #1a2a4c;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 4rem;
    width: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.hero.glass-morphism {
    background: rgba(26, 42, 76, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero.glass-morphism:hover {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.6),
                0 0 20px rgba(255, 255, 255, 0.2),
                0 0 40px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 100%;
    flex-wrap: wrap;
    padding: 0 1rem;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: #4a6491;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #3d5a7d;
}

.btn-secondary {
    background-color: #ced2d4;
    color: #1a2a4c;
    border: 2px solid #1a2a4c;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

.features {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background-color: #ffffffdf;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.feature img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.feature h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonials {
    background-color: #ffffffdf;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 4rem;
    border: 2px solid #1a2a4c;
    position: relative;
}

.testimonials::before,
.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
    background-color: black;
}

.testimonials::before {
    left: 20%;
}

.testimonials::after {
    right: 20%;
}

.testimonials-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonial {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial cite {
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #1a2a4c;
    color: #ffffff;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.cta:hover {
    transform: translateY(-5px);
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0;
    }

    .btn {
        text-align: center;
    }
}

.glass-morphism {
    background: rgba(26, 42, 76, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

