* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1.4;
  text-decoration-line: none;
  user-select: none;
  box-sizing: border-box;
}

/* --- Header -------------------------------------------------------------- */
.header {
  background-color: rgb(47, 109, 245);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.header .nav {
  padding: 15px 0px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.header .nav .logo a {
  font-size: 32px;
  font-weight: 600;
  color: white;
}

.header .nav .logo a:hover {
  border-bottom: 2px solid rgb(255, 255, 255);
  transition: 0.1s ease-in-out;
}

.header .nav ol {
  list-style: none;
  display: flex;
  gap: 20px;
}

.header .nav ol li {
  color: white;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease-in;
}

.header .nav ol li:hover {
  border-bottom: 2px solid rgb(255, 255, 255);
  transition: 0.2s ease-in;
}

/* --- Main -------------------------------------------------------------- */
.main .intro-section {
  width: 100%;
  height: 100%;
  display: grid;
  color: black;
  font-size: 30px;
  place-items: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main .intro-section .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.main .intro-section img {
  max-width: 100%;
  height: auto;
}

.main .about-section {
  background-color: rgb(47, 109, 245);
  justify-content: center;
}

.main .about-section .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  color: white;
}

.main .about-section .container video {
  height: 450px;
  margin-bottom: 40px;
  border: 2px black solid;
}

.main .albums-section {
  padding-top: 60px;
  display: grid;
  place-items: center;
  gap: 50px;
  text-align: center;
}

.main .albums-section h3 {
  margin: 50px;
  font-size: 50px;
  color: rgb(47, 109, 245);
}

.main .albums-section .albumsOll {
  height: 100%;
}

.main .albums-section .albumsOll .album {
  height: auto;
  width: 400px;
  background-color: rgb(255, 255, 255);
  padding: 0;
  margin: 15px 22px;
  border: rgb(95, 94, 94) 1px solid;
  box-shadow: 3px 5px 66px rgba(0, 0, 0, 0.20), 0 2px 10px rgba(0, 0, 0, 0.12);
}

.main .albums-section .albumsOll .album .album-name {
  font-size: 25px;
  background-color: rgb(47, 109, 245);
  line-height: 1.2;
  padding: 12px 15px;
  color: #ffffff;
  align-content: space-around;
  display: grid;
  height: 135px;
}

.main .albums-section .albumsOll .album img {
  width: 100%;
  height: auto;
  border: rgb(95, 94, 94) solid 1px;
}

.main .albums-section .albumsOll .album .album-content {
  line-height: 1.2;
  padding: 12px 15px;
  text-align: Left;
}

.main .albums-section .albumsOll .album a img {
  width: 40px;
  height: auto;
  border: none;
  margin-left: 10px;
}

.main .albums-section .albumsOll .album a {
  display: inline-flex;
  font-size: 25px;
  background-color: rgb(47, 109, 245);
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  margin-bottom: 20px;
}

.main .albums-section .albumsOll .album a:hover {
  background-color: rgb(86, 109, 158);
}

/* films section */
.main .films-section {
  display: grid;
  place-items: center;
  text-align: center;
  margin-bottom: 50px;
  color: rgb(47, 109, 245);
}

.main .films-section .films {
  display: flex;
  margin: 50px;
}

.main .films-section .films div {
  margin: 0px 20px;
  border: rgb(95, 94, 94) 1px solid;
  box-shadow: 3px 5px 66px rgba(0, 0, 0, 0.20), 0 2px 10px rgba(0, 0, 0, 0.12);
}

.main .films-section .films div img {
  height: 350px;
}

.main .films-section .films div a {
  color: rgb(1, 54, 168);
}

.main .films-section .films div a:hover {
  border-bottom: 2px solid rgb(47, 109, 245);
  transition: 0.1s ease-in;
}

/* footer */
.footer .footer-upper {
  background-color: rgb(47, 109, 245);
  padding: 20px;
}

.footer .footer-upper p {
  justify-content: center;
  display: grid;
  margin-bottom: 25px;
  color: white;
  font-size: 19px;
}

.footer .footer-upper .container {
  display: flex;
  color: white;
  justify-content: space-evenly;
}

.footer .footer-upper .container h4 {
  border-bottom: 2px solid white;
  margin-bottom: 10px;
}

.footer .footer-upper .container .footer-links ol li {
  color: white;
  display: inline;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease-in;
}

.footer .footer-upper .container .footer-links ol li:hover {
  border-bottom: 2px solid rgb(255, 255, 255);
  transition: 0.2s ease-in;
}

.footer .footer-lower {
  background-color: rgb(28, 90, 223);
  padding: 20px;
  display: flex;
  justify-content: center;
  color: white;
}

.read-more-check {
  display: none;
}
.read-more-label {
  display: none; 
}
.more-content {
  display: block;
}

.menu-checkbox, .menu-icon {
  display: none; 
}

@media (max-width: 768px) {
  .header .nav {
    padding: 15px 25px !important;
    position: relative;
  }
  .menu-icon {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
  .header .nav .nav-menu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgb(47, 109, 245);
    flex-direction: column;
    padding: 20px;
    z-index: 200;
    border-bottom: #ffffff;
  }
  .menu-checkbox:checked ~ .nav-menu {
    display: flex;
  }
  .separator {
    display: none;
  }
  .header .nav ol {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .header .nav ol li {
    font-size: 18px;
  }

  .main .intro-section {
    height: 100px;
    min-height: 120px;
    padding: 0; 
    background-size: 100% auto; 
    background-position: top center; 
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main .intro-section .container {
    padding: 0;
    gap: 0;
  }
  .main .intro-section img {
    width: 100%;
    height: auto;
  }

  .main .about-section .container h2 {
    font-size: 24px !important;
    text-align: center !important;
    width: 100%;
    margin-left: 0 !important;
  }
  .main .about-section .container video {
    width: 100%;
    height: auto;
    max-height: 300px;
  }

  .main .albums-section h3 {
    font-size: 24px !important;
    text-align: center;
    margin: 30px 10px;
  }
  .albumsOll01, .albumsOll02, .albumsOll03, .albumsOll04, .albumsOll05 {
    flex-direction: column !important;
    align-items: center;
  }
  .album {
    width: 90% !important;
    max-width: 400px;
    margin: 15px auto !important;
  }

  .read-more-label {
    display: inline-block;
    background-color: rgb(47, 109, 245);
    color: white;
    padding: 10px 20px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
  }
  .more-content {
    display: none;
  }
  .read-more-check:checked ~ .more-content {
    display: block;
  }
  .read-more-check:checked ~ .read-more-label {
    display: none;
  }

  .main .films-section h2 {
    font-size: 24px !important;
    text-align: center;
  }
  .main .films-section .films {
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
  }
  .main .films-section .films div {
    margin: 15px 0;
    width: 90%;
    max-width: 350px;
  }
  .main .films-section .films div img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .footer .footer-upper .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .footer .footer-upper .container .footer-links ol li {
    display: block;
    margin: 5px 0;
  }

  .more-content { display: none; }
  .read-more-label { display: inline-block; }
  .read-more-check:checked ~ .more-content { display: block; }
  .read-more-check:checked ~ .read-more-label { display: none; }
}
