/* Full-width playlist container, centered */
.playlist-container-full {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Gaegu';
    src: url('../fonts/Gaegu-Regular.ttf') format('truetype');
    font-weight: 400; /* Normal/Regular weight */
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Gaegu';
    src: url('../fonts/Gaegu-Light.ttf') format('truetype');
    font-weight: 300; /* Light weight */
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Gaegu';
    src: url('../fonts/Gaegu-Bold.ttf') format('truetype');
    font-weight: 700; /* Bold weight */
    font-style: normal;
  }

  @font-face {
    font-family: 'EncodeSans';
    src: url('../fonts/EncodeSans-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'Jua';
    src: url('../fonts/Jua-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/2641159.gif') no-repeat center center fixed;
    background-size: cover;
}


/* Style the browser mockup container */
.browser-mockup {
    width: 90%;
    max-width: 1000px;
    background-color: #fefefe;
    border: 1px solid #afafaf;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto; /* Use 'auto' instead of 'visible' */
    overflow-x: hidden;
    max-height: 90vh; /* Limit the maximum height to 80% of the viewport height */
}

/* Style the browser header */
.browser-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #c6dfff;
    border-bottom: 1px solid #ccc;
}

/* Style the browser buttons */
.browser-btn {
    background-color: #e0e0e0;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    margin-right: 10px;
    cursor: pointer;
    font-size: 18px;
}

/* Style the URL bar */
.url-bar {
    flex-grow: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

/* Style the browser content area */
.browser-content {
    padding: 30px;
    background-color: #f5f0ff;
}

/* Style the links as buttons */
.buttons {
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Gill Sans', sans-serif;
}

.browser-link {
    background-color: #73b7ff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
    transition: background-color 0.3s;
}

.browser-link:hover {
    background-color: #005bbd;
}

/* Style the welcome heading */
.welcome-heading {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0px;
    font-family: 'Jua';
    font-size: 40px;
}

/* Style the container that holds bullet points and playlist */
.content-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

@media (max-width: 800px) {
    .content-container {
        flex-direction: column; /* Adjust columns for smaller screens if needed */
    }
}

/* Style current obsession */
.current-obsession {
    font-family: 'Gaegu', cursive;
    text-shadow: 5px 5px 10px #463dff;
    background-color: #d4bfdf;
    text-align: center;
}

.general-heading {
    font-family: 'URW Chancery L', cursive;
    text-shadow: 5px 5px 10px #f23dff;
    background-color: #d4bfdf;
    text-align: center;
}

/* Style the bullet points */
.bullet-points {
    list-style-type: disc;
    margin-top: 20px;
    padding-left: 20px; /* Indent bullet points */
    text-align: left;
    color: #24658A;
    font-family: 'EncodeSans';
    padding-right: 20px;
    letter-spacing: 0.05rem;
    width: calc(100% + 0.05rem);
    line-height: 1.5;
    font-weight: 400;
}

/* Style the playlist container */
.playlist-container-left {
    margin-right: 10px;
    align-items: center;
}

.playlist-container-right {
    margin-left: 10px;
    align-items: center;
}

.playlist-container-left,
.playlist-container-right {
    width: 50%;
    box-sizing: border-box;
}

@media (max-width: 800px) {
  .playlist-container-left,
  .playlist-container-right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Style the sections */
.section {
    display: none;
}

/* Example to show the first section, you can change this logic as needed */
.section:first-child {
    display: block;
}

.text-box {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    border: 1px solid #ddd;
    font-family: Josefin Sans, sans-serif
}

.text-box h1 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.text-box p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.socialscontainer {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.socialsbutton {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    text-align: center;
    font-family: Josefin Sans, sans-serif;
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: #d88eff;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.socialsbutton-spotify { background-color: #2d691d; }
.socialsbutton-twitter { background-color: #1da1f2; }
.socialsbutton-discord { background-color: #34393c; }
.socialsbutton-instagram { background-color: #e1306c; }
.socialsbutton-lastfm { background-color: #ff0000; }

.navbar {
    background: #5e63ff;
    padding: 10px 20px;
    position: relative;
  }
  
  .nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
  }
  
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .nav-item {
    display: inline;
  }
  
  .nav-link {
    text-decoration: none;
    font-family: 'Gaegu', sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .nav-link:hover {
    background-color: #575757;
  }
  
  /* Mobile styling */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
  
    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      background-color: #333;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      text-align: center;
      padding: 10px 0;
    }
  
    .nav-item {
      margin: 5px 0;
    }
  
    .nav-list.show {
      display: flex;
    }
  }
