* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: rgb(223, 240, 255);
}

header {
  background-color: #333;
  padding: 25px 30px;
  position: sticky;
  top: 0;
  z-index: 998;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  width: 70px;
  height: 70px;
}

.logo > a > img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 30px;
}

.nav-links > li > a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.7s;
}

.nav-links > li > a:hover {
  letter-spacing: 2px;
  color: rgb(255, 67, 67);
}

.bar_menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: 250px;
  background-color: #928e8e;
  opacity: 0;
  transition: all 0.7s ease;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.mobile-menu.active {
  right: 0;
  /* Slide in from the right */
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
  margin: 70px 20px;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu > ul > li > a:hover {
  transition: all 0.7s;
  letter-spacing: 2px;
  color: rgb(255, 67, 67);
}

.mobile-menu a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
}

/* ========================Slide Show========================  */

.slide_show {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.slide {
  display: none;
  font-size: 24px;
  width: 100%;
  height: 100%;
}

.slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block_slide_text {
  background-color: rgba(0, 0, 0, 0.634);
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide_text {
  position: absolute;
  width: 900px;
}

.slide_title_name {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide_title_name > h1 {
  font-weight: 700;
  font-size: 50px;
  color: white;
  text-shadow: rgb(0, 0, 0) 1px 0 17px;
  text-shadow: 6px 5px 5px rgb(127, 72, 60);
  text-align: center;
}

.slide_title {
  margin-top: 80px;
  text-align: center;
  color: rgb(255, 255, 255);
  text-shadow: #c1e0e3 1px 0 10px;
}

.slide_title > p {
  font-weight: 500;
  letter-spacing: 2px;
  color: white;
}

.btn_slide {
  cursor: pointer;
  position: absolute;
  color: rgb(255, 255, 255);
  font-size: 35px;
  transition: all 0.5s;
}

.btn_slide:hover {
  color: rgb(139, 22, 22);
}

.slide_prev {
  left: 20px;
}

.slide_next {
  right: 20px;
}

/* =============================Main Albums=============================== */

.album_title {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(72, 41, 41);
}

.block_card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  width: 100%;
  padding: 0 7.5rem;
}

.block_card > .box_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.block_card > .box_card > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.block_card > .box_card > .box_card_title > h2 {
  font-weight: 700;
}

.block_card > .box_card > a > .box_card_img {
  border-radius: 10px;
  overflow: hidden;
  /* width: 270px;
    height: 270px; */
  margin: 1rem 0;
  box-shadow: rgba(0, 0, 0, 0.542) 0px 3px 8px;
  transition: transform 0.3s ease;
  background-color: black;
}

.block_card > .box_card > a > .box_card_img:hover {
  transform: translateY(-10px);
}

.block_card > .box_card > a > .box_card_img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.block_card > .box_card > a > .box_card_img > img:hover {
  opacity: 70%;
}

.block_card > .box_card > a > button {
  margin: 10px;
  padding: 0.7rem 1.8rem;
  transition: all 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 5px;
  display: block;
  border: none;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #f09819;
  background-image: linear-gradient(
    45deg,
    #ff512f 0%,
    rgb(72, 41, 41) 51%,
    #ff512f 100%
  );
  cursor: pointer;
}

.block_card > .box_card > a > button:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  transform: scale(0.9);
}

/* .block_card > .box_card > a > button {
  padding: 0.7rem 1.8rem;
  color: white;
  background-color: rgb(255, 128, 0);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.7s;
  font-weight: 700;
}

.block_card > .box_card > a > button:hover {
  background-color: rgb(72, 41, 41);
  transform: scale(0.9);
} */

.btn_go_album {
  background-image: linear-gradient(
    to right,
    rgb(139, 22, 22) 0%,
    #b29f94 51%,
    rgb(185, 22, 22) 100%
  );
}

.btn_go_album {
  margin: auto;
  padding: 0.8rem 1.8rem;
  text-align: center;
  transition: 0.7s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  display: flex;
  border: none;
}

.btn_go_album:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

.btn_go_album > a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 500;
}

/* ==========================Footer========================== */
footer {
  width: 100%;
  background-color: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  color: rgb(138, 138, 138);
  /* margin-top: 4rem; */
  text-align: center;
}

