@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.anim {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}


* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all .2s linear;
}

html {
  direction: rtl;
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

.container {
  margin: 0 2.5%;
}

a {
  text-decoration: none;
  color: #fdfdfd;
  margin-left: 10px;
  font-size: 2rem;
  font-weight: bold;
}
a:hover {
  color: #c64f18;
}

/*  Header  */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 2rem 10%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: #fff;
}
.logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}
.navbar a {
  margin-right: 2rem;
  color: #fff;
}
.register {
  background-color: #e2d2cd;
  color: #000000;
  padding: 1rem 2rem;
  border-radius:.75rem;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  margin-left: 2rem;
}
.register:hover {
  background-color: #c64f18;
  color: #fff;
  box-shadow: 0 0 10px #2a221f;
}

/*  First Page  */
section.f-page {
  background-image: url(../image/bg.jpg);
  background-size: auto;
  background-position: center;
  height: 108vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10rem !important;
}


/* ===== Info Section ===== */
.info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  color: #fff;
  flex-wrap: wrap;
  width: 90rem;
  max-width: 1200px;
}

.info iframe {
  width: 90% ;
  margin-top: 2rem;
  margin-left: auto;
  height: 40vh;
  border-radius: 1.5rem;
  box-shadow: 0 0 1.5rem rgba(0,0,0,0.3);
}
.info iframe:hover {
  box-shadow: 0 0 2.5rem rgba(0,0,0,0.9);
  
}


.info .description {

  background: rgba(0, 0, 0, 0.6);
  height:30%;
  width: 90%;
  text-align: center;
  border-radius: 15px;
  font-size: 1.6rem;
  line-height: 1.1;
  color: #f1f1f1;
  font-weight: 400;
  margin-top:10rem;
  padding: 1.5rem;
}

.info .description strong {
  color: #ffc107;
  font-weight: 600;
}
.header .icons #menu-btn {
    display: none;
    font-size: 3rem;
  }

/* ===== Responsive ===== */
@media (max-width: 820px) {
  html {
    font-size: 45%;
  }
}
section.f-page{
  background-size:auto;
}
@media (max-width: 768px) {
  .header .icons #menu-btn {
    display: inline-block;
  }

  .navbar {
    position: absolute;
    top: 110%;
    right: -100%;
    width: 40rem;
    border-radius: .5rem;
    background: #e8e8e8;

    text-align: right;
  }
.container {
  margin: 0 1.5%;
}
  .header .navbar a {
    display: block;
    margin: 2rem;
    color: #000;
    font-weight: bold;
  }

  .header .navbar.active {
    right: 2rem;
    display: flex;
    flex-direction: column;

    transition: .4s ease-in-out;
  }

  .info {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }

  .info .description {
    width: 100%;
    font-size: 2rem;
    
    /* padding: 1.5rem; */
  }
}

@media (max-width: 400px) {
  html {
    font-size: 40%;
  }
.info .description{
  margin-top: 1.5rem;
  font-size: 2rem;
}
  .register {
    font-size: 1.5rem;
    padding: .8rem 1.5rem;
  }

  .info iframe {
    width: 100%;
  }
  .container {
  margin: 0 1.5%;
}
}

@media (max-width: 950px) and (min-width: 769px) {
    html {
    font-size: 50%;
    }
    section.f-page {
      padding: 20rem;
    }
  .info iframe {
    width: 75%;
    height: 45vh;
    margin-top: 15rem;
    margin-right: auto;
  }
  .container {
  margin: 0 1.5%;
}
  .info .description {
    width: 75%;
    height: fit-content;
    font-size: 2rem;
  
    margin-right: auto;
    margin-top: 1rem;
  }

  .navbar a {
    font-size: 1.8rem;
    margin-right: 1.5rem;
  }
}
.info .register{
    width: fit-content;
    margin: auto;
}

.title{
    text-align: center;
    font-size: 3rem;
    color: #c64f18;
    margin-bottom: 2rem;
    margin-top: 7rem;
    font-weight: bold;
}

hr{

   border: 1px solid #000000;
   width: 90%;
   margin: 0 auto;
}


