/* Importing Roboto Mono font */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400&display=swap');

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

body {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: #000;
    background: #fff; /* Lighter background restored */
    display: flex;
    flex-direction: column;
    height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.title {
    font-size: 16px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    cursor: pointer;
}

nav a:hover {
    text-decoration: underline;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content {
    text-align: center;
}

/* Portfolio Page Styling */
.portfolio-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(2, 100px);
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.button {
    width: 100px;
    height: 100px;
    background-color: #2c2c2c; /* Darker buttons */
    border: none;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5); /* Sharp popping out effect */
}

.button:active,
.button.selected {
    transform: translateY(3px); /* Push in effect */
    box-shadow: none; /* Remove shadow when selected */
}

.slider {
    position: absolute;
    background-color: #AAA;
    cursor: pointer;
    border-radius: 4px;
}

.horizontal-slider {
    width: 340px;
    height: 4px; /* Thinner, more rectangular */
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.vertical-slider {
    width: 4px; /* Thinner, more rectangular */
    height: 220px;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-knob {
    background-color: #AAA;
    position: absolute;
    cursor: pointer;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5); /* Sharp shadow on knobs */
}

.knob-horizontal {
    width: 10px; /* Vertically longer for horizontal knob */
    height: 20px;
    top: -8px;
}

.knob-vertical {
    width: 20px; /* Horizontally longer for vertical knob */
    height: 10px;
    left: -8px;
}

.display-text {
    position: absolute;
    top: -50px;
    right: 0;
    color: #AAA;
    font-size: 18px;
    /*text-transform: uppercase;*/
}



/* Contact Page Layout */
.contact-top-left {
    position: absolute;
    top: 80px;   /* leaves margin below header */
    left: 40px;   /* margin from left edge */
    font-size: 16px;
}

.contact-top-left a {
    color: #2c2c2c;
    text-decoration: none;
    border-bottom: 1px solid #2c2c2c;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-top-left a:hover {
    color: #555;
    border-color: #555;
}

.contact-top-left h2 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 12px;
    color: #666;
}


/* Bigger on large screens (2K and up) */
@media (min-width: 1600px) {
   .contact-top-left h2 {
        font-size: 22px;
    }
}

/* Mobiles */
@media (max-width: 600px) {
    .contact-top-left {
		position: absolute;
		top: 80px;   /* leaves margin below header */
		left: 40px;   /* margin from left edge */
		font-size: 14px;
	}
    .contact-top-left h2 {
        font-size: 16px;
    }
  
}



/* Playlist Embeds */
.playlist-container {
    display: flex;
    justify-content: center;
    gap: 80px; /* much bigger gap between playlists */
    flex-wrap: wrap;
    margin-bottom: 3rem;
    text-align: center;
}

.playlist h2 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #666;
}

.playlist iframe {
    width: 560px;
    height: 315px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: none;
}

/* Bigger on large screens (2K and up) */
@media (min-width: 1600px) {
    .playlist iframe {
        width: 800px;
        height: 450px;
    }
    .playlist h2 {
        font-size: 22px;
    }
    .playlist-container {
        gap: 120px; /* even more separation */
    }
}

/* Stacked layout for smaller screens */
@media (max-width: 1200px) {
    .playlist-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
     .playlist h2 {
        margin-bottom: 16px;
    }
}

/* Mobiles */
@media (max-width: 600px) {
    .playlist h2 {
        font-size: 16px;
        margin-bottom: 14px;
    }
    .playlist iframe {
        max-width: 95%;
        border-radius: 8px;
    }
	.extra-margin {
		margin-top: 24px;
	}
	
}




