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

body {
  background: whitesmoke;
  font-family: "Playfair Display", serif;
}

nav {
 color: rgb(6, 70, 6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 2rem;
  padding: 1.5rem 3rem;
  z-index: 10;
  box-sizing: border-box;
}

.nav-logo{
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.nav-logo-img{
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 60%;
}


.nav-logo-text {
  font-family: 'Playball Regular', sans-serif;
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  
}

/* Nav links — sit on the right */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}


nav a {
  color: rgb(200, 232, 200);
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav a:hover {
  color: #a8d0ff;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('bamboo-sitting-area.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    transition:background 0.5s ease ;
}

.hero:hover .hero-overlay{
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 3rem 2rem;
    max-width: 560px;
}

.hero-title{
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-title span{
    display: inline-block;
    transition: transform 0.35s ease, color 0.35s ease;
    cursor: default;
 }

 .hero-title span:hover{
    color: white;
    transform: translateY(-5px) scale(1.05); 
 }

.hero-subtitle{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
 }   

 .hero-subtitle em{
    font-style: normal;
    display: inline-block;
    transition: color 0.3s , transform 0.3s;
    cursor: default;
 }

 .hero-subtitle em:hover{
    color: rgb(17, 91, 67);
    transform: translateY(-2px);
 }

 .hero-btn{
    padding: 16px 48px;
    background: transparent;
    color: rgb(129, 168, 129);
    border: 1.5px solid rgba(255,255,255,0.7);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
 }

 .hero-btn:hover{
    background: rgba(255,255,255,0.15);
    border-color: rgb(6, 49, 6);
    transform: translateY(-3px);
 }
 
 .hero-btn:active{
    transform: translateY(0);
 }

 /*feature section */

 .features-section{
  background: rgb(246, 237, 237);
  padding: 5rem 2rem;
  font-family: 'Playfair Display',serif;
 }

 .features-header{
  text-align: center;
  margin-bottom: 3.5rem;
 }

 

.features-title{
  font-family: 'Playball Regular',sans-serif;
  font-size: 34px;
  color: rgb(4, 50, 26);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.features-subtitle{
  font-size: 15px;
  color: rgb(4, 50, 26);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.feature-card{
  background: #d9e7dc7e;
  border: 0.5px solid rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  text-align: center;
  padding:2rem 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}

.feature-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(131, 136, 141, 0.5);
}

.feature-icon{
  width:60px;
  height:60px;
  border-radius: 50%;
  display:flex;
  background:#9bbda9;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 1.2rem;
  transition: background 0.3s, transform 0.3s;
}

.feature-card:hover .feature-icon{
  background: #716f6f;
  transform: scale(1.1)rotate(-5deg);
}

.feature-name{
  font-family: 'Playball Regular',sans-serif;
  font-size:17px;
  color:rgb(21, 30, 24);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-desc{
  font-size: 13px;
  color: rgb(21, 30, 24);
  line-height: 1.7;
}



/*about section */




/*services section*/
.services-section{
  padding:5rem 2rem;
  background: rgb(145, 188, 154);
  font-family: 'Playfair Display', serif;
  padding-top: 8rem;
}

.services-header{
  text-align: center;
  margin-bottom: 3rem;
  font-size: 40px;
}

.services-tag{
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.services-title{
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: rgb(97, 117, 99);
  font-family: 700;
  margin: 0;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin:0 auto;
}

.services-card{
  background: #9bbda9;
  border:0.5px solid(255 255 255 0.08);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition:border-color 0.3s transform 0.3s;
}

.services-card:hover{
  border-color: rgba(168 208 255);
  transform:translateY(-6px)
}

.services-img-wrap{
  position: relative;
  width: 100%;
  height:180px;
  overflow: hidden;
}

.services-img-wrap img{
  width: 100%;
  height:100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.75);
}

.services-card:hover.services-img-wrap img{
  transform: scale(1.08); /*zoom on hover*/
  filter:brightness(1); /*full brightness on hover*/
}

/*dark overlay on image*/
.services-img-overlay{
  position: absolute;
  inset: 0;
  background: rgba(10,20,40,0.35);
  transition: background 0.4s;
}

.services-card:hover .services-img-overlay{
  background: rgba(10,20,40,0.1);  /*lighter on hover*/
}

.services-badge{
  position: absolute;
  top:12px;
  right:12px;
  background: rgba(10,20,40,0.75);
  color: #3e6d57;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding:4px 10px;
  border-radius: 20px;
  border: 0.5px solid rgba(168 208 255 0.3);
}

/*card body*/
.services-body{
  padding: 1.2rem 1.25rem 1.4rem;
}

.services-name{
  font-family: 'Playball Regular', sans-serif;
  font-size: 18px;
  color:rgb(13, 45, 13);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.services-desc{
  font-size:13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0 0 1rem;
}

/*price and book now row*/
.services-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services-price{
  font-size: 15px;
  color: #9bbda9;
}

.services-price span{
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 4px;
}

.services-cta{
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8d0ff;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}

.services-card:hover .services-cta{
  opacity:1;
  transform: translateX(0);
}


/*booking form section */





/*footer section*/

















 /*hamburger toggle menu */
 .hamburger{
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
 }

.hamburger span{
  display: block;
  width: 25px;
  height: 2px;
  background: rgb(209, 233, 209);
  border-radius: 2px;
  transition:all 0.3s;
 }

 .hamburger.is-open span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
 }

 .hamburger.is-open span:nth-child(2){
  opacity:0;
 }
 
 .hamburger.is-open span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
 }

 .mobile-menu{
  display: none;
  position: absolute;
  top: 70px;
  left:0;
  width:100%;
  background: rgba(9, 20, 40, 0.97);
  flex-direction: column;
  padding: 1.5rem 2rem;
  gap: 1.2rem;
  z-index:20;
 }

 .mobile-menu.open{
  display:flex;
 }

 .mobile-menu a{
  color:rgba(255,255,255,0.85);
  text-decoration: none;
  font-size:14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
  transition:color 0.3s;
 }

 .mobile-menu a:hover{
  color:#fff
 }


/*Responsive section */
