/*
Theme Name: Sztorm Cybersecurity
Theme URI: https://sztorm.eu
Description: Modern cybersecurity theme for Sztorm.eu - child theme of Divi
Author: Sztorm Team
Author URI: https://sztorm.eu
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sztorm-cybersecurity
Template: Divi
*/

:root {
    --primary-navy: #0a1628;
    --secondary-navy: #1a2845;
    --accent-blue: #00a8ff;
    --accent-cyan: #00d4ff;
    --text-white: #ffffff;
    --text-light: #b8c5d6;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--primary-navy);
    color: var(--text-white);
    line-height: 1.6;
}

.sztorm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a2845 50%, #00a8ff 100%);
    overflow: hidden;
}

.sztorm-hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
}

.sztorm-hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.sztorm-hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.sztorm-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.sztorm-btn-primary {
    background: linear-gradient(135deg, #00a8ff 0%, #00d4ff 100%);
    color: var(--primary-navy);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
}

.sztorm-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.4);
}

.sztorm-section {
    padding: 6rem 2rem;
}

.sztorm-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sztorm-service-card {
    background: rgba(26, 40, 69, 0.5);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.sztorm-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 168, 255, 0.2);
}

@media (max-width: 768px) {
    .sztorm-services-grid {
        grid-template-columns: 1fr;
    }
}
