/* ==========================================================================
   Synaplan - Combined Stylesheet
   Combines styles from index.php and docs.php
   ========================================================================== */

/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

/* ==========================================================================
   Navigation Styles
   ========================================================================== */
.navbar-custom {
    background-color: #061c3e;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-brand {
    color: white !important;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 32px;
    width: auto;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #10d876 !important;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.btn-nav-cta {
    background: linear-gradient(135deg, #00E5FF 0%, #00FF9D 100%);
    border: none;
    color: black;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background: linear-gradient(135deg, #00c4a7 0%, #00b49a 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: linear-gradient(135deg, #00c4a7 0%, #00b49a 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.3);
}

.btn-outline-primary {
    border-color: #061c3e;
    color: #061c3e;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 6px;
}

.btn-outline-primary:hover {
    background-color: #061c3e;
    border-color: #061c3e;
}

/* ==========================================================================
   Hero Section Styles (from index.php)
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, #0a2147 0%, #061c3e 50%, #0a2147 100%);
    color: white;
    padding: 80px 0 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ==========================================================================
   Documentation Header Styles (from docs.php)
   ========================================================================== */
.docs-header {
    background: linear-gradient(135deg, #0a2147 0%, #061c3e 50%, #0a2147 100%);
    color: white;
    padding: 60px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.docs-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.docs-header-content {
    position: relative;
    z-index: 2;
}

.docs-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.docs-header p {
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* ==========================================================================
   Screenshot and Content Styles
   ========================================================================== */
.screenshot-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-top: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.screenshot-placeholder {
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(-45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f8f9fa 75%), 
                linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    background-color: #e9ecef;
    min-height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1.1rem;
    border: 2px dashed #dee2e6;
}

/* ==========================================================================
   Documentation Content Styles (from docs.php)
   ========================================================================== */
.docs-content {
    padding: 80px 0;
}

.docs-placeholder {
    background: white;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px dashed #dee2e6;
}

.docs-placeholder-icon {
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.docs-placeholder h2 {
    color: #061c3e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.docs-placeholder p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.docs-overview {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-top: 3rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.docs-overview h3 {
    color: #061c3e;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.docs-overview .row {
    margin-top: 2rem;
}

.docs-overview .col-md-6 {
    margin-bottom: 1.5rem;
}

.docs-overview h4 {
    color: #061c3e;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.docs-overview p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: #061c3e;
    color: white;
}

/* ==========================================================================
   Utility and Component Styles
   ========================================================================== */
.placeholder-img {
    background-color: #dee2e6;
    height: 300px;
    width: 100%;
    border-radius: 8px;
}

.stat-box {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #061c3e;
    margin-bottom: 0.5rem;
}

.logos-section {
    padding: 40px 0;
    background-color: white;
    border-bottom: 1px solid #e9ecef;
}

.logo-item {
    text-align: center;
    font-weight: 500;
    color: #6c757d;
    padding: 10px;
}

.features-grid {
    padding: 2rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #061c3e;
}

/* ==========================================================================
   Hero Tick Circles Styles (from index.php)
   ========================================================================== */
.hero-tick-circles .tick-circle-sm {
    width: 28px;
    height: 28px;
    background: #e3f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.25rem;
}

.hero-tick-circles .tick-label-sm {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #061c3e;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
footer {
    background-color: #061c3e;
    color: white;
    padding: 40px 0;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    /* Hero responsive */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .screenshot-placeholder {
        height: 250px;
    }
    
    /* Stats responsive */
    .stat-box h3 {
        font-size: 2rem;
    }
    
    /* Navigation responsive */
    .btn-nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    /* Hero tick circles responsive */
    .hero-tick-circles .tick-circle-sm {
        display: none !important;
    }
    
    .hero-tick-circles .tick-label-sm {
        margin-left: 0.5rem !important;
        font-size: 1.1rem;
        white-space: normal;
    }
    
    .hero-tick-circles .d-flex.align-items-center.gap-2 {
        gap: 0.5rem !important;
    }
    
    .hero-tick-circles .tick-label-sm {
        font-size: 0.95rem;
    }
    
    .hero-tick-circles .tick-circle-sm {
        width: 22px;
        height: 22px;
    }
    
    /* Documentation responsive */
    .docs-header h1 {
        font-size: 2rem;
    }
    
    .docs-header p {
        font-size: 1rem;
    }
    
    .docs-placeholder {
        padding: 40px 20px;
    }
    
    .docs-overview {
        padding: 30px 20px;
    }
} 