@import url('../../default/assets/style.css');

:root {
    --bg: #fff;
    --left-bg: #333;
    --accent: #f39c12;
    --text: #333;
    --white: #fff;
}

body {
    margin: 0;
    display: flex;
    min-height: 100vh;
}

.site-header {
    display: none;
}

/* Nav is on the left */

.left-nav {
    width: 300px;
    background: var(--left-bg);
    color: var(--white);
    padding: 40px;
    position: fixed;
    height: 100vh;
}

.main-content {
    margin-left: 300px;
    padding: 60px;
    flex: 1;
}

.nav-link {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

.video-card {
    border-radius: 0;
    border: 2px solid #000;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 50px;
}