@import "/css/main.css";
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Play&display=swap");
@import url("https://fonts.googleapis.com/css?family=Almarai&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css?family=Galada&display=swap");

/* main Section */
.main {
  background-image: url("../image/Terms&Conditions.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.main-container {
  z-index: 1;
}

.main-content {
  text-align: center;
}

.main-content h1 {
  color: #daa520;
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  padding: 20px 0;
}

.main-content p {
  color: #daa520;
  font-size: 1.7rem;
  margin: 0;
  padding: 20px 0;
  text-align: center;
}

.main-content {
  animation: slideInFromLeft 1s ease-out;
}

.main-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 5;
}

@keyframes move-forever1 {
  0% {
    transform: translate(-90px, 0);
  }
  100% {
    transform: translate(85px, 0);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0);
  }
  100% {
    transform: translate(85px, 0);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0);
  }
  100% {
    transform: translate(85px, 0);
  }
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--background);
  opacity: 0.6;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--background);
  opacity: 0.4;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--background);
  opacity: 0.2;
}

@media (max-width: 480px) {
  .main-content h1 {
    font-size: 3rem;
  }
}

/* Welcome Section */
.Welcome {
  padding: 80px 20px;
  background: var(--background, #f9f9f9);
}
.Welcome-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.Welcome-content {
  animation: slideInFromLeft 1s ease-out;
}
.Terms {
  margin-bottom: 40px;
}
.indented-list {
  margin-top: 6px;
  padding-left: 2.1rem;
}
.indented-list[dir="rtl"] {
  margin-top: 6px;
  padding-right: 2.1rem;
}

@media (min-width: 1200px) {
  .Welcome {
    padding: 100px 40px;
  }
}

@media (max-width: 992px) {
  .Welcome {
    padding: 70px 30px;
  }
}

@media (max-width: 768px) {
  .Welcome {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .Welcome {
    padding: 60px 10px;
  }
}
