/* Landing Page - Specific Styles */

/* Header */
.header {
    background-color: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(247, 136, 136, 0.25);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.signin-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.signin-btn:hover {
    color: white;
}


/* Secondary-colored rounded button */
.hero-buttons a[href="learn-more.html"].btn-primary-rounded:hover {
    background: var(--gradient-secondary) !important;
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: var(--card-bg);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 800px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--dark-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: white;
}

.feature-icon-small.accent {
    background: var(--gradient-accent);
}

.feature-content {
    flex: 1;
}

.feature-title-small {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}

.feature-description-small {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.features-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.feature-card {
    background: var(--dark-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: var(--card-bg);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}




/* Ensure equal button sizes */
.modal .btn {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* Ensure modal footer buttons stay side-by-side on mobile */
#VerifyEmailModal .modal-footer {
    flex-wrap: nowrap !important;
}

#VerifyEmailModal .modal-footer .btn {
    white-space: nowrap !important;
}


/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}


/* Scroll to Top Button - Page Specific Overrides */
#scroll.scroll-top {
    width: 60px !important;
    height: 60px !important;
    font-size: 24px !important;
    box-shadow: 0 0 25px rgba(247, 136, 136, 0.6), 0 0 45px rgba(247, 136, 136, 0.4), 0 6px 25px rgba(0, 0, 0, 0.5) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .header-content {
        padding: 0 15px;
    }


    #scroll.scroll-top {
        bottom: 20px !important;
        right: 20px !important;
    }
}


/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Color Theme Modal Styles */
.color-card {
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.color-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.6), 0 0 35px rgba(247, 136, 136, 0.6) !important;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Rich and colorful glow effects for modal - Landing page specific overrides */

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

