/*
Theme Name: LUMINA Creative
Theme URI: https://lumina.creative
Author: Converted from React Design
Description: Premium creative agency WordPress theme. Modern dark design with electric cyan and soft magenta accents. Fully functional single-page layout.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: lumina
*/

:root {
    --electric-cyan: #00f5ff;
    --soft-magenta: #ff2ec4;
    --charcoal: #0a0a0a;
    --zinc-900: #18181b;
    --zinc-800: #27272a;
    --zinc-400: #a3a3a3;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--charcoal);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
}

.nav-scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--white);
}

.logo-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(to top right, #00f5ff, #ff2ec4);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

.logo-text {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -2px;
}

.nav-menu {
    display: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: #a3a3a3;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--electric-cyan);
}

.nav-menu .btn-talk {
    background: var(--white);
    color: var(--charcoal);
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.nav-menu .btn-talk:hover {
    background: var(--electric-cyan);
    transform: scale(1.05);
}

.mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--charcoal);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu a {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -10;
    overflow: hidden;
}

.hero-bg-blur1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70%;
    height: 70%;
    background: rgba(0, 245, 255, 0.2);
    filter: blur(120px);
    border-radius: 9999px;
    animation: slow-rotate 20s linear infinite;
}

.hero-bg-blur2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 70%;
    height: 70%;
    background: rgba(255, 46, 196, 0.2);
    filter: blur(120px);
    border-radius: 9999px;
    animation: slow-rotate-reverse 25s linear infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px);
    z-index: -5;
}

.particles {
    position: absolute;
    inset: 0;
    z-index: -5;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    animation: float-particle 12s linear infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(24, 24, 27, 0.6);
    border: 1px solid #27272a;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--electric-cyan);
    margin-bottom: 32px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -4px;
    margin-bottom: 32px;
}

.artistic-gradient {
    background: linear-gradient(90deg, #00f5ff, #ff2ec4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 22px;
    max-width: 560px;
    margin: 0 auto 48px;
    color: #a3a3a3;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(to right, #00f5ff, #00d1ff);
    color: #0a0a0a;
    font-weight: 900;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.6);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    border: 2px solid #3f3f46;
    border-radius: 12px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #71717a;
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.3;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Section Styles */
.section {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 80px;
}

.section-badge {
    display: block;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--electric-cyan);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid #27272a;
    border-radius: 28px;
    padding: 48px 40px;
    transition: all 0.4s ease;
}

.service-card:hover {
    border-color: #3f3f46;
    transform: translateY(-12px);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 32px;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(8deg);
}

.service-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
}

/* Portfolio */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background: var(--electric-cyan);
    color: var(--charcoal);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.portfolio-item {
    border-radius: 24px;
    overflow: hidden;
    background: #18181b;
    border: 1px solid #27272a;
    cursor: pointer;
    transition: all 0.4s;
}

.portfolio-item:hover {
    transform: scale(1.03);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    padding: 32px;
    background: linear-gradient(180deg, transparent, rgba(10,10,10,0.9));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
}

.modal-content {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 48px;
    max-width: 1100px;
    width: 100%;
    overflow: hidden;
}

/* Testimonials */
.testimonial-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 48px;
    padding: 80px 60px;
    text-align: center;
}

.testimonial-text {
    font-size: 32px;
    line-height: 1.3;
    font-style: italic;
    margin-bottom: 60px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    border: 3px solid rgba(0,245,255,0.2);
    object-fit: cover;
}

/* Studio */
.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.studio-image-wrapper {
    position: relative;
    border-radius: 48px;
    overflow: hidden;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 48px;
    padding: 64px;
}

/* Footer */
footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

@keyframes slow-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slow-rotate-reverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes float-particle {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-120vh); opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
}

@media (max-width: 768px) {
    .studio-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}