@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;1,100;1,300&display=swap");
@import url("https://fonts.googleapis.com/css?family=Quicksand:400,500,700&subset=latin-ext");
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quintessential&display=swap');




* {
  font-family: "Quintessential", serif; 
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;

  -webkit-transition: .2s linear;
  transition: .2s linear;
}
body{
  background:#f5f7fa;
  color:#333;
}

/* HERO */
.hero{
  position:relative;
  width:100%;
  height:80vh;
  background-repeat:no-repeat;
  background-position:center center;
  background-size:cover;  /* full fill */
  background-attachment:scroll;
  display:flex;
  align-items:flex-end;
}     

.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}
.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  padding:50px;
  max-width:900px;
}
.hero h1{
  font-size:38px;
  margin-bottom:10px;
}
.meta{
  margin-bottom:10px;
  opacity:0.9;
}
.price{
  font-size:22px;
  font-weight:600;
}
.btn{
  display:inline-block;
  margin-top:18px;
  padding:12px 28px;
  background:#ff7a00;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-weight:600;
}
.btn:hover{
  background:#e46d00;
}

/* SECTION */
.section{
  padding:60px 8%;
  background:#fff;
  margin-bottom:20px;
}
.section h2{
  font-size:28px;
  font-weight:600;
  margin-bottom:20px;
}

/* FLEX */
.flex{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}
.box{
  min-width:260px;
  flex:1;
}
.box ul{
  padding-left:20px;
}
.box li{
  margin-bottom:10px;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:15px;
}
.gallery img{
  width:100%;
  border-radius:12px;
  cursor:pointer;
  transition:0.3s;
}
.gallery img:hover{
  transform:scale(1.03);
}

/* REVIEW */
.review{
  background:#f5f7fa;
  padding:20px;
  border-radius:12px;
  margin-bottom:15px;
}

/* MAP */
iframe{
  width:100%;
  height:350px;
  border:0;
  border-radius:12px;
}

/* BOOKING */
.booking{
  background:#ff7a00;
  color:#fff;
  text-align:center;
}
.booking .btn{
  background:#fff;
  color:#ff7a00;
  margin-top:10px;
}

/* POPUP */
.popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.8);
  justify-content:center;
  align-items:center;
  z-index:999;
}
.popup img{
  max-width:90%;
  max-height:90%;
  border-radius:12px;
}
.popup span{
  position:absolute;
  top:25px;
  right:35px;
  font-size:35px;
  color:#fff;
  cursor:pointer;
}
html {
  font-size: 62.5%; /* 1rem = 10px */
}

/* GLOBAL */
body {
  font-size: 1.8rem;   /* 18px body text */
  line-height: 1.6;
  color: #333;
}

/* HERO TITLE */
.hero h1 {
  font-size: 4.8rem;   /* 48px */
  font-weight: 700;
  margin-bottom: 1rem;
}

/* META / SMALL INFO */
.meta {
  font-size: 1.5rem; /* 15px */
  opacity: 0.9;
}

/* PRICE / SUBTITLE */
.price {
  font-size: 2.4rem; /* 24px */
  font-weight: 600;
}

/* SECTION TITLE */
.section h2 {
  font-size: 3.2rem; /* 32px */
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* LIST */
.box li {
  font-size: 1.8rem; /* 18px */
  margin-bottom: 1rem;
}

/* REVIEW TEXT */
.review {
  font-size: 1.8rem; /* 18px */
  line-height: 1.6;
}

/* GALLERY CAPTION IF ANY */
.gallery p {
  font-size: 1.6rem; /* 16px */
}

/* BUTTON */
.btn {
  font-size: 1.6rem; /* 16px */
  font-weight: 600;
  padding: 1.2rem 2.8rem;
  border-radius: 3rem;
}
