/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* GLOBAL RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  scroll-behavior:smooth;
}

body{
  color:#333;
  line-height:1.6;
}

.container{
  width:90%;
  margin:auto;
}

/* HEADER */
.header{
  position:fixed;
  width:100%;
  background:#fff;
  top:0;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
  z-index:1000;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-area img{
  width:80px;
}

nav{
  display:flex;
}

nav a{
  margin:0 15px;
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  color:#d63384;
}

.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* HERO */
.hero{
  min-height:100vh;
  background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
  url('https://images.pexels.com/photos/271618/pexels-photo-271618.jpeg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  padding-top:80px;
}

.hero h1{
  font-size:38px;
  margin-bottom:10px;
}

.highlight{
  margin-top:10px;
  font-weight:600;
  color:#ffd700;
}

.btn-primary{
  background:#d63384;
  padding:12px 25px;
  color:white;
  text-decoration:none;
  border-radius:5px;
  display:inline-block;
  margin-top:15px;
  transition:0.3s;
}

.btn-primary:hover{
  background:#b52a6a;
}

/* SECTION */
.section{
  padding:90px 0;
}

.section-title{
  text-align:center;
  margin-bottom:40px;
  font-size:30px;
}

/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.about-box{
  background:#f9f9f9;
  padding:30px;
  border-radius:10px;
  transition:0.3s;
}

.about-box:hover{
  transform:translateY(-5px);
}

/* WHAT WE OFFER */
.offer-section{
  background:#fafafa;
}

.offer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.offer-box{
  background:white;
  padding:30px;
  text-align:center;
  border-radius:10px;
  transition:0.3s;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.offer-box span{
  font-size:35px;
  display:block;
  margin-bottom:10px;
}

.offer-box:hover{
  background:#d63384;
  color:white;
  transform:translateY(-8px);
}

/* ROOMS */
.light-section{
  background:#fff;
}

.rooms-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.room-card{
  background:#f5f5f5;
  padding:40px;
  border-radius:10px;
  text-align:center;
  transition:0.3s;
}

.room-card:hover{
  background:#d63384;
  color:white;
  transform:translateY(-8px);
}

/* WELCOME SECTION */
.welcome-section{
  padding:100px 0;
  text-align:center;
  background:#fff;
}

.welcome-subtitle{
  letter-spacing:3px;
  font-size:14px;
  color:#d63384;
  margin-bottom:10px;
}

.welcome-title{
  font-size:34px;
  margin-bottom:15px;
  font-weight:700;
}

.welcome-divider{
  width:70px;
  height:3px;
  background:#d63384;
  margin:15px auto 25px auto;
  border-radius:5px;
}

.welcome-text{
  max-width:850px;
  margin:0 auto 20px auto;
  font-size:16px;
  line-height:1.9;
  color:#555;
}

.welcome-highlights{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
  margin-top:25px;
}

.highlight-box{
  background:#f8f8f8;
  padding:12px 18px;
  border-radius:30px;
  font-size:14px;
  font-weight:500;
  border:1px solid #eee;
  transition:0.3s;
}

.highlight-box:hover{
  background:#d63384;
  color:#fff;
}

/* ADDITIONAL SERVICES */
#services .offer-box span{
  font-size:40px;
  color:#d63384;
}

#services .offer-grid{
  grid-template-columns:repeat(2,1fr);
  justify-items:center;
}

/* FOUNDER */
#founder img{
  transition:0.3s;
}

#founder img:hover{
  transform:scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer{
  background:#111;
  color:#fff;
  padding:60px 0 20px 0;
}

.footer-container{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:40px;
}

.footer-box{
  flex:1;
  min-width:250px;
}

.footer-box h3{
  margin-bottom:15px;
  color:#ff4da6;
  font-size:18px;
  border-bottom:2px solid #ff4da6;
  display:inline-block;
  padding-bottom:5px;
}

.footer-box p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:10px;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:10px;
}

.footer-box ul li a{
  text-decoration:none;
  color:#ccc;
  font-size:14px;
}

.footer-box ul li a:hover{
  color:#ff4da6;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid #333;
  margin-top:40px;
  padding-top:20px;
  font-size:14px;
  color:#ccc;
}

/* RESPONSIVE */
@media(max-width:992px){
  .offer-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){

  nav{
    position:absolute;
    top:70px;
    right:0;
    background:white;
    flex-direction:column;
    width:220px;
    display:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
  }

  nav a{
    display:block;
    padding:15px;
  }

  nav.show{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .hero h1{
    font-size:26px;
  }

  .offer-grid{
    grid-template-columns:1fr;
  }

  #services .offer-grid{
    grid-template-columns:1fr;
  }

  .footer-container{
    flex-direction:column;
    gap:30px;
    align-items:center;
    text-align:center;
  }

  .footer-box{
    width:100%;
  }

}