* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;

}

/* Desktop default styles */

.container {
  display: flex;
}

/* Mobile styles */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

body {
    font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1;
  background-color: #f8f9fb;
}
h1 {
  font-size: 56px;
  font-weight: 700;
  color:#f15a24;
  line-height: 1.0;
   
}

h2 {
  
  font-size: 42px;
  font-weight: 600;
  color:#a6afb4;
     line-height: 1.5;
}

h3 {
  color:#0b3c5d;
  font-size: 20px;
  font-weight: 500;
     line-height: 1.5;
}

p {
   line-height: 1.5;
  font-size: 15px;
  font-weight: 400;
}

 /* Image logo  */
.logo img {
  height: 45px;        /* control logo size */
  width: auto;
  display: block;
}


@media (max-width: 768px) {
  h1 {
    font-size:36px;
  }

  h2 {
    font-size: 32px;
  }
}


button,
a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

               /* HEADER BACKGROUND IMAGE */

               


.hero {
  position: relative;
  min-height: 90px;   /* adjust this */
  overflow: visible;
  color: rgb(0, 0, 0);
  background-color: blue;
}


/* Slides container */
.hero-slides {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

  /* WAVE DESIGN  */

/* WAVE */
.hero-wave {
  position: absolute;
  bottom: -1px; /* removes white gap */
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 2;
}

.hero-wave img {
  width: 100%;
  display: block;
}

                /* nAVIGATION BAR CONTAINER */
.navbar {
    position: relative;
  z-index: 9999;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
    /* lOGO  */
.logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
}
 /* nAVIGATION BAR LINKS HOME/ABOUT  */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}
 /* nAVIGATION BAR LINKS HOME/ABOUT  */
.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: none;
  color: #fff8f6;
  font-weight: 500;
}
/* bOOK NOW BUTTON   */
.nav-btn {
  padding: 10px 20px;
  background: #d8d3d1;
  color: #ffffff;
  border-radius: 25px;
  font-weight: 600;
}
.nav-btn:hover {
    padding: 10px 20px;
  background: #f15a24;
  color: #ffffff;
  border-radius: 25px;
  font-weight: 600;
}

/* HERO CONTENT */
.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta {
  padding: 15px 40px;
  background: #ffb703;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 60px;
}

.why-us {
  position: relative;
  overflow: hidden;
    max-width: 1200px;
  margin: auto;
}

/* Shared background image style */
.why-bg-image {
  position: absolute;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.why-bg-image img {
  opacity: 0.20;              /* subtle watermark */
  filter: grayscale(10%);
}

/* Marcus Garvey - LEFT */
.why-bg-image.garvey {
  left: -80px;                /* push partly outside */
}

.why-bg-image.garvey img {
  width: 300px;
}

/* Bob Marley - RIGHT */
.why-bg-image.marley {
  right: -80px;
}

.why-bg-image.marley img {
  width: 280px;
}

/* Keep actual content above */
.why-us > * {
  position: relative;
  z-index: 2;
}


@media (max-width: 768px) {
  .why-bg-image {
    display: none;
  }
}





/* =========================
Mobile code
========================= */


/* Hide hamburger on desktop */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile view */
@media (max-width: 768px) {

  .hamburger {
    display: block;
    color: #fff;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

/* =========================
drop down 
========================= */
/* DROPDOWN BASE */
.dropdown {
  position: relative;
}

/* hidden by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  width: 180px;
  display: none;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
}

/* links inside dropdown */
.dropdown-menu li a {
  padding: 12px 15px;
  display: block;
  color: #fff;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #ffb703;
  color: #000;
}

/* DESKTOP HOVER */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
}


@media (max-width: 768px) {

  .dropdown-menu {
     display: none ; /* force hidden */
    position: static;
    width: 100%;
    background: transparent;
  }

  .dropdown-menu li a {
    padding: 10px;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }
}




/* =========================
   FULL IMAGE SECTION
========================= */

.full-banner{
  position:relative;
  width:100%;
  height:500px;
  overflow:hidden;
}

/* FULL IMAGE */
.full-banner img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* OVERLAY */
.banner-overlay{
  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.45);

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;
  padding:20px;

  color:#fff;
}

/* TITLE */
.banner-overlay h1{
  font-size:52px;
  margin-bottom:15px;
}

/* SUBTITLE */
.banner-overlay p{
  font-size:18px;
  max-width:700px;
  line-height:1.6;
}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:768px){

  .full-banner{
    height:350px;
  }

  .banner-overlay h1{
    font-size:32px;
  }

  .banner-overlay p{
    font-size:15px;
  }

}




/* Important Notice*/

.bg-overlay-section{
  width:100%;
  height:900px;

 

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;
  position:relative;
  color:#fff;
}

/* DARK OVERLAY */
.bg-overlay-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
}

/* CONTENT */
.bg-content{
  position:relative;
  z-index:2;
  padding:0 20px;
}

.bg-content h1{
  font-size:44px;
  margin-bottom:10px;
 color:red;
}

