/* Landing page hero section styles */
.hero-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-section .container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-section::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-bottom: 2rem;
}

.hero-bottom-wrapper {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-navbar {
    position: relative;
    padding: 1.5rem 0;
    z-index: 10;
}

.hero-navbar .navbar-brand {
    display: inline-block;
    color: white !important;
    text-decoration: none !important;
}

.hero-navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.hero-navbar .nav-link:hover {
    color: #1e40af !important;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.hero-title-section {
    text-align: center;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-screenshot-section {
    width: 100%;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: -50px;
    overflow: visible;
}

.hero-screenshot-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
    box-shadow:
        0 -15px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: #f3f4f6;
    padding: 1rem;
    border: none;
}

.hero-screenshot-image {
    width: 100%;
    border-radius: 0.5rem;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1.1rem;
    border: 2px dashed #d1d5db;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-hero-primary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.btn-hero-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .btn-hero {
        width: 100%;
        text-align: center;
    }


    .hero-screenshot-container {
        padding: 1rem;
    }
}

