*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f5f5f5;
  color:#222;
  line-height:1.6;
  overflow-x:hidden;
  overflow-y:auto;
}

/* WELCOME SCREEN */

.welcome-screen{
  position:fixed;
  inset:0;
  width:100%;
  height:100vh;
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('images/cover.jpg')
    center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  z-index:9999;
  color:white;
  transition:opacity 1s ease, visibility 1s ease;
}

.welcome-screen.hide{
  opacity:0;
  visibility:hidden;
  transform:scale(1.08);
}

.welcome-content{
  padding:30px;
  animation:fadeUp 1.8s ease;
}

.welcome-content img{
  width:650px;
  max-width:85%;
  margin-bottom:25px;
}

.welcome-content h1{
  font-family:'Cormorant Garamond', serif;
  font-size:72px;
  font-weight:700;
  margin-bottom:15px;
}

.welcome-content p{
  font-size:28px;
  letter-spacing:1px;
  opacity:0.9;
}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:15px 60px;
  background:rgba(0,0,0,0.15);
  backdrop-filter:blur(10px);
  z-index:1000;
}

nav{
  display:flex;
  gap:28px;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
}

nav a{
  color:white;
  text-decoration:none;
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:15px;
padding:10px 18px;
border-radius:12px;
border:1px solid rgba(255,255,255,0.08);
transition:0.3s ease;
}

nav a:hover{

  color:#facc15;
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.18);
backdrop-filter:blur(10px);
box-shadow:
0 6px 18px rgba(0,0,0,0.20);
transform:translateY(-2px);
}

/* HERO */

.hero{
  height:100vh;
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('images/cover.jpg')
    center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  padding:20px;
}

.hero-content{
  max-width:850px;
}

.hero-logo-img{
  width:520px;
  max-width:90%;
  display:block;
  margin:auto auto 30px auto;
}

.hero p{
  font-size:26px;
  margin-bottom:35px;
}

.btn{
  display:inline-block;
  margin-top:25px;
  padding:25px 35px;
  background:#0f766e;
  color:white;
  text-decoration:none;
  border-radius:50px;
  font-weight:bold;
  transition:0.5s;
}

.btn:hover{
  background:#115e59;
  transform:translateY(-3px);
}

/* ABOUT */

.about{
  padding:50px 20px;
  text-align:center;
  background:white;
}

.about h2{
  font-family:'Cormorant Garamond', serif;
  font-size:52px;
  margin-bottom:25px;
}

.about p{
  max-width:850px;
  margin:auto;
  font-size:22px;
}
/* THINGS TO DO */

.things{
  padding:50px 20px;
  background:#f8f3eb;
  text-align:center;
}

.things h2{
  font-family:'Cormorant Garamond', serif;
  font-size:52px;
  color:#111;
  margin-bottom:18px;
}

.things-intro{
  max-width:800px;
  margin:0 auto 60px;
  font-size:20px;
  color:#444;
}

.things-grid{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.thing-card{

  background:
  rgba(242,232,220,0.75);
backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
padding:25px 30px;
border-radius:28px;
box-shadow:
  0 10px 30px rgba(0,0,0,0.08);
transition:0.35s ease;
overflow:hidden;
}

.thing-card:hover{
transform:
  translateY(-10px);
background:
  rgba(230,245,235,0.92);
box-shadow:
  0 18px 45px rgba(0,0,0,0.14);
}
.thing-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:20px;
margin-bottom:22px;
transition:0.4s ease;
}
.thing-card:hover img{
transform:scale(1.05);
}
.thing-card span{
  font-size:42px;
  display:block;
  margin-bottom:18px;
}

.thing-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:32px;
  color:#0f766e;
  margin-bottom:12px;
}

.thing-card p{
  font-size:16px;
  line-height:1.7;
  color:#444;
}

@media(max-width:900px){
  .things-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .things h2{
    font-size:38px;
  }

  .things-intro{
    font-size:18px;
  }

  .things-grid{
    grid-template-columns:1fr;
  }
}








/* CARDS */

.cards{
  padding:50px 20px;
  background:#eef7f2;
  text-align:center;
}

.cards h2{
  font-family:'Cormorant Garamond', serif;
  font-size:52px;
  margin-bottom:60px;
  color:#111;
}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  max-width:1400px;
  margin:auto;
}

.card-link{
  text-decoration:none;
  color:inherit;
  display:block;
}

.card-link:visited,
.card-link:hover{
  color:inherit;
  text-decoration:none;
}

.card{
  background:rgba(242,232,220,0.75);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  padding:40px 30px;
  border-radius:28px;
  box-shadow:0 10px 30px rgba(0,0,0,0.10);
  transition:0.35s ease;
  min-height:240px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:left;
}

.card:hover{
  transform:translateY(-10px);
  background:rgba(230,245,235,0.92);
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
}

.card h3{
  font-family:'Cormorant Garamond', serif;
  color:#0f766e;
  font-size:34px;
  margin-bottom:15px;
  text-decoration:none;
}

.card p{
  color:#2f3d35;
  font-size:16px;
  line-height:1.7;
  text-decoration:none;
}

/* CONTACT */

.contact{
  padding:20px 20px;
  text-align:center;
  background:#E3F7CB;
  color:#222;
}

.contact h2{
  font-family:'Cormorant Garamond', serif;
  font-size:52px;
  margin-bottom:20px;
}

.contact p{
  font-size:22px;
}

.whatsapp{
  display:inline-block;
  margin-top:35px;
  padding:16px 38px;
  background:#325904;
  color:white;
  text-decoration:none;
  border-radius:50px;
  font-weight:bold;
  transition:0.3s;
}

.whatsapp:hover{
  transform:translateY(-3px);
}

/* FOOTER */

footer{
  text-align:center;
  padding:10px;
  background:black;
  color:white;
}

/* ANIMATION */

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
@keyframes welcomeFade{

  from{
    opacity:0;
transform:
translateY(40px)
 scale(0.96);
  }

  to{
    opacity:1;
 transform:
    translateY(0)
    scale(1);
  }

}
/* TABLET */

@media(max-width:1100px){
  .grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */

@media(max-width:768px){

  @media(max-width:768px){

  header{
    padding:12px 10px;
    overflow-x:auto;
    overflow-y:hidden;
    white-space:nowrap;
  }

  header::-webkit-scrollbar{
    display:none;
  }

  nav{
    display:flex;
    flex-wrap:nowrap;
    gap:10px;
    justify-content:flex-start;
    align-items:center;
    min-width:max-content;
  }

  nav a{
    font-size:13px;
    padding:8px 12px;
    flex:0 0 auto;
  }

}
  .hero{
    padding-top:120px;
  }

  .welcome-content img{
    width:320px;
  }

  .welcome-content h1{
    font-size:42px;
  }

  .welcome-content p{
    font-size:18px;
  }

  .hero-logo-img{
    width:320px;
  }

  .hero p{
    font-size:18px;
  }

  .about{
    padding:80px 20px;
  }

  .about h2,
  .cards h2,
  .contact h2{
    font-size:38px;
  }

  .about p,
  .contact p{
    font-size:18px;
  }

  .grid{
    grid-template-columns:1fr;
  }

  .card{
    min-height:auto;
    padding:38px 28px;
  }

  .card h3{
    font-size:42px;
  }

  .card p{
    font-size:16px;
  }
}
/* MOBILE TAP FIX */

a,
button,
input,
textarea,
select{
  -webkit-tap-highlight-color: transparent;
}

nav a:focus,
nav a:active{
  outline:none;
  background:rgba(255,255,255,0.08);
}
/* FLOATING WHATSAPP */

.floating-whatsapp{
  position:fixed;
right:25px;
  bottom:25px;
width:62px;
height:62px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
  justify-content:center;
text-decoration:none;
font-size:34px;
z-index:3000;
box-shadow:
0 10px 30px rgba(0,0,0,0.25);
transition:0.3s ease;
}

.floating-whatsapp:hover{
transform:
translateY(-5px) scale(1.08);
box-shadow:
  0 18px 40px rgba(0,0,0,0.35);
}

/* MOBILE */
@media(max-width:768px){
.floating-whatsapp{
width:56px;
height:56px;
 right:18px;
bottom:18px;
font-size:30px;
  }

}
.hero-subtitle{
  font-size:20px;
  max-width:750px;
  margin:14px auto 24px;
  line-height:1.6;
  color:inherit;
}

body.dynamic-bg .about,
body.dynamic-bg .things,
body.dynamic-bg .cards,
body.dynamic-bg .contact{
  background:var(--dynamic-bg-color) !important;
}

body.dynamic-text,
body.dynamic-text .about,
body.dynamic-text .things,
body.dynamic-text .cards,
body.dynamic-text .contact,
body.dynamic-text .card p,
body.dynamic-text .thing-card p{
  color:var(--dynamic-text-color) !important;
}
.cms-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

[data-section]{
  position:relative;
  overflow:hidden;
}

[data-section] > *:not(.cms-bg-video){
  position:relative;
  z-index:1;
}

.cms-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:16px;
}