.bg-content p{
  font-size:16px;
  opacity:0.9;
}




.faq-hero{
position:relative;
padding:100px 20px;

background-image:url("images/Jamica-hero.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.faq-overlay{
background:rgba(44, 7, 229, 0.7);
padding:80px 20px;
}

.faq-header{
text-align:center;
margin-bottom:50px;
color:#fff;
}

.faq-header h1{
font-size:50px;
margin-bottom:10px;
}

.faq-header p{
font-size:16px;
}

.faq-container{
max-width:800px;
margin:auto;
}

.faq-item{
background:rgba(255,255,255,.08);
margin-bottom:15px;
border-radius:12px;
overflow:hidden;
backdrop-filter:blur(10px);
}

.faq-question{
width:100%;
padding:20px;
border:none;
background:none;
color:#fff;
font-size:18px;
cursor:pointer;
text-align:left;
position:relative;
}

.faq-question::after{
content:"+";
position:absolute;
right:20px;
font-size:22px;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:.4s;
padding:0 20px;
color:#fff;
}

.faq-item.active .faq-answer{
max-height:200px;
padding:20px;
}

.faq-item.active .faq-question::after{
content:"−";
}




.overlay-slider{
  padding:80px 0;
  background:#0b3c5d;
}

/* WRAP */
.slider-wrap{
  position:relative;
  width:90%;
  max-width:1200px;
  margin:auto;
  overflow:hidden;
  border-radius:20px;
}

/* TRACK */
.slider-track{
  display:flex;
  transition:transform 0.5s ease;
}

/* SLIDE */
.slide{
  min-width:100%;
  position:relative;
}

/* IMAGE */
.slide img{
  width:100%;
  height:450px;
  object-fit:cover;
  display:block;
}

/* OVERLAY */
.slide-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35); /* slight dark overlay */

  display:flex;
  justify-content:center;
  align-items:center; /* THIS centers vertically */

  text-align:center;
}

.slide-overlay h3{
  color:#fff;
  font-size:28px;
  font-weight:600;
}

/* BUTTONS */
.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.5);
  color:#fff;
  border:none;
  font-size:22px;
  padding:10px 15px;
  cursor:pointer;
  border-radius:50%;
}

.prev{
  left:15px;
}

.next{
  right:15px;
}

/* MOBILE */
@media(max-width:768px){
  .slide img{
    height:280px;
  }

  .slide-overlay h3{
    font-size:20px;
  }
}

/* Important Notice*/

.bg-overlay-section{
  width:100%;
  height:900px;

 

  display:flex;
  justify-content:center;
  align-items:center;

  text-align:center;
  position:relative;
  color:#fff;
}

/* DARK OVERLAY */
.bg-overlay-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
}

/* CONTENT */
.bg-content{
  position:relative;
  z-index:2;
  padding:0 20px;
}

.bg-content h1{
  font-size:44px;
  margin-bottom:10px;
 color:red;
}

.bg-content p{
  font-size:16px;
  opacity:0.9;
}



/* =========================
   ABOUT US (SIMPLE)
========================= */
.about-simple {
  padding: 120px 0;
  background:transparent;
}

.about-wrap {
  width: 90%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  align-items: center;
  gap: 80px;
}

/* IMAGE */
.about-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  object-fit: cover;
}

/* TEXT */
.about-text span {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffb703;
}

.about-text h2 {
  font-size: 42px;
  color: #f15a24;
  margin: 12px 0 20px;
}

.about-text p {
  font-size: 15px;
  color: #FFA501;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 32px;
  border-radius: 30px;
  background: #FFA501;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-wrap {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 32px;
  }
}


/* =========================
  CTA 
========================= */
.cta-contact {
  padding: 120px 20px;
  background: linear-gradient(135deg, #062c3f, #0b3c5d);
  color: #fff;
}

.cta-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-text p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #d9e6ef;
}

.cta-text ul {
  list-style: none;
  padding: 0;
}

.cta-text li {
  margin-bottom: 12px;
  font-size: 15px;
}

/* FORM */
.cta-form {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  color: #062c3f;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-form h3 {
  margin-bottom: 10px;
}

.cta-form input,
.cta-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  width: 100%;
}

.cta-form textarea {
  resize: none;
  height: 100px;
}

.cta-form button {
  background: #062c3f;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.cta-form button:hover {
  background: #0b3c5d;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-wrapper {
    flex-direction: column;
  }

  .cta-text h2 {
    font-size: 32px;
  }
}






/* =========================
   FOOTER
========================= */
.site-footer {
  background: #062c3f;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 140px;
}

.footer-wrap {
  display: flex;
  gap: 40px;
  flex: 1;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 180px;
}

.footer-col h4,
.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-image img {
  width: 80px;
  border-radius: 10px;
 
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
}


/* RESPONSIVE */
@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-wrap {
    justify-content: center;
  }

  .footer-image img {
    margin-top: 20px;
  }

}