/* ==================Respone===================== */
@media (max-width: 1400px) {
  .block_card {
    gap: 2.5rem;
    padding: 0 7.5rem;
  }
}

@media (max-width: 1200px) {
  .block_card {
    gap: 1.5rem;
    padding: 0 5rem;
  }
}

@media (max-width: 950px) {
  .slide_show {
    height: 700px;
  }
  .block_slide_text {
    height: 700px;
  }
  .slide_text {
    width: 600px;
  }

  .slide_title_name > h1 {
    font-size: 35px;
  }

  .slide_title > h1 {
    font-size: 33px;
  }

  .slide_title > p {
    font-weight: 500;
    letter-spacing: 2px;
    color: white;
  }

  .block_card {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
  }

  .bar_menu {
    display: flex;
  }

  .slide_text {
    width: 300px;
  }

  .slide_title_name > h1 {
    font-size: 28px;
  }

  .slide_title {
    margin-top: 30px;
    font-size: 28px;
  }

  .slide_prev {
    left: 10px;
  }

  .slide_next {
    right: 10px;
  }

  .block_card {
    grid-template-columns: repeat(1, 1fr);
  }

  .album_title {
    margin: 0;
  }

  .album_title > h1 {
    font-size: 25px;
  }

  .btn_go_album {
    padding: 0.6rem 1.4rem;
    display: flex;
    float: right;
    margin-right: 2rem;
  }

  /* ==========================Footer========================== */

  footer {
    padding: 2.5rem 1.5rem;
    font-size: 15px;
  }
}

/* =====================contact====================== */

.block_main_contact {
  /* height: 90vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.contact_title > h1 {
  text-align: center;
  margin: 1.5rem 0;
  font-weight: bold;
  color: rgb(72, 41, 41);
}

.block_contact {
  padding: 1rem 4rem;
  display: flex;
}

.block_contact_left {
  width: 45%;
  padding: 1rem;
  display: flex;
  align-items: center;
}

.block_contact_left > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.block_contact_left > ul > li {
  padding: 0.6rem 0;
}

.block_contact_left > ul > li > h4 {
  display: flex;
  gap: 0.7rem;
  color: rgb(25, 25, 25);
  letter-spacing: 1px;
  margin: 0;
}

.block_contact_left > ul > li > h4 > i {
  color: rgb(121, 42, 42);
}

.block_contact_left > ul > li > p {
  color: rgb(87, 87, 87);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 300;
  margin: 10px 0;
}

/* ==================block contact left link icon===================== */

.block_contact_left_icon {
  margin-top: 1rem;
}

.block_contact_left_icon > ul {
  list-style-type: none;
  display: flex;
}

.block_contact_left_icon > ul > li {
  padding: 0 2rem 0 0;
}

.block_contact_left_icon > ul > li > a {
  font-size: 20px;
  color: rgb(25, 25, 25);
  transition: all 0.5s;
}

.block_contact_left_icon > ul > li > a:hover {
  color: rgb(255, 128, 0);
}

.block_contact_right {
  width: 55%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
}

.block_contact_right > iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================Respone===================== */

@media (max-width: 1000px) {
  .block_contact {
    flex-direction: column;
    padding: 0 2rem;
  }

  .block_contact_left {
    width: 100%;
    padding: 1rem 0;
  }

  .block_contact_right {
    width: 100%;
  }

  .block_contact_right {
    height: 350px;
  }

  .block_contact_left_icon {
    margin: 0 0 1rem 0;
  }

  .block_contact_left_icon > ul > li {
    padding: 0 1.3rem 0 0;
  }

  .block_contact_left_icon > ul > li > a {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  .block_main_contact {
    height: max-content;
  }
  .contact_title > h1 {
    margin: 1rem 0;
    font-size: 25px;
  }

  .block_contact {
    padding: 0 3rem;
  }

  .block_contact_right {
    height: 300px;
  }

  .block_contact_left_icon > ul > li {
    padding: 0 1rem 0 0;
  }

  .block_contact_left_icon > ul > li > a {
    font-size: 17px;
  }
}