.cms-card a{
  display:inline-block;
  margin-top:12px;
  padding:12px 22px;
  border-radius:50px;
  background:#0f766e;
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

.cms-animate.fade-up{
  animation:cmsFadeUp .8s ease both;
}

.cms-animate.zoom-in{
  animation:cmsZoomIn .8s ease both;
}

.cms-animate.slide-left{
  animation:cmsSlideLeft .8s ease both;
}

@keyframes cmsFadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes cmsZoomIn{
  from{opacity:0;transform:scale(.95)}
  to{opacity:1;transform:scale(1)}
}

@keyframes cmsSlideLeft{
  from{opacity:0;transform:translateX(40px)}
  to{opacity:1;transform:translateX(0)}
}
body:not(.cms-ready) [data-section] [data-field]{
  visibility:hidden;
}
/* CMS CARD SAME OLD ANIMATION STYLE */

.things-grid .cms-card,
.grid .cms-card{
  background:rgba(242,232,220,0.75);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  padding:25px 30px;
  border-radius:28px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.35s ease;
  overflow:hidden;
  text-align:left;
}

.things-grid .cms-card:hover,
.grid .cms-card:hover{
  transform:translateY(-10px);
  background:rgba(230,245,235,0.92);
  box-shadow:0 18px 45px rgba(0,0,0,0.14);
}

.things-grid .cms-card img,
.grid .cms-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:20px;
  margin-bottom:22px;
  transition:0.4s ease;
}

.things-grid .cms-card:hover img,
.grid .cms-card:hover img{
  transform:scale(1.05);
}

.things-grid .cms-card h3,
.grid .cms-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:32px;
  color:#0f766e;
  margin-bottom:12px;
}

.things-grid .cms-card p,
.grid .cms-card p{
  font-size:16px;
  line-height:1.7;
  color:#444;
}

.grid .cms-card{
  min-height:240px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
/* HOME FEATURED SECTIONS */

.featured-home{
  padding:70px 20px;
  text-align:center;
  background:#fff;
}

.destinations-featured{
  background:#f8f3eb;
}

.services-featured{
  background:#eef7f2;
}

.featured-home h2{
  font-family:'Cormorant Garamond', serif;
  font-size:52px;
  margin-bottom:15px;
  color:#111;
}

.featured-home > p{
  max-width:850px;
  margin:0 auto 45px;
  font-size:20px;
  color:#444;
}

.featured-grid{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.featured-card{
  display:block;
  text-align:left;
  background:rgba(242,232,220,0.75);
  border-radius:28px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  box-shadow:0 10px 30px rgba(0,0,0,0.10);
  transition:.35s ease;
}

.featured-card:hover{
  transform:translateY(-10px);
  background:rgba(230,245,235,0.95);
  box-shadow:0 18px 45px rgba(0,0,0,0.16);
}

.featured-card img{
  width:100%;
  height:230px;
  object-fit:cover;
  transition:.4s ease;
}

.featured-card:hover img{
  transform:scale(1.05);
}

.featured-card div{
  padding:24px;
}

.featured-card span{
  display:inline-block;
  margin-bottom:8px;
  color:#0f766e;
  font-weight:700;
  text-transform:capitalize;
}

.featured-card h3{
  font-family:'Cormorant Garamond', serif;
  font-size:32px;
  color:#0f766e;
  margin-bottom:8px;
}

.featured-card p{
  color:#444;
  margin-bottom:10px;
}

.featured-card strong{
  color:#111;
}

@media(max-width:900px){
  .featured-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:768px){
  .featured-home h2{
    font-size:38px;
  }

  .featured-grid{
    grid-template-columns:1fr;
  }
}
.footer-links{
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  color:inherit;
  text-decoration:none;
  opacity:.85;
  font-size:14px;
}

.footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}
