/* Landing Page Styles */

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

/* Navbar */
.landing-navbar {
    background: var(--bs-body-bg);
    border-bottom: 1px solid var(--bs-border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(var(--bs-body-bg-rgb), 0.95);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--bs-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand i {
    font-size: 2rem;
}

.navbar-brand span {
    color: var(--bs-body-color);
}

/* Hero Section */
.landing-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bs-primary-bg-subtle) 0%, var(--bs-secondary-bg-subtle) 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--bs-heading-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--bs-secondary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15rem;
    color: var(--bs-primary);
    opacity: 0.1;
}

/* Features Section */
.landing-features {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--bs-secondary-color);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--bs-primary);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--bs-secondary-color);
    margin-bottom: 0;
}

/* CTA Section */
.landing-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark, var(--bs-primary)) 100%);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.landing-footer {
    margin-top: auto;
    padding: 2rem 0;
    background: var(--bs-body-bg);
    border-top: 1px solid var(--bs-border-color);
}

.footer-text {
    margin: 0;
    color: var(--bs-secondary-color);
}

.footer-text i {
    color: var(--bs-primary);
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-image {
        font-size: 8rem;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .landing-hero {
        padding: 4rem 0;
    }
    
    .landing-features,
    .landing-cta {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}
