/* Solar Charge - Main CSS */
/* Custom CSS for solar-powered phone charging kiosks website */

:root {
    /* Primary Color Palette - Solar Energy Theme */
    --primary-color: #ff9800;
    --primary-light: #ffb74d;
    --primary-dark: #f57c00;
    --secondary-color: #4caf50;
    --secondary-light: #81c784;
    --secondary-dark: #388e3c;
    --accent-color: #2196f3;
    --accent-light: #64b5f6;
    --accent-dark: #1976d2;
    --warning-color: #ffc107;
    --danger-color: #f44336;
    
    /* Neutral Colors */
    --text-dark: #263238;
    --text-muted: #607d8b;
    --text-light: #90a4ae;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 600;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Header & Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    font-weight: 700;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 152, 0, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Section Spacing */
section {
    position: relative;
}

section.bg-light {
    background-color: var(--bg-light) !important;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Services Section */
.card .badge {
    background-color: var(--primary-color) !important;
}

.card .badge.bg-success {
    background-color: var(--secondary-color) !important;
}

/* Features Section Icons */
.fas {
    color: var(--primary-color);
}

/* Price Plan Cards */
.border-primary {
    border: 2px solid var(--primary-color) !important;
}

/* Team Section */
.rounded-circle {
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.rounded-circle:hover {
    border-color: var(--primary-dark);
}

/* Timeline Styles */
.timeline-item {
    position: relative;
}

.timeline-marker {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Contact Form */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 152, 0, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
}

/* FAQ Cards */
#faq .card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}

#faq .card:hover {
    border-color: var(--primary-color);
}

/* Gallery Section */
#gallery img {
    transition: all 0.3s ease;
    border-radius: 8px;
}

#gallery img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

/* Reviews Section */
.fa-star {
    color: var(--warning-color);
}

/* Footer */
footer {
    background-color: #212529 !important;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Utility Classes */
.text-success {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* Animation Classes for Sal.js */
.sal-animate {
    transition: all 0.5s ease;
}

/* Process Section Number Circles */
.bg-primary.rounded-circle {
    background-color: var(--primary-color) !important;
}

/* Contact Information Icons */
.contact-info .fas {
    width: 20px;
    text-align: center;
}

/* Custom Styling for Statistics or Numbers */
.display-4 {
    font-weight: 700;
}

/* Breadcrumb Styling for Additional Pages */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item img {
    width: 20px;
    height: 20px;
}

/* Additional Page Sections */
.additional-page-section {
    padding: 4rem 0;
}

.additional-page-section:nth-child(even) {
    background-color: var(--bg-light);
}

/* Space Page Styles */
#space {
    min-height: 400px;
    background-color: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    footer,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
