* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header.hero {
  background: url('https://ospreylanding.net/asset/img/sunrise.jpg') center/cover no-repeat;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
header.basic {
  background: url('https://ospreylanding.net/asset/img/sunrise.jpg') center/cover no-repeat;
  height: 20vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  text-align: center;
}

.overlay h1 {
  font-size: 3rem;
}

.overlay .btn {
  margin-top: 20px;
  background: #ff5a5f;
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}


    .menu-toggle {
      display: none;
      cursor: pointer;
      color: white;
      font-size: 24px;
    }

    .language-toggle {
      color: white;
      background-color: #444;
      border: none;
      padding: 10px 14px;
      margin-left: 10px;
      cursor: pointer;
      font-size: 14px;
      border-radius: 4px;
    }

    .language-toggle:hover {
      background-color: #666;
    }

    @media screen and (max-width: 600px) {

      .menu-toggle {
        display: block;
      }

      .language-toggle {
        margin: 10px;
      }
    }




.amenities {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.gallery .images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery img {
  width: 32%;
  border-radius: 5px;
}

.reviews blockquote {
  font-style: italic;
  margin: 20px 0;
  background: #eee;
  padding: 15px;
  border-left: 5px solid #ff5a5f;
}

.booking form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking input, .booking textarea {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.booking button {
  background: #ff5a5f;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 1em;
}

    .navbar {
      background-color: #333;
      overflow: hidden;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
      height: 60px;
    }

    .navbar a {
      color: white;
      text-decoration: none;
      padding: 14px 20px;
      display: block;
      font-family: Arial, sans-serif;
      font-size: 16px;
    }

    .navbar a:hover {
      background-color: #575757;
    }

    .navbar .logo {
      font-weight: bold;
      font-size: 20px;
    }

    .navbar .menu {
      display: flex;
    }

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px 0;
}


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
}

/*=========================
    Navigation
=========================*/

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    padding:0 40px;
    background:#111;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
}

.logo{
    color:#fff;
    font-size:28px;
    font-weight:bold;
    text-decoration:none;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.nav-links a:hover{
    color:#d9b76a;
}

/*=========================
    Hamburger
=========================*/

.hamburger{
    display:none;
    width:34px;
    cursor:pointer;
    z-index:2001;
}

.hamburger span{
    display:block;
    height:3px;
    background:#fff;
    margin:7px 0;
    transition:.35s;
}

/* Animate to X */

.hamburger.active span:nth-child(1){
    transform:translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:translateY(-10px) rotate(-45deg);
}

/*=========================
    Fullscreen Menu
=========================*/

.fullscreen-menu{
    position:fixed;
    inset:0;
    background:#111;
    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    visibility:hidden;
    transition:.4s;

    z-index:2000;
}

.fullscreen-menu.active{
    opacity:1;
    visibility:visible;
}

.fullscreen-menu ul{
    list-style:none;
    text-align:center;
}

.fullscreen-menu li{
    margin:25px 0;
}

.fullscreen-menu a{
    color:white;
    text-decoration:none;
    font-size:40px;
    transition:.3s;
}

.fullscreen-menu a:hover{
    color:#d9b76a;
}

/*=========================
    Mobile
=========================*/

@media (max-width:991px){

    .nav-links{
        display:none;
    }

    .hamburger{
        display:block;
    }

}

/* Demo Content */

.hero{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:50px;
}
