/* /assets/css/style.css */
:root {
    --accent: #0f766e;
    --accent-light: #14b8a6;
    --surface: #f8fafc;
    --text: #14b8a6;
    --border: #e2e8f0;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #000;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 16rem;
    background: rgba(15, 23, 42, .8);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, .1);
    padding: 2rem 1.5rem;
    z-index: 20;
}

.glass-nav h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.glass-nav ul {
    list-style: none;
    padding: 0;
}

.glass-nav a {
    display: block;
    padding: 0.5rem 0;
    color: #cbd5e1;
    transition: color 0.2s;
    text-decoration: none;
}

.glass-nav a:hover {
    color: #5eead4;
}

/* Content */
.content-offset {
    margin-left: 16rem;
    min-height: 100vh;
}

/* Typography */
.serif {
    font-family: 'Playfair Display', serif;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Footer */
footer {
    margin-left: 16rem;
    width: calc(100% - 16rem);
    background: #111827;
    color: #cbd5e1;
    padding: 1.5rem;
    text-align: center;
}

footer a:hover {
    color: #5eead4;
}

        #video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        #video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/* Responsive */
@media (max-width: 1024px) {
    .glass-nav {
        display: none;
    }

    .content-offset {
        margin-left: 0;
    }
    
    footer {
        margin-left: 0;
        width: 100%;
    }
}

/* Blog-specific */
iframe.blog-iframe {
    width: 100%;
    height: calc(100vh - 3rem);
    border: none;
}

/* Contact form specific */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

/* About page specific */
.company-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

