/* 
 * Influencer Radar - Main Stylesheet
 * For Coming Soon Landing Page
 */

:root {
    --primary-color: #4F46E5;
    --primary-light: #6366F1;
    --primary-dark: #4338CA;
    --secondary-color: #10B981;
    --secondary-light: #34D399;
    --secondary-dark: #059669;
    --dark-color: #1F2937;
    --light-color: #F9FAFB;
    --gray-color: #6B7280;
    --light-gray: #E5E7EB;
    --danger-color: #EF4444;
    --warning-color: #F59E0B;
    --success-color: #10B981;
    --font-primary: 'Inter', sans-serif;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(16, 185, 129, 0.3);
}

img {
    max-width: 100%;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Header Styles */
.navbar {
    padding: 20px 0;
    background-color: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 15px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link.btn-nav {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    margin-left: 15px;
    transition: background-color 0.3s ease;
}

.navbar-nav .nav-link.btn-nav:hover {
    background-color: var(--primary-dark);
    color: white !important;
}

/* Ensure the Join Beta button remains visible when scrolled */
.navbar.scrolled .navbar-nav .nav-link.btn-nav {
    background-color: var(--primary-color);
    color: white !important;
}

.navbar.scrolled .navbar-nav .nav-link.btn-nav:hover {
    background-color: var(--primary-dark);
    color: white !important;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.hero-content p.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
    font-weight: 400;
}

.hero-content p.launch-info {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.beta-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.cta-wrapper {
    margin-top: 2rem;
}

.cta-wrapper .input-group {
    max-width: 500px;
}

.cta-wrapper .form-control {
    padding: 12px 20px;
    border-radius: 8px 0 0 8px;
    border: 2px solid var(--light-gray);
    font-size: 1rem;
}

.cta-wrapper .btn {
    border-radius: 0 8px 8px 0;
    padding: 12px 24px;
}

.cta-wrapper small {
    display: block;
    margin-top: 0.5rem;
    color: var(--gray-color);
    font-size: 0.875rem;
}

.hero-image {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: white;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--light-gray);
}

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

.feature-icon {
    margin-bottom: 25px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Beta Section */
.beta-section {
    padding: 100px 0;
    background-color: #f3f4f6;
}

.beta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.beta-content p {
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    max-width: 600px;
}

.beta-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.beta-benefits li {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.beta-benefits i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.25rem;
}

/* Target Audience Section */
.audience-section {
    padding: 100px 0;
    background-color: white;
}

.audience-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.audience-icon {
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.audience-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.audience-card p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background-color: #f3f4f6;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--light-gray);
    top: 50px;
    left: 0;
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 30%;
    z-index: 2;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--light-gray);
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    border: 4px solid white;
}

.timeline-item.active::before {
    background-color: var(--primary-color);
}

.timeline-content {
    background-color: white;
    border-radius: 12px;
    padding: 30px 20px;
    margin-top: 70px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.timeline-content p {
    color: var(--gray-color);
    margin-bottom: 5px;
    font-size: 0.875rem;
}

.timeline-content p:first-of-type {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Competitive Edge Section */
.edge-section {
    padding: 100px 0;
    background-color: white;
}

.edge-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.edge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-light);
}

.edge-icon {
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.edge-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.edge-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.edge-card p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #f3f4f6;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-section p {
    font-size: 1.125rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-method {
    text-align: center;
    padding: 0 20px;
}

.contact-method i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-method h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-method p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-description {
    color: #D1D5DB;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer h4 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #D1D5DB;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.copyright {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
}

.modal-body {
    padding: 30px;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
}

.modal-body .form-label {
    font-weight: 600;
}

.modal-body .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.modal-body .btn {
    padding: 12px 24px;
    margin-top: 10px;
}

/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .audience-card, .edge-card, .timeline-item, .contact-method {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.feature-card.animate, .audience-card.animate, .edge-card.animate, .timeline-item.animate, .contact-method.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1), .audience-card:nth-child(1), .edge-card:nth-child(1), .contact-method:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2), .audience-card:nth-child(2), .edge-card:nth-child(2), .contact-method:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3), .audience-card:nth-child(3), .edge-card:nth-child(3), .contact-method:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4), .audience-card:nth-child(4), .edge-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Active nav link */
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Toast Styles */
.toast-container {
    z-index: 1060;
}

.toast {
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.toast-header {
    padding: 0.75rem 1rem;
}

.toast-body {
    padding: 1rem;
}

/* Add styling for the new pages notification */
.new-pages-notification {
    margin-top: -20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.new-pages-notification .alert {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: none;
    background-color: rgba(79, 70, 229, 0.1);
    border-left: 4px solid var(--primary-color);
}

.new-pages-notification .alert-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.new-pages-notification .alert-link:hover {
    text-decoration: underline;
}
