/* ========================================
   SkyDrone Shows - Main CSS
   Drone Light Show Theme
   ======================================== */

/* Color Variables */
:root {
    /* Primary Colors */
    --primary-blue: #00d4ff;
    --primary-purple: #6c5ce7;
    --primary-cyan: #00cec9;
    --primary-violet: #a29bfe;
    --primary-teal: #00b894;
    
    /* Light Shades */
    --light-blue: #74e5ff;
    --light-purple: #a29bfe;
    --light-cyan: #55eae7;
    --light-violet: #d1c4e9;
    --light-teal: #00e5b7;
    
    /* Dark Shades */
    --dark-blue: #0099cc;
    --dark-purple: #5a4fcf;
    --dark-cyan: #00a3a0;
    --dark-violet: #7c4dff;
    --dark-teal: #00896b;
    
    /* Neutral Colors */
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --text-light: #ffffff;
    --text-dark: #2d3436;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-teal) 100%);
    --gradient-tertiary: linear-gradient(135deg, var(--primary-violet) 0%, var(--primary-blue) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Shadows */
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
    
    /* Borders */
    --border-radius: 0.375rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-gray);
    overflow-x: hidden;
}

/* Conservative typography sizes */
.navbar-brand {
    font-size: 1.25rem !important;
    font-weight: 700;
}

h1, .display-4 {
    font-size: 2.5rem !important;
    font-weight: 700;
}

h2, .display-5 {
    font-size: 2rem !important;
    font-weight: 600;
}

h3, h4, h5, h6 {
    font-weight: 600;
}

p {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
}

.lead {
    font-size: var(--font-size-large);
}

/* Header Styles */
.navbar {
    background: var(--gradient-dark) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--primary-blue) !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(108, 92, 231, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 206, 201, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Button Styles */
.btn {
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    background: var(--gradient-tertiary);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Card Styles */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: var(--shadow-soft);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-img-top {
    transition: all 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Section Styles */
section {
    padding: var(--spacing-xxl) 0;
}

.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

/* Feature Icons */
.fa-3x {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-lg);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
}

.fa-2x {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 5px rgba(0, 212, 255, 0.3));
}

/* Pricing Cards */
.border-primary {
    border: 2px solid var(--primary-blue) !important;
    position: relative;
}

.border-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.3;
}

/* Team Section */
.rounded-circle {
    border: 3px solid var(--primary-blue);
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.rounded-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
}

/* Reviews Section */
.text-warning {
    color: var(--primary-cyan) !important;
    filter: drop-shadow(0 0 3px rgba(0, 206, 201, 0.3));
}

/* Accordion Styles */
.accordion-item {
    border: none;
    margin-bottom: var(--spacing-sm);
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.accordion-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-tertiary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    background: white;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

/* Gallery Styles */
.gallery img {
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Footer Styles */
footer {
    background: var(--gradient-dark) !important;
    color: var(--text-light);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(108, 92, 231, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

footer h5 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-blue) !important;
    text-decoration: none !important;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

/* Form Styles */
.form-control {
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    padding: var(--spacing-sm) var(--spacing-md);
    background: white;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: var(--spacing-xl) 0;
    }
    
    .display-4 {
        font-size: 2rem !important;
    }
    
    .display-5 {
        font-size: 1.5rem !important;
    }
    
    .navbar-brand {
        font-size: 1.125rem !important;
    }
    
    .btn-lg {
        padding: var(--spacing-sm) var(--spacing-lg);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-blue) !important;
}

.bg-primary {
    background: var(--gradient-primary) !important;
}

.shadow-glow {
    box-shadow: var(--shadow-glow) !important;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Timeline Styles */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 0 4px white, 0 0 0 6px var(--primary-blue);
}

/* Process Section Styles */
.process .bg-primary {
    background: var(--gradient-primary) !important;
    transition: all 0.3s ease;
}

.process .bg-primary:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* Career Section Styles */
.career .card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.career .card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Core Info Section Styles */
.coreinfo .fa-3x {
    transition: all 0.3s ease;
}

.coreinfo .fa-3x:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

/* Blog Section Styles */
.blog .card-img-top {
    transition: all 0.3s ease;
}

.blog .card:hover .card-img-top {
    transform: scale(1.1);
}

.blog .btn-outline-primary {
    transition: all 0.3s ease;
}

.blog .btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Enhanced Card Hover Effects */
.card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
}

/* Custom Spacing */
.py-5 {
    padding-top: var(--spacing-xxl) !important;
    padding-bottom: var(--spacing-xxl) !important;
}

.mb-5 {
    margin-bottom: var(--spacing-xxl) !important;
}

.mt-5 {
    margin-top: var(--spacing-xxl) !important;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item::before {
        left: 30px;
    }
    
    .timeline-item .row {
        margin-left: 60px;
    }
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
