@font-face {
    font-family: 'Laila';
    src: url(fonts/Laila-Bold.ttf);
}

@font-face {
    font-family: "OpenSans-regular";
    src: url(fonts/OpenSans-Regular.ttf);
}

@font-face {
    font-family: "OpenSans-semibold";
    src: url(fonts/OpenSans-SemiBold.ttf);
}

@font-face {
    font-family: "OpenSans-bold";
    src: url(fonts/OpenSans-Bold.ttf);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

:root{
    --primary-color: #498947;
    --banner-background-color: rgba(255, 255, 255, 0.8);
}
html {
  scroll-behavior: smooth;
}

.header{
    position: relative; 
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    background-color: var(--banner-background-color) ;
}

.header_title{
    font-family: 'Laila';
}

.header_navigation {
    padding-top: 24px;
    padding-right: 20px;
    font-family: "OpenSans-semibold";
    font-size: 20px;
    font-weight: bold;
}

.navigation_item{
    color: black;
    margin-left: 53px;
    text-decoration: none;
}

.green{
    color: var(--primary-color);
}
.bold{
  font-family: "OpenSans-bold";
}

.banner{
    height: 100vh;
    background-image: url('imgs/banner-background.jpg');
    background-size: cover;

    background-position: 75% bottom;
    background-repeat: no-repeat;
  }

.info_section{
  display: flex;
}

.call-to-action-button,
.call-to-action-button * {
  box-sizing: border-box;
}
.call-to-action-button {
  width: 229px;
  height: 60px;
  position: relative;
}
.reserve-button {
  background: #498947;
  border-radius: 10px;
  width: 229px;
  height: 60px;
  position: absolute;
  left: 0px;
  top: 0px;
}
.reserve-text {
  color: #ffffff;
  text-align: center;
  font-family: "OpenSans-Bold", sans-serif;
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  left: 91px;
  top: 16px;
}
.email-1-streamline-cyber-png {
  width: 46px;
  height: 40px;
  position: absolute;
  left: 24px;
  top: 10px;
  object-fit: cover;
}

.info_section{
  display: flex;
}

.info_section_split_left{
  width: 50%;
}
.info_section_split_right{
    width: 50%;
    background-color: #F9F9F9;
}

.written_description{
  padding-top: 40px;
  max-width: 560px;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.icon_description{
  padding-top: 40px;
  padding-left: 80px;
  padding-right: 40px;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.text_heading{
  font-family: "OpenSans-bold";
  font-size: 36px;
}

.text_description{
  text-align: left;
  font-family: "OpenSans-regular";

  font-size: 20px;
  max-width: 550px;
  line-height: 1.4;
}

.text_price{
  font-family: "OpenSans-bold";
  font-weight: bold;
  font-size: 20px;
  padding-top: 50px;
}

.icons_heading{
  padding-left: 5vw;
  font-family: "OpenSans-semibold";
  font-weight: 700;
  font-size: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, auto);
  gap: 1rem 2rem;
  width: 100%;
  max-width: 200px;
}

.feature {
  font-family: "OpenSans-regular";
  font-weight: 400;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

.icon {
  width: 42px;   
  height: 42px;
  object-fit: contain; 
}

.gallery_section{
  background-color: #ECF1F0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.gallery img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.gallery img:hover {
    transform: scale(1.03);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
}

.controls {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 60px;
    cursor: pointer;
}

.prev, .next {
    padding: 20px;
    user-select: none;
}
.map_section {
    width: 100%;
    display: flex;
    justify-content: center;
}

.map {
  padding: 40px;
    width: 1200px;
    height: 400px;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.footer{
    background-color: #ECF1F0;
    display: flex;
    justify-content: center;
    align-items: center;
     border-top-left-radius: 20px;
     border-top-right-radius: 20px;
}

.footer_items {
    max-width: 1200px;
    display: flex;
    width: 100%;
    min-height: 200px;
    padding: 40px;
}

.footer_items > div {
    flex: 1;
}

.contact {
    color: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-top-left-radius: 20px;
}

.contact h3 {
    font-family: "OpenSans-semibold";
    font-size: 32px;
    margin-bottom: 20px;
}

.contact p {
    font-family: "OpenSans-regular";
    font-size: 20;
    line-height: 1.4;
    margin: 4px 0;
}

.socials {
  max-width: 260px;
    color: #111;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: left;
    border-top-right-radius: 20px;
}
.socials_heading {
    margin:0px;
    font-family: Laila;
    font-size: 24px;
    font-weight: 600;
}

.icons{
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 10px;
}

.social_icon img {
    width:  40px;
    height: 40px;
}

@media (max-width: 1000px){
  .header_navigation{
    display: none;
  }
  .info_section{
    flex-direction: column;
  }
  .features-grid {
    gap: 1rem 0.3rem; 
  }
  .feature {
    font-size: 15px;
    gap: 0.5rem;
  }
  .icon_description{
    padding-left: 0;
  }
  .info_section_split_left {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .info_section_split_right{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .written_description{
    margin-left: unset;
    display: grid;
    width: 100%;
    padding-bottom: 3vh;
    justify-content: center;
  }
  .icon_description{
    padding-right: 150px;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin-left: unset;
    display: grid;
    width: 100%;
    padding-bottom: 3vh;
    justify-content: center;
  }
  .footer_items {
    flex-direction: column;
        display: grid;
    justify-content: center;
  }

  .contact {
      border-top-left-radius: 20px;
      border-top-right-radius:20px;
  }

  .socials {
      border-top-right-radius: 0px;
      padding-top: 30px;
  }
}