/*
Theme Name: Cyberwarden Theme
Theme URI: https://cyberwarden.ro
Author: Cyberwarden
Author URI: https://cyberwarden.ro
Description: A custom one-page theme generated from a static HTML mockup.
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: cyberwarden
*/

/* Base reset and imported styles from the HTML */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --electric-blue: #007BFF;
            --soft-white: #F5F5F5;
            --aqua-mint: #A2E3C4;
            --holographic-violet: #8A2BE2;
            --charcoal-black: #1C1C1C;
            --gradient-primary: linear-gradient(135deg, var(--electric-blue) 0%, var(--holographic-violet) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--aqua-mint) 0%, var(--electric-blue) 100%);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: var(--soft-white);
            background: var(--charcoal-black);
            overflow-x: hidden;
        }

        /* Announcement Banner */
        .announcement-banner {
            background: linear-gradient(135deg, var(--electric-blue) 0%, var(--holographic-violet) 100%);
            color: white;
            padding: 12px 20px;
            text-align: center;
            position: relative;
            z-index: 1001;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .announcement-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .announcement-text {
            flex: 1;
            min-width: 200px;
        }

        .announcement-cta {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .announcement-cta:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-1px);
        }

        .announcement-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s ease;
            padding: 0;
            margin-left: 10px;
        }

        .announcement-close:hover {
            opacity: 1;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(28, 28, 28, 0.95);
            backdrop-filter: blur(20px);
            padding: 1rem 2rem;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(28, 28, 28, 0.98);
            box-shadow: 0 8px 32px rgba(0, 123, 255, 0.1);
        }

        .navbar.with-banner {
            top: 50px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 40px;
            height: 40px;
        }

        .logo-text {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--soft-white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

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

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

        .cta-button {
            background: var(--gradient-primary);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 0 2rem;
            background: radial-gradient(ellipse at center, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
            padding-top: 50px;
        }

        .hero.with-banner {
            padding-top: 100px;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content .tagline {
            font-size: 1.4rem;
            color: var(--aqua-mint);
            font-weight: 500;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: rgba(245, 245, 245, 0.8);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-secondary {
            background: transparent;
            color: var(--aqua-mint);
            border: 2px solid var(--aqua-mint);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--aqua-mint);
            color: var(--charcoal-black);
            transform: translateY(-2px);
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .floating-shield {
            width: 300px;
            height: 300px;
            animation: float 6s ease-in-out infinite;
            filter: drop-shadow(0 0 40px rgba(0, 123, 255, 0.3));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        /* Neural background animation */
        .neural-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            pointer-events: none;
        }

        .neural-node {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--electric-blue);
            border-radius: 50%;
            animation: pulse 3s infinite;
        }

        .neural-node:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .neural-node:nth-child(2) { top: 60%; left: 15%; animation-delay: 1s; }
        .neural-node:nth-child(3) { top: 30%; left: 85%; animation-delay: 2s; }
        .neural-node:nth-child(4) { top: 80%; left: 80%; animation-delay: 0.5s; }
        .neural-node:nth-child(5) { top: 40%; left: 50%; animation-delay: 1.5s; }

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

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--charcoal-black) 0%, rgba(28, 28, 28, 0.8) 100%);
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--aqua-mint);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: rgba(245, 245, 245, 0.03);
            border: 1px solid rgba(0, 123, 255, 0.2);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 123, 255, 0.4);
            box-shadow: 0 20px 40px rgba(0, 123, 255, 0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 123, 255, 0.1);
            border: 2px solid var(--electric-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: var(--electric-blue);
        }

        .service-card h3 {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--electric-blue);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: rgba(245, 245, 245, 0.8);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

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

        .service-features li {
            color: var(--aqua-mint);
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .service-features li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--electric-blue);
            font-weight: bold;
        }

        /* About Section */
        .about {
            padding: 6rem 2rem;
            background: rgba(0, 123, 255, 0.02);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-content p {
            color: rgba(245, 245, 245, 0.8);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(245, 245, 245, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(0, 123, 255, 0.1);
        }

        .stat-number {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: 2.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
        }

        .stat-label {
            color: var(--aqua-mint);
            font-weight: 500;
            margin-top: 0.5rem;
        }

        /* Portfolio Section */
        .portfolio {
            padding: 6rem 2rem;
            background: var(--charcoal-black);
        }

        .portfolio-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .portfolio-card {
            background: rgba(245, 245, 245, 0.03);
            border: 1px solid rgba(0, 123, 255, 0.2);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
        }

        .portfolio-image {
            height: 150px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            font-weight: bold;
        }

        .portfolio-content {
            padding: 2rem;
        }

        .portfolio-content h3 {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--electric-blue);
            margin-bottom: 1rem;
        }

        .portfolio-content p {
            color: rgba(245, 245, 245, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .portfolio-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .tag {
            background: rgba(0, 123, 255, 0.2);
            color: var(--aqua-mint);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Newsletter Section */
        .newsletter {
            padding: 6rem 2rem;
            background: rgba(138, 43, 226, 0.05);
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter h2 {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .newsletter p {
            color: rgba(245, 245, 245, 0.8);
            font-size: 1.2rem;
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .newsletter-signup {
            background: rgba(245, 245, 245, 0.03);
            border: 1px solid rgba(0, 123, 255, 0.2);
            border-radius: 16px;
            padding: 3rem;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 400px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 200px;
            background: rgba(245, 245, 245, 0.05);
            border: 1px solid rgba(0, 123, 255, 0.3);
            border-radius: 8px;
            padding: 1rem;
            color: var(--soft-white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--electric-blue);
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }

        .newsletter-form input::placeholder {
            color: rgba(245, 245, 245, 0.5);
        }

        .privacy-note {
            font-size: 0.8rem;
            color: rgba(245, 245, 245, 0.6);
            text-align: center;
            margin-top: 1rem;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            background: var(--charcoal-black);
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .contact h2 {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact p {
            color: rgba(245, 245, 245, 0.8);
            font-size: 1.2rem;
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .contact-form {
            background: rgba(245, 245, 245, 0.03);
            border: 1px solid rgba(0, 123, 255, 0.2);
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 3rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            color: var(--aqua-mint);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            background: rgba(245, 245, 245, 0.05);
            border: 1px solid rgba(0, 123, 255, 0.3);
            border-radius: 8px;
            padding: 1rem;
            color: var(--soft-white);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--electric-blue);
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group select option {
            background: var(--charcoal-black);
            color: var(--soft-white);
        }

        .contact-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            padding: 3rem 2rem 2rem;
            background: rgba(0, 0, 0, 0.5);
            border-top: 1px solid rgba(0, 123, 255, 0.2);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1rem;
        }

        .footer-brand .logo {
            width: 40px;
            height: 40px;
        }

        .footer-brand .logo-text {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-size: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer p {
            color: rgba(245, 245, 245, 0.7);
            line-height: 1.6;
        }

        .footer-links h4 {
            color: var(--electric-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: rgba(245, 245, 245, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--aqua-mint);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 123, 255, 0.1);
            color: rgba(245, 245, 245, 0.6);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--soft-white);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(28, 28, 28, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
            }

            .nav-links.active {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .hero-actions,
            .contact-actions {
                flex-direction: column;
                align-items: center;
            }

            .floating-shield {
                width: 250px;
                height: 250px;
            }

            .newsletter-form {
                flex-direction: column;
                align-items: center;
            }

            .newsletter-form input {
                min-width: auto;
                width: 100%;
            }
        }

