/* styles.css - Kinetic Architectural Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #3b82f6;
    --secondary: #0a0a0a;
    --accent: #10b981;
    --surface: #171717;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--secondary);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Custom Hero Layout: Asymmetrical Split */
.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 90vh;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .hero-split { 
        grid-template-columns: 1fr; 
        padding-top: 120px; 
        text-align: center;
    }
    .hero-split div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Signature Card System: Floating Glass */
.mo-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.mo-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Distinctive Button System */
.btn-kinetic {
    position: relative;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 100px;
    overflow: hidden;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    cursor: pointer;
    border: none;
}

.btn-kinetic::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-kinetic:hover::after { left: 100%; }

/* Section Rhythm */
.section-offset {
    padding: 80px 0;
    position: relative;
}

@media (min-width: 768px) {
    .section-offset { padding: 120px 0; }
}

.bg-mesh {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: -1;
}

/* Navigation */
.nav-blur {
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.mobile-menu-active {
    background: rgba(10, 10, 10, 1) !important;
}

/* Cookie Consent */
#cookie-consent {
    position: fixed;
    bottom: 20px; left: 20px; right: 20px;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    z-index: 1000;
    display: none;
    border-radius: 16px;
}

/* Touch Targets */
a, button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

nav a {
    min-height: auto;
    padding: 0.5rem 0;
}
