@font-face {
    font-family: 'Daydream';
    src: url('fonts/Daydream.otf') format('opentype');
}
@font-face {
    font-family: 'Pixeled';
    src: url(fonts/Pixeled.ttf) format('truetype');
}
@font-face {
    font-family: 'VCR';
    src: url('fonts/VCR.ttf') format('truetype');
}
.navbar ul {
    list-style-type: none; /* Removes the bullet points */
    padding: 0;
    text-align: center;    /* Centers the tabs */
}

.navbar li {
    display: inline-block; /* Puts them side-by-side */
    margin: 0 15px;        /* Adds space between the tabs */
}

.navbar a {
    text-decoration: none; /* Removes the underline */
    font-family: 'Daydream', sans-serif; /* Uses your custom font */
    color: #000;           /* Change this to match your aesthetic */
    font-size: 14px;
}

.navbar a:hover {
    color: #555;           /* Changes color when you hover over them */
}
/* Mobile Styles */
@media screen and (max-width: 600px) {
    .content-container {
        width: 90%;      /* Takes up 90% of the screen instead of a fixed pixel width */
        margin: 10px auto;
        padding: 15px;   /* Shrinks padding so text has more room */
    }

    .navbar li {
        display: block;  /* Stacks tabs vertically so they don't overlap */
        margin: 10px 0;  /* Adds space between the stacked tabs */
    }

    h1 {
        font-size: 1.5rem; /* Shrinks the title so it doesn't wrap weirdly */
    }
}
.main-content {
    display: flex;       /* Turns on the side-by-side magic */
    align-items: center; /* Vertically centers the link with the text */
    gap: 20px;           /* Adds space between the link and the text */
}

.sidebar-link {
    flex-shrink: 0;      /* Prevents the link from getting squished */
    font-family: 'VCR', sans-serif;
    border: 1px solid #000;
    padding: 10px;
    background: #fff;
}

/* Fix for mobile: stack them back up so it doesn't look cramped */
@media screen and (max-width: 600px) {
    .main-content {
        flex-direction: column; 
        text-align: center;
    }
    .Chat {
        position: static;    /* This "unpins" it from the side */
        width: 90%;          /* Makes it fill the screen width */
        height: 400px;       /* Gives it a set height on mobile */
        margin: 20px auto;   /* Centers it with space above and below */
        left: auto;          /* Clears the desktop left positioning */
        top: auto;           /* Clears the desktop top positioning */
    }
}
.Chat {
    display: flex;
    flex-direction: column;
    /* Your existing width, height, background, etc. */
    width: 300px;
    height: 500px; 
    background-color: rgba(235, 212, 240, 1);
    border: 2px solid #000;
    border-radius: 15px;
    padding: 10px;
    position: fixed; /* Keep it as a sidebar */
    left: 80px;
    top: 100px;
}

.Chat iframe {
    flex-grow: 1; /* This forces the Cbox to fill the remaining space */
    border: none;
}
/* BOX 1: Navigation */
.nav-box {
    max-width: 550px;
    margin: 20px auto 10px; /* Separates it from the box below */
    padding: 5px 0;        /* Adjust these numbers to change height */
    background-color: rgba(235, 212, 240, 1);
    border: 2px solid #000;
    border-radius: 50px;    /* Makes it look like a pill/tab */
    text-align: center;
}

/* BOX 2: The Paragraph */
.content-container {
    max-width: 540px;
    margin: 0 auto;         /* Centered */
    padding: 15px;          /* Big padding for the bio text */
    background-color: rgba(235, 212, 240, 1);
    border: 2px solid #000;
    border-radius: 15px;    /* Rectangular with slightly round corners */
}

/* Layout Wrapper */
.three-column-layout {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
}

/* Sidebars */
.sidebar-left, .sidebar-right {
    flex: 0 0 250px; /* Fixed width of 250px */
}

/* Blog Center */
.blog-center {
    flex: 1;
    max-width: 600px;
}

.blog-post {
    background: rgba(235, 212, 240, 0.9);
    border: 2px solid #000;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden; /* Clears the float */
}

.blog-img {
    float: left;      /* This makes the text wrap around it */
    margin-right: 15px;
    margin-bottom: 10px;
    border: 1px solid #000;
    max-width: 150px;
}

/* Top Artist Box Styling */
.artist-box {
    background: rgba(235, 212, 240, 0.9);
    border: 2px solid #000;
    border-radius: 15px;
    padding: 15px;
    font-family: 'VCR', sans-serif;
}

.artist-box ol {
    padding-left: 20px;
}

/* Mobile Fix */
@media screen and (max-width: 1000px) {
    .three-column-layout {
        flex-direction: column;
        align-items: center;
    }
    .sidebar-left, .sidebar-right, .blog-center {
        width: 100%;
        max-width: 500px;
    }
}