@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Regular.woff2') format('woff2'),
       url('../font/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #FCF6F5;
       
  /*can't copy text*/
  user-select: none;        /* Modern browsers */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;    /* IE/Edge */
}

/* Scroll behavior */
html {
  scroll-behavior: smooth;
}


header{
width:100%;
height: 80px;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
z-index: 99;
box-shadow: 0 0 10px #000;
background-color: #111b29;
background-image: url(../Images/black-paper.png);
margin-top: -120px;
}



@media only screen and (max-width: 768px){
  header{
   width:100%;
   height: 80px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   position: fixed;
   z-index: 99;
   box-shadow: 0 0 10px #000;
   background: rgb(0, 0, 0);
  }
   i{
   color: #fff;
   cursor: pointer;
   padding-left: 0px;
   padding-top: 20px;
  }
  
  }
  
  
  
  #chk1{
    display: none;     
  }
  
  i{
    color: #fff;
    cursor: pointer;
    
  }
  
  
  header .logo{
    flex: 1; 
    margin-left: 30px;
  }
  
  header .logo img{
    float: left;
    width: 150px;
    height: auto;
    padding-top: 0px;
    margin-left: 400px;
    margin-top: 5px;
  }
    
  
  
 @media only screen and (max-width: 768px){
   header .logo img{
    float: left;
    width: 120px;
    height: auto;
    padding-top: 8px;
    margin-left: -20px;
  }  
  }


 @media only screen and (max-width: 480px){
   header .logo img{
    float: left;
    width: 120px;
    height: auto;
    padding-top: 35px;
    margin-left: -20px;
    margin-top: -30px;
  }  
  }
  
@media screen and (min-width: 1024px) and (max-width: 1440px){ 
  header .logo img{
    margin-left: 30px;
  }
}


header ul {
flex: 1.5;
display: flex;
justify-content: space-evenly;
margin-right: 350px;
}

header ul li{
list-style: none
}

header ul li a{
text-decoration: none;
color:#ffffff;
font-weight: bold;
font-size: 13px;
text-transform: uppercase;
padding: 10px;
}
header ul li a:hover{
color: #ffdcdc;
}
header .menu{
font-size: 2.5em;
display: none;
}


#header-social-media a{
  font-size: 16px;
}



/* Mobile styles */
@media only screen and (max-width: 768px) {
  header {
    justify-content: space-between;
    background-color: #111b29;
    background-image: url(../Images/black-paper.png);
  }

  header ul {
    flex-direction: column;
    position: fixed;
    top: 80px;
    right: -100%;
    background-color: #111b29;
    background-image: url(../Images/black-paper.png);
    width: 100%;
    padding: 0px;
    transition: right 0.2s ease;
    border-radius: 0 0 10px 10px;
    z-index: 999;
    height: calc(83vh - 40vh);
    align-items: center;
    margin-right: 0px; 
  }

  #chk1:checked ~ ul {
    right: 0;
  }

  header .menu {
    display: block;
    width:100px;
    text-align: center;
    margin-top: -15px;
    padding-left: 60px;
  }

  /* Allow dropdowns to expand inside mobile menu */
  header ul li:hover > .dropdown,
  header ul li:hover > .dropdown2 {
    position: relative;
    top: 0;
    right: 0;
  }

  header ul .dropdown li a,
  header ul .dropdown2 li a {
    padding-left: 20px;
  }
}


@media screen and (min-width: 1024px) and (max-width: 1440px){ 
header ul {
flex: 5;
margin-right: 50px;
}
}


ul li ul.dropdown li a{
text-transform: capitalize;
display: block;
background:rgb(0, 0, 0);
margin: 0px;
}

ul li ul.dropdown {
width:auto;
background: rgb(0, 0, 0);
position: absolute;
z-index: 999;
display: none;
margin-left: -13px;
border-radius: 0 0 10px 10px;
height: 90px;
padding: 15px;
padding-top: 7px;
}

ul li:hover ul.dropdown{
display: block;
}

ul li ul.dropdown2 li a{
    text-transform: capitalize;
    display: block;
    background:rgb(0, 0, 0);
    margin: 8px 0px;
    }
    ul li ul.dropdown2 {
    width:auto;
    background: rgb(0, 0, 0);
    position: absolute;
    z-index: 999;
    display: none;
       margin-left: -13px;
  border-radius: 0 0 10px 10px;
  height: 45px;
  padding: 15px;
  padding-top: 7px;
    }
    ul li:hover ul.dropdown2{
    display: block;
    }


.language-switcher {
  text-align: right;
  padding: 10px 20px;
  background-color: transparent; /* dark background for contrast */
}

.language-switcher a{
  display: block;
  color: white;
  font-size: 15px;
  text-align: center;
  padding: 5px;
  text-decoration: none;
}

.language-switcher .lang-btn {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  padding: 6px 12px;
  border: 1px solid #fff;
  border-radius: 20px;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.language-switcher .lang-btn:hover {
  background-color: #fff;
  color: #111;
}


@media (max-width: 600px) {
  .language-switcher {
    text-align: center;
  }

  .language-switcher .lang-btn {
    display: inline-block;
    margin: 5px;
    font-size: 13px;
  }
}



/* RIGHT SIDE (BUTTON + BURGER) */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.member-btn {
  background: transparent;
  border: 2px solid #f0c14b;
  color: #f0c14b;
  padding: 10px 20px;
  margin-top: -10px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 13.33px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.member-btn:hover {
  background-color: #f0c14b;
  color: #000;
}


/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 26px;
  color: #f0c14b;
  cursor: pointer;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }
}




footer{
  background-color: #111b29;
  background-image: url(../Images/black-paper.png);
}
.footerContainer{
  width: 100%;
  padding: 20px 20px 5px 20px ;
}
.socialIcons{
  display: flex;
  justify-content: center;
  font-size: 16px;
}



@media only screen and (max-width: 768px){
  .socialIcons{
           display: flex;
           justify-content: center;
           padding-left: 170px;
       
       }
.socialIcons a i{
    padding:  30px;
}
   
 }


.socialIcons a{
  text-decoration: none;
  padding:  7px;
  margin: 10px;
  border-radius: 50%;
}
.socialIcons a i{
  font-size: 1.5em;
  color: rgb(255, 255, 255);
  opacity: 0,9;
}

/* Hover affect on social media icon */
.socialIcons a:hover{
  background-color: #111;
  transition: 0.5s;
}
.socialIcons a:hover i{
  color: white;
  transition: 0.5s;
}

.footerNav{
  margin: 20px 0;
}
.footerNav ul{
  display: flex;
  justify-content: center;
  list-style-type: none;
}
.footerNav ul li a{
  color:white;
  margin: 20px;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.7;
  transition: 0.5s;

}
.footerNav ul li a:hover{
  opacity: 1;
}
.footerBottom{
  background-color: #111b29;
  background-image: url(../Images/black-paper.png);
  padding: 20px;
  padding-top: 0px;
  text-align: center;
}
.footerBottom p{
  color: white;
  font-size: 11px;
}
.designer{
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0px 5px;
}
@media only screen and (max-width: 768px){
  .footerNav ul{
      flex-direction: column;
  } 
  .footerNav ul li{
      width:100%;
      text-align: center;
      margin: 5px;
  }
  .socialIcons a{
      padding: 10px;
    padding-bottom: 0px;
      margin: 4px;
    margin-left: -180px;

  }
}

    
    .booking-container {
      max-width: 600px;
      background: white;
      margin: auto;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      margin-top: 120px;
      margin-bottom: 80px;
    }

    .booking-container h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #333;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    label {
      font-weight: 600;
      margin-bottom: 5px;
    }

    input, select, textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
      width: 100%;
      margin-top: 5px;
    }

    textarea {
      resize: vertical;
    }

    button {
      background-color: #111b29;
      background-image: url(../Images/black-paper.png);
      color: white;
      padding: 12px;
      font-size: 18px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    button:hover {
      background: #3b3b3b;
    }

    @media (max-width: 768px) {
      .booking-container {
        padding: 20px;
      }

      button {
        font-size: 16px;
      }
    }
  

  .search-box {
   display: flex;
   gap: 10px;
   margin-bottom: 7px;
  }

   @media (max-width: 600px) {
    .search-box {
     flex-direction: column;
    }
  }