/* style.css */

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f9fafb;
    color: #333;
}

.navbar {
    background-color: #0f172a;
    display: flex;
    justify-content: center;
    padding: 1rem;
    gap: 2rem;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #3b82f6;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: white;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: #3b82f6;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #2563eb;
}

.home-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.intro-block,
.features-block,
.cta-block {
    background-color: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.intro-block h2,
.features-block h2,
.cta-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.intro-block p,
.cta-block p {
    font-size: 1.2rem;
    color: #475569;
}

.features-block ul {
    list-style: none;
    padding: 0;
}

.features-block ul li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.footer {
    text-align: center;
    padding: 1rem;
    background-color: #0f172a;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Animations */
.hero h1,
.hero p,
.btn,
.home-content>div {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-in-out;
}

.hero h1.loaded,
.hero p.loaded,
.btn.loaded,
.home-content>div.loaded {
    opacity: 1;
    transform: translateY(0);
}