body {
    background-color: #1A1A1A;
    margin: 0;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center; /* Horizontal center */
    /* align-items: center; */
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#landing-page-content {
    width: 30%;
    min-width: 300px;
    align-self: flex-start;
    margin: 50px 0;
    padding-bottom: 50px;
}

#profile-image-cont {
    height: auto;
    width: 100%;
    min-width: 300px;
}

#profile-image {
    border-radius: 50%;
    box-sizing: border-box;
    border: 8px solid #525252;
    height: auto;
    width: 100%;
}

#project-links-cont a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding-right: 20px;
    white-space: nowrap;
    line-height: 50px;
}

#project-links-cont a:hover {
    color: #525252;
}

h1, h2, h3, p, a, li {
    color: lightgrey;
    font-family: "Nunito Sans", sans-serif;
}

h1 {
    font-size: clamp(2.5rem, 2vw + 1rem, 3rem);
    font-weight: 200;
    text-align: center;
    line-height: 50px;
}

h2 {
    font-size: clamp(2rem, 2vw + 1rem, 2.5rem);
}

p {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.5rem);
}

/* Hyacinth project styles */

#hyacinth-header {
    width: 100%;
    margin-bottom: 10px;
    position: fixed;
    top: 0;
    background-color: black;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar a {
    text-decoration: none;
    margin: 0 15px;
}

#navbar h2 {
    font-weight: 300;
    font-size: 30px;
}

#menu {
    position: absolute;
    visibility: hidden;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #000000;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-clicked {
    background-color: #737373 !important;
}

.line {
    width: 20px;
    height: 2px;
    /* border-radius: 1.5px; */
    background-color: #737373;
    margin: 2px 0 2px 0;
    transform: rotate(0);
    transform-origin: 4.5px 1.5px;
    transition-duration: 0.50s;
}

#top-line {
    z-index: 10;
}

.line-clicked {
    background-color: #000000 !important;
}

.rotate-right {
    transform: rotateZ(45deg) translateX(3px);
}

.rotate-left {
    transform: rotateZ(-45deg) translateX(3px);
}

#mobile-links {
    visibility: hidden;
    display: flex;
    position: absolute;
    top: 70px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    background-color: black;
}

#mobile-links a {
    text-decoration: none;
}

#mobile-links h2 {
    font-weight: 200;
}

.visible {
    visibility: visible !important;
}

@media screen and (max-width: 600px) {
  #menu {
    visibility: visible;
  }
  #navbar {
    display: none;
  }
}

#hyacinth-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 0 0 20px 0;
    position: fixed;
    bottom: 0;
    background-color: black;
}

#hyacinth-footer-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 120px;
    color: lightgrey;
}

#hyacinth-footer h3 {
    color: #6a767a;
    font-weight: 300;
}


/* Story Page Styles */
#hyacinth-story-body {
    background-image: url('./hyacinth/assets/images/Hyacinthheader.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: 0 70px;
    background-color: black;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    /* margin-top: 70px; */
}

#hyacinth-intro-cont {
    width: 80%;
    justify-content: space-between;
    margin: 45vw 0 0 0;
    flex: 1;
}

@media screen and (max-width: 600px) {
  #hyacinth-intro-cont {
    margin: 50vh 0 0 0;
    background-color: #00000089;
  }
  #hyacinth-story-body {
    background-image: url('./hyacinth/assets/images/Hyacinthheadermobile.png');
  }
  
}

#hyacinth-intro-cont h2 {
    color: rgb(193, 0, 0);
    /* font-size: 40px; */
    width: fit-content;
    background-color: #00000089;
}

#intro-text-1 {
    width: 60%;
    /* min-width: 350px; */
    font-size: 19px;
    line-height: 30px;
    margin: 0 0 100px 0;
}

#intro-text-2 {
    width: 50%;
    /* min-width: 350px; */
    font-size: 19px;
    line-height: 30px;
    align-self: flex-end;
}

@media screen and (max-width: 600px) {
    #intro-text-1 {
        width: 95%;
    }
  #intro-text-2 {
    align-self: flex-start;
    width: 90%;
  }
}

#trailer-cont {
    margin: 150px 0 0 0;
    width: 100%;
}

#listen-here-link {
    display: block;
    text-decoration: none;
    background-color: #323232;
    padding: 10px;
    border-radius: 10px;
    margin: 50px 0 200px 0;
}

/* Episodes Page Styles */
#hyacinth-episodes-body {
      background-image: url('./hyacinth/assets/images/episodes-background.png'); /* path to your image */
      background-repeat: no-repeat;           /* prevent tiling */
      background-size: 80%;                 /* cover whole page */
      background-position: center;            /* center the image */
      background-attachment: fixed;           /* keep image fixed on scroll */
      background-color: black;
      flex-direction: column;
      justify-content: start;
}

#hyacinth-episodes-content {
    width: 100%;
    /* height: 800px; */
    justify-content: space-between;
    /* flex: 1; */
}

#episodes-list {
    /* height: 800px; */
    /* background-color: blue; */
    align-self: flex-end;
    margin: 20px;
    top: 0;
    text-align: right;
    background-color: #00000089;
    margin-top: 100px;
}

.episodes-links {
    line-height: 50px;
    list-style-type: none;
}

.episodes-links a {
    text-decoration: none;
    margin-left: 20px;
}

.download-link {
    text-transform: uppercase;
    font-weight: bold;
    font-size: small;
    color: #6a767a;
}

.episodes-links a:hover {
    color: grey;
}

#platforms-list {
    /* height: 500px; */
    margin: 60px 0 0 20px;
    padding-bottom: 100px;
    /* background-color: blue; */
    align-self: flex-start;
}

/* Database Styles */

#hyacinth-database-body {
      background-image: url('./hyacinth/assets/images/database-background.png');
      background-repeat: no-repeat;
      background-size: 80%;
      background-position: center;
      background-attachment: fixed;
      background-color: black;
      flex-direction: column;
      justify-content: start;
      align-items: center;
}

#hyacinth-database-cont {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    width: 90%;
    margin: 70px 0;
    padding-bottom: 100px;
}

#database-intro {
    background-color: #000000b5;
}

#hyacinth-database-cont h2 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
    line-height: 10px;
}

#setting-files {
    width: 100%;
}

.data-card {
    color: white;
    padding: 5px 20px;
    margin: 20px 0;
    border-radius: 10px;
    background-color: #000000b5;
    width: fit-content;
    max-width: 700px;
    cursor: pointer;
    /* line-height: 15px; */
}

/* About Me styles */

#about-page-body {
      background-color: black;
      flex-direction: column;
      justify-content: start;
      align-items: center;
}

#about-page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    margin: 70px 0;
    padding-bottom: 100px;
}

#about-me-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#about-me-cont img {
    width: 40%;
    min-width: 300px;
    margin: 40px;
    flex-shrink: 0;
}

#cast-grid {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
}

.cast-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    /* flex-wrap: wrap; */
}

.cast-card {
    flex-basis: 30%;
    gap: 20px;
}

.cast-card p {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem);
}

#grimm-quote {
    width: 40%;
    min-width: 300px;
    align-self: center;
    margin: 150px;
}

#grimm-quote p {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

#grimm-quote h3 {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: center;
}

@media screen and (max-width: 600px) {
    #about-me-cont {
        flex-direction: column;
    }

    .cast-row {
        flex-direction: column;
    }
}