.container {
  width: 100%;
  height: 100vh;
  display: grid;
}
body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Sentinel";
  src: url("../fonts/Sentinel/Sentinel-Light.otf") format("opentype");
}
header {
  background-color: white;
  color: #fff;
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  justify-content: flex-end;
  width: 50px;
  height: 70px;
  cursor: pointer;
}

.logo-text {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}

.logo-text span {
  display: flex;
  margin-right: 5px;
}

@font-face {
  font-family: "Sentinel";
  src: url("../fonts/Sentinel/Sentinel-Light.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

.logo-text .arabic {
  color: #000;
  font-family: "Noto Naskh Arabic";
  font-size: 18px;
  font-weight: bold;
  line-height: 14px; /* 87.5% */
}

a {
  text-decoration: none !important;
}

.logo-text .english {
  color: #a6a6a6;
  font-family: "Noto Naskh Arabic";
  font-size: 16px;
  line-height: 14px;
  margin-top: 15px;
  text-decoration: none !important;
}

.about-us-description {
  width: calc(
    60% - 160px
  ); /* Half the width of the album-row grid with margin */
  margin-left: 55px;
  margin-bottom: 20px;
  font-family: "Sentinel";
  src: url("../fonts/Sentinel/Sentinel-Light.otf") format("opentype");
}

.about-us-description p {
  /* margin-bottom: 5px;  */
  font-family: "Sentinel";
  src: url("../fonts/Sentinel/Sentinel-Light.otf") format("opentype");
}

.about-us-description p:last-child {
  margin-bottom: 0;
}

.album {
  cursor: pointer;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 20px;
}

.album-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 35px;
}

.album img {
  width: 200px;
  max-height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.album h3 {
  margin-top: 10px;
  font-size: 15px;
}

/* Footer Styles */
footer {
  width: 100%;
  height: 50px;
  margin-top: -50px;
  background-color: transparent;
  color: #fff;
  font-family: "Roboto", sans-serif;
  text-align: center;
}

.social-icons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.social-icons a {
  margin-left: 20px;
  font-size: 20px;
  margin-bottom: 10px;
  text-decoration: none;
}

.social-icons a:hover {
  filter: invert(14%) sepia(98%) saturate(5898%) hue-rotate(329deg)
    brightness(98%) contrast(106%);
}

.social-icons img {
  width: 25px;
  height: 25px;
}

.news-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-elements {
  display: flex;
  align-items: center;
}

.email-input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000;
  margin: 0;
  padding: 5px;
  font-size: 16px;
  margin-left: 10px;
  margin-bottom: 20px;
  transition: border-bottom 0.3s ease;
}

.email-input:focus {
  outline: none;
  border: none;
  border-bottom: 2px solid #ff0066;
}

.news-icons p {
  color: #333;
  border-bottom: solid;
  margin-left: 10px;
  margin-top: 10px;
}

.subscribe-btn {
  margin-left: 20px;
  padding: 8px 16px;
  background-color: white;
  color: black;
  border-radius: 1px;
  cursor: pointer;
  margin-bottom: 20px;
}

.subscribe-btn:hover {
  background-color: white;
  border-color: #ff0066;
  color: #ff0066;
}

.news-icons a {
  margin-left: 20px;
  font-size: 20px;
  margin-bottom: 10px;
  text-decoration: none;
}

.news-icons a:hover {
  filter: invert(14%) sepia(98%) saturate(5898%) hue-rotate(329deg)
    brightness(98%) contrast(106%);
}

.news-icons img {
  width: 25px;
  height: 25px;
}

.social-icon {
  margin: 0 10px;
  position: relative;
  display: flex;
  align-items: center;
}

.social-icon:hover img {
  filter: brightness(1.5);
}

.caption {
  margin-left: 5px;
  font-size: 14px;
  color: #ff0066;
  opacity: 0;
  transition: opacity 0.3s;
  font-weight: bold;
  text-decoration: underline;
}

.social-icon:hover .caption {
  opacity: 1;
}

@media screen and (max-width: 480px) {
  header {
    background-color: white;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    display: flex;
    justify-content: flex-end;
    width: 50px;
    height: 80px;
    cursor: pointer;
  }
  .logo-img {
    height: 50px;
    cursor: pointer;
  }

  .about-us-description {
    width: 300px;
    margin-left: 55px;
    margin-bottom: 20px;
    font-family: "Sentinel";
    src: url("../fonts/Sentinel/Sentinel-Light.otf") format("opentype");
  }

  .social-icons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icons a {
    /* margin-left: 10px; */
    margin-left: 20px;
    font-size: 20px;
    margin-bottom: 10px;
    text-decoration: none;
  }

  .social-icons img {
    width: 25px;
    height: 25px;
    transition: filter 0.3s;
  }

  .social-icons a:hover img {
    filter: brightness(1.5);
  }

  .news-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .left-elements {
    display: flex;
    align-items: center;
  }

  .email-input {
    /* margin-left: 0;
    margin-bottom: 10px; */
    border: none;
    border-bottom: 1px solid #000;
    margin: 0;
    padding: 5px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-bottom 0.3s ease;
  }

  .email-input:focus {
    outline: none;
    border: none;
    border-bottom: 2px solid #ff0066;
  }

  .news-icons p {
    color: #333;
    border-bottom: solid;
    margin-left: 10px;
    margin-top: 10px;
  }

  .subscribe-btn {
    /* margin-left: 0; */
    margin-left: 20px;
    padding: 8px 16px;
    background-color: white;
    color: black;
    border-radius: 1px;
    cursor: pointer;
    margin-bottom: 20px;
  }

  .subscribe-btn:active {
    background-color: white;
    border-color: #ff0066;
    color: #ff0066;
  }

  .news-icons a {
    margin-left: 20px;
    font-size: 20px;
    margin-bottom: 10px;
    text-decoration: none;
  }

  .news-icons img {
    width: 25px;
    height: 25px;
  }

  .social-icon {
    margin: 0 10px;
    position: relative;
    display: flex;
    align-items: center;
  }

  .social-icon:hover img {
    filter: brightness(1.5);
  }

  .caption {
    margin-left: 5px;
    font-size: 14px;
    color: #ff0066;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: bold;
    text-decoration: underline;
  }

  .social-icon:hover .caption {
    opacity: 1;
  }
}
