/* 
File: /streamteam123.com/style.css
Description: StreamTeam123 Glassmorphism Styling - Miami Downtown/South Beach Aesthetic
Version: 2025.01.21.14.30
*/

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Miami Color Palette */
    --miami-ocean: #0077be;
    --miami-sky: #00b4d8;
    --miami-sunset: #ff6b35;
    --miami-neon-pink: #ff006e;
    --miami-gold: #ffc857;
    --miami-palm: #06ffa5;
    --miami-night: #0a0e27;
    --miami-concrete: #8b9cb6;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(12px);
    
    /* Typography */
    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --font-accent: 'Georgia', 'Times New Roman', serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2a1f3a 50%, #1a1f3a 75%, #0a0e27 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 119, 190, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(6, 255, 165, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: bgPulse 20s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== GLASSMORPHISM PANELS ===== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 180, 216, 0.3);
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 119, 190, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Navigation */
.nav-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    margin-bottom: 80px;
    position: sticky;
    top: 20px;
    z-index: 1000;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-main {
    color: #ffffff;
}

.logo-accent {
    color: var(--miami-sky);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--miami-sky);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-link {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--miami-ocean), var(--miami-sky));
    border-radius: 25px;
    color: #ffffff !important;
}

.cta-link::after {
    display: none;
}

.cta-link:hover {
    background: linear-gradient(135deg, var(--miami-sky), var(--miami-ocean));
    transform: scale(1.05);
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--miami-sky), var(--miami-palm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-family: var(--font-accent);
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--miami-sunset), var(--miami-neon-pink));
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-primary.large {
    padding: 22px 60px;
    font-size: 18px;
}

/* Stats Container */
.stats-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    padding: 30px 40px;
    text-align: center;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--miami-sky);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-accent);
    font-style: italic;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 56px;
    margin-bottom: 25px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card:nth-child(1) .service-icon { animation-delay: 0s; }
.service-card:nth-child(2) .service-icon { animation-delay: 0.5s; }
.service-card:nth-child(3) .service-icon { animation-delay: 1s; }
.service-card:nth-child(4) .service-icon { animation-delay: 1.5s; }

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--miami-sky);
}

.service-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--miami-palm);
    font-weight: bold;
}

/* ===== GEAR SECTION ===== */
.gear-section {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 119, 190, 0.05) 100%);
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gear-card {
    padding: 0;
    overflow: hidden;
}

.gear-image-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.2), rgba(255, 107, 53, 0.2));
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.gear-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.placeholder-text {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
    line-height: 1.4;
}

.camera-gear { background: linear-gradient(135deg, #0077be 0%, #00b4d8 100%); }
.lighting-gear { background: linear-gradient(135deg, #ff6b35 0%, #ffc857 100%); }
.audio-gear { background: linear-gradient(135deg, #06ffa5 0%, #00b4d8 100%); }
.switcher-gear { background: linear-gradient(135deg, #ff006e 0%, #ff6b35 100%); }
.ai-gear { background: linear-gradient(135deg, #8b9cb6 0%, #06ffa5 100%); }
.monitor-gear { background: linear-gradient(135deg, #0a0e27 0%, #0077be 100%); }

.gear-info {
    padding: 30px;
}

.gear-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--miami-sky);
}

.gear-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.05) 0%, transparent 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: start;
}

.package-card {
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.package-card.featured {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--miami-sky);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--miami-sunset), var(--miami-neon-pink));
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-tier {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--miami-palm);
    margin-bottom: 15px;
}

.package-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.package-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--miami-sky);
    margin-bottom: 20px;
}

.price-period {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.package-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
    font-style: italic;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 30px;
    font-size: 15px;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--miami-palm);
    font-weight: bold;
    font-size: 18px;
}

.btn-package {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--glass-border);
    border-radius: 50px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-package:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--miami-sky);
    transform: translateY(-2px);
}

.btn-package.primary {
    background: linear-gradient(135deg, var(--miami-sunset), var(--miami-neon-pink));
    border: none;
}

.btn-package.primary:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

/* ===== EMERGENCY SECTION ===== */
.emergency-section {
    background: linear-gradient(180deg, rgba(255, 0, 110, 0.1) 0%, transparent 100%);
}

.emergency-panel {
    padding: 60px;
    border: 2px solid rgba(255, 107, 53, 0.5);
}

.emergency-header {
    text-align: center;
    margin-bottom: 50px;
}

.emergency-icon {
    font-size: 72px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.emergency-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.emergency-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.emergency-feature h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--miami-sunset);
    margin-bottom: 10px;
}

.emergency-feature p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.emergency-cta {
    text-align: center;
}

.btn-emergency {
    padding: 22px 50px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--miami-sunset), var(--miami-neon-pink));
    border: none;
    border-radius: 50px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-emergency:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

/* ===== MIAMI SECTION ===== */
.miami-panel {
    padding: 60px;
    text-align: center;
}

.miami-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.miami-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.miami-image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.3), rgba(255, 107, 53, 0.3));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.miami-image-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05) 1px, transparent 2px, transparent 40px),
        repeating-linear-gradient(0deg, transparent, rgba(255, 255, 255, 0.05) 1px, transparent 2px, transparent 40px);
}

.miami-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.miami-feature {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.miami-feature strong {
    color: var(--miami-palm);
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    padding: 40px;
    text-align: center;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--miami-sky);
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-card strong {
    color: #ffffff;
}

.contact-cta {
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 14, 39, 0.8);
    padding: 60px 0 30px;
    margin-top: 100px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--miami-sky);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.footer-note {
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-panel {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid,
    .gear-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .emergency-panel,
    .miami-panel {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .stat-card {
        min-width: 150px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 14px;
    }
}