@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@300;400;700&display=swap');

:root {
    --primary: #69cd5e;
    --primary-glow: rgba(105, 205, 94, 0.3);
    --bg-deep: #0a0b0d;
    --bg-panel: rgba(255, 255, 255, 0.04);
    --text-bright: #ffffff;
    --text-dim: #b0b0b0;
    --border: rgba(255, 255, 255, 0.1);
    --nav-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; cursor: url('resources/cursor.svg'), auto;  }

body {
    background: var(--bg-deep);
    color: var(--text-bright);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo { font-family: 'Archivo Black', sans-serif; text-transform: uppercase; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* --- Navigation --- */
.main-nav {
    height: var(--nav-height);
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    background: rgba(10, 11, 13, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img { height: 32px; width: auto; }

.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; }

.nav-links a {
    text-decoration: none;
    color: var(--text-bright);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--primary); }

.nav-button {
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--primary);
    border-radius: 4px;
    color: var(--primary) !important;
}

/* --- Hero Section & Subtitle Fix --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    text-align: center;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(10,11,13,0.2) 0%, var(--bg-deep) 100%);
    z-index: -1;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

/* The Subtitle Fix */
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* --- Buttons --- */
.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px var(--primary-glow); }

/* --- Bento Grid Layout --- */
.section { padding: 8rem 0; }
.section-heading { font-size: 2.5rem; margin-bottom: 3rem; text-align: center; color: var(--primary); }
.section-heading.left { text-align: left; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-decoration: none;
    color: inherit;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-wide { grid-column: span 8; }
.bento-small { grid-column: span 4; }

.card:hover { 
    border-color: var(--primary);
    background: rgba(105, 205, 94, 0.05);
    transform: translateY(-8px);
}

.tag { color: var(--primary); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; display: block; }
.card h3 { margin-bottom: 1rem; }
.card p { color: var(--text-dim); font-size: 0.95rem; }
.link-arrow { display: block; margin-top: 2rem; color: var(--primary); font-weight: 700; }

/* --- About Section --- */
.about-flex { display: flex; gap: 4rem; align-items: center; }
.about-text { flex: 1; }
.about-text p { margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text-dim); }
.about-visual { flex: 1; }
.visual-box { aspect-ratio: 16/9; background: url("resources/img1.jpg"); background-size: cover; border: 1px solid var(--primary); border-radius: 12px; }
.highlight { color: var(--primary); font-weight: 700; }

/* --- Footer --- */
.main-footer { padding: 4rem 0; border-top: 1px solid var(--border); background: #050505; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; }
.footer-info h3 { color: var(--primary); margin-bottom: 1rem; }
.footer-info a { color: var(--text-bright); text-decoration: none; }
.footer-copy { color: var(--text-dim); font-size: 0.8rem; }

@media (max-width: 900px) {
    .bento-wide, .bento-small { grid-column: span 12; }
    .about-flex { flex-direction: column; text-align: center; }
    .section-heading.left { text-align: center; }
}