@font-face {
    font-family: RaptorText-Black;
    src: url(font/RaptorText-Black.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* Column 1: Left Sidebar - Fixed */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: #000000;
    padding: 60px 30px;
    z-index: 100;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-intro {
    font-size: 1.3em;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.sidebar-bio {
    font-size: 0.9em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.9em;
    transition: color 0.3s;
}

.sidebar-link:hover {
    color: #ffffff;
}

.back-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
    margin-top: 20px;
    display: inline-block;
}

.back-link:hover {
    color: #ffffff;
}

/* Column 2: Freeform Canvas Area */
.canvas-area {
    margin-left: 280px;
    padding: 60px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: start;
}

/* Asset Base Styles */
.asset {
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.asset:hover {
    transform: scale(1.01);
}

.asset img {
    width: 100%;
    height: auto;
    display: block;
}

/* Grid positioning based on your layout */
/* Row 1: Embrace (small) + Sourz (large) */
.asset-1 { 
    grid-column: span 3; 
    grid-row: 1; 
}

.asset-2 { 
    display: none; /* Hidden */
}

.asset-3 { 
    grid-column: span 9; 
    grid-row: 1; 
}

/* Row 2: Full width Sourz banner */
.asset-4 { 
    grid-column: span 12; 
    grid-row: 2; 
}

/* Row 3: Ghost (tall) + Journeyman + Cutwater */
.asset-5 { 
    grid-column: span 4; 
    grid-row: 3 / 5; /* Spans 2 rows for tall image */
}

.asset-6 { 
    grid-column: span 4; 
    grid-row: 3; 
}

.asset-7 { 
    grid-column: span 4; 
    grid-row: 3; 
}

/* Row 4: Boxhot (wide) + placeholder */
.asset-8 { 
    grid-column: span 8; 
    grid-row: 4; 
}

.asset-9 { 
    grid-column: span 12; 
    grid-row: 5; 
}


/* Responsive Design */
@media (max-width: 1400px) {
    .sidebar {
        width: 240px;
    }
    
    .canvas-area {
        margin-left: 240px;
        padding: 50px 40px;
    }
}

@media (max-width: 1024px) {
    .sidebar {
        position: relative;
        width: 100%;
        height: auto;
        padding: 40px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .canvas-area {
        margin-left: 0;
        padding: 40px 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    /* Stack assets vertically on tablet */
    .asset-1, .asset-2, .asset-3, .asset-4,
    .asset-5, .asset-6, .asset-7, .asset-8, .asset-9 {
        grid-column: unset;
        grid-row: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .sidebar {
        padding: 30px 20px;
    }
    
    .sidebar-intro {
        font-size: 1.1em;
    }
    
    .canvas-area {
        padding: 30px 20px;
        gap: 15px;
    }
}
