/* ========================================
   HUHNE STR - PREMIUM SOFTWARE DEVELOPMENT THEME
   Aura Prism Aesthetic: Deep, Vibrant, Modern
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette - Aura Prism */
    --color-bg-main: #030509;
    --color-bg-secondary: #0a0e17;
    --color-primary: #ff2d75;
    /* Neon Rose */
    --color-secondary: #7000ff;
    /* Ultra Violet */
    --color-accent: #00f0ff;
    /* Electric Ice */
    --color-text-main: #ffffff;
    --color-text-muted: #94a3b8;

    --gradient-main: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-aura: linear-gradient(45deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* UI Elements */
    --border-radius-lg: 24px;
    --border-radius-sm: 12px;
    --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(112, 0, 255, 0.3);
}

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

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Aura Blobs */
.bg-aura {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.aura-1 {
    background: var(--color-primary);
    top: -300px;
    left: -200px;
    animation: pulse 15s infinite alternate;
}

.aura-2 {
    background: var(--color-secondary);
    bottom: -300px;
    right: -200px;
    animation: pulse 12s infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(50px, 100px);
    }
}

/* Navigation */
.navbar {
    padding: 1.25rem 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(3, 5, 9, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(3, 5, 9, 0.9);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -1px;
    background: var(--gradient-aura);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-muted) !important;
    transition: all 0.3s ease;
    margin: 0 10px;
    font-size: 1rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-main) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-nav {
    background: var(--gradient-main);
    border: none;
    color: white !important;
    padding: 0.75rem 1.75rem !important;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    box-shadow: var(--shadow-glow);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(112, 0, 255, 0.5);
}

/* Hero Section */
.hero-section {
    padding: 200px 0 120px;
    position: relative;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 45, 117, 0.1);
    border: 1px solid rgba(255, 45, 117, 0.2);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.text-gradient {
    background: var(--gradient-aura);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-premium {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-aura {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 10px 30px rgba(112, 0, 255, 0.3);
}

.btn-primary-aura:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(112, 0, 255, 0.5);
    color: white;
}

.btn-outline-aura {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline-aura:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(0, 240, 255, 0.05);
}

/* Glass Cards */
.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.glass-card:hover .icon-box {
    background: var(--gradient-main);
    color: white;
    transform: rotate(10deg);
}

/* Sections */
.section-padding {
    padding: 120px 0;
}

.section-label {
    text-align: center;
    margin-bottom: 80px;
}

.section-h {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Stats */
.stat-box {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Contact Page Enhancements */
.contact-hero {
    padding: 180px 0 80px;
    text-align: center;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    padding: 60px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--color-text-main);
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 20px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--color-secondary);
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.2);
    color: white;
}

.btn-submit {
    width: 100%;
    background: var(--gradient-main);
    border: none;
    padding: 18px;
    color: white;
    font-weight: 700;
    border-radius: 14px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(112, 0, 255, 0.4);
}

/* Footer */
footer {
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 25px;
    display: inline-block;
    background: var(--gradient-aura);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-primary);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-section {
        padding-top: 150px;
    }

    .section-h {
        font-size: 2.8rem;
    }

    .contact-card {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-btn-group {
        flex-direction: column;
    }

    .btn-premium {
        width: 100%;
        text-align: center;
    }
}