@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700;800;900&display=swap");
@import url("https://fonts.cdnfonts.com/css/algeria");

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none !important;
}


:root {
  --green: #003434;
  --bg: #eff1e9;
  --black: #26241d;
  --algerian: "Algeria", sans-serif;
  --gray: #606163;
}

::selection {
  color: var(--bg);
  background-color: var(--green);
}

/* ::-webkit-scrollbar {
  display: none;
} */

#cursour{
  width: 1vw;
  height: 1vw;
  background-color: var(--green);
  border-radius: 50%;
  position: fixed;
  z-index: 99;
}

body {
  background-color: var(--bg);
}
h1 {
  font-size: 50px;
  font-weight: bolder;
  color: var(--black);
}
#rooms {
  background: url("../images/bg.png") no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}
span {
  color: var(--green) !important;
}
nav img {
  width: 100px;
  mix-blend-mode: multiply;
}
nav a {
  color: var(--gray) !important;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 90%;
  width: 0%;
  height: 1px;
  background-color: var(--green);
  transform: translate(-50%, -50%);
  transition: all 0.8s;
}
nav a:hover::after {
  width: 100%;
}
nav ul {
  gap: 25px;
}
nav a.active {
  position: relative;
}
nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 90%;
  width: 100%;
  height: 1px;
  background-color: var(--green);
}
.primary-button {
  padding: 10px 15px;
  background-color: var(--green);
  color: var(--bg);
  border-radius: 8px;
  border: none;
}
h2 {
  font-weight: bolder;
}
h3 {
  color: var(--green);
  font-weight: 600;
}
#header {
  /* background: url('../images/banner-1.jpg') no-repeat; */
  min-height: 100vh;
  background-size: cover;
  background-position: center;
}
p {
  font-weight: 300 !important;
  color: var(--gray);
}
#header p {
  width: 60%;
}
#about {
  background-image: linear-gradient(rgba(0, 52, 52, 0.8), rgba(0, 52, 52, 0.8)),
    url(../images/home.jpg);
  background-size: cover;
  background-position: center;
  min-height: 80vh;
  background-attachment: fixed;
}
/* #contact{
    background: url('../images/contact.jpg') no-repeat;
    background-position: center;
    background-size: cover;
} */
input,
textarea,
select {
  border: none !important;
  border-radius: 0px !important;
  border-bottom: 2px solid var(--green) !important;
  background: none !important;
}
#contact i {
  color: var(--green);
}
input:focus,
textarea:focus,
select:focus {
  box-shadow: none !important;
}

.small {
  overflow: hidden;
}
.small img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.big {
  overflow: hidden;
}
.big img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
span {
  color: var(--green) !important;
}

#footer {
  margin-top: 80px;
}
#footer a {
  color: var(--gray);
  line-height: 30px;
}
#footer a:hover {
  color: var(--green);
}
#contact {
  background: url(../images/bg.png) no-repeat;
  background-size: contain;
  background-position: right;
  padding: 30px 0;
  margin: 0;
}
.icons a {
  margin-right: 10px;
  background-color: var(--green);
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  display: flex;
  border-radius: 50%;
  color: white !important;
}
#copyright {
  background-color: var(--green);
  padding: 12px;
}
#copyright a {
  color: yellow;
  font-weight: 500 !important;
  
}
#copyright p {
  color: white !important;
}