.Photo-of-project .description h4 {
  font-size: 1.8rem;
  text-align: center;
  color: #c64f18;
  font-weight: 400;
  margin-right: auto;
 
}

.container {
 display: grid;
  grid-template-columns: repeat(auto-fit , minmax(35rem,1fr));
  gap: 2rem;
  margin-top: 2rem;
  
}
.container img {
  width: 100%;
  border-radius: .5rem;
  box-shadow: 0 0 1.5rem rgba(0,0,0,0.3);
  height: 30rem;
}


.container img:hover {
  box-shadow: 0 0 2.5rem rgba(0,0,0,0.9);

}
.address{
    text-align: center;
    font-size: 1.8rem;
    color: #000000;
    line-height: 1.6;
    border-radius: 2.5rem;
    background: rgba(236, 163, 16, 0.1);
   height: 45rem;
   font-weight: bold;
}
ul li{
    list-style: none;
    margin-top: 1rem;
}
.location-photo img{
    width: 100%;
    border-radius: 2.5rem;
    box-shadow: 0 0 1.5rem rgba(0,0,0,0.3);
    margin-top: 0;
    height: 45rem;
    
}
.location-photo img:hover {
  box-shadow: 0 0 2.5rem rgba(0,0,0,0.9);
  transform: scale(1);
 
}
.address:hover{
    box-shadow: 0 0 2.5rem rgba(0,0,0,0.9);
}

.type .box, .Facilities .box{
    background: rgba(236, 163, 16, 0.6);
    padding: 3rem;
    font-weight: bold;
    text-align: center;
   
    border-radius: 1rem;
    transition: all .3s ease;
    font-size: 2rem;
}
.box:hover{
    box-shadow: 0 0 2.5rem rgba(0,0,0,0.9);
}
.box i {
    color: #f36710;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.footer{
    margin-top: 5rem;
     background: rgba(11, 32, 196, 0.541);
    text-align: center;
    padding: .5rem;
    color: #fff;
    font-size: 1.6rem;
}

input{
    display: block;
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
    padding: 1rem;
}
.btn{
    margin-top: 2rem;
    padding: 1rem 2rem;
    font-size: 1.8rem;
    background-color: #e94a00;
    color: #fff;
    border-radius: .75rem;
    cursor: pointer;
    width: fit-content;
}
.btn:hover{
    background-color: #c64f18;
    box-shadow: 0 0 10px #2a221f;
}
.connect{
    font-size: 2.5rem;
    color: #000000;
    margin: 0 1rem;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10rem;
}
.connect a{
    display: block;
}
.whatsapp  i{
    margin-bottom: 4rem;
    color: #017a0d;
    margin-right: .2rem;
    font-size: 3rem;
    font-weight: bold;
}
.phone i{
    margin-bottom: 2rem;
    color: #2c09f5;
    font-size: 3rem;
    font-weight: bold;
}
span{

    font-weight: bold;
}
.credit{
    font-size: 2rem;
    color: #000000;
    margin-top: 2rem;
}

.fixed-box {
    position: fixed;
    bottom: 2rem;
    left: 50%;            
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 1rem;
    z-index: 1000;
    background: linear-gradient(135deg, #2C3E50, #4CA1AF);
    padding: .5rem;
    border-radius: 1rem;
    text-align: center;
    animation: fadeIn .2s ease forwards;
    font-weight: bold;
}

.fixed-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c09f5;
    font-size: 3rem;
    margin-right: .3rem;
}
.fixed-box a.register {
    font-size: 1.5rem;
    padding: 1rem;
    background-color: #eeeeee;
    color: #000000;
    border-radius: .75rem;
}
.fixed-box a.register:hover {
    background-color: #c64f18;
    color: #fff;
    box-shadow: 0 0 10px #2a221f;
}

.fixed-box a .fa-whatsapp{
  color: #017a0d;
}
.btn{
  margin: 0 auto;
}

@keyframes fadeIn {
      from {
        opacity: 0;
        transform: translate(-50%, 2rem); 
      }
      to {
        opacity: 1;
        transform: translate(-50%, 0.2);  
      }
    }