* {
  margin: 0;
  box-sizing: border-box;
  max-width: 100%;
}

/* Dark blue Bar */
.top-bar {
  background-color: #223740; /* dark blue  */
  position: absolute;
  height: 50px; 
  width: 70%;
  left: 0px;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 40px;
  color: white;
  font-size: 16px;
 clip-path: polygon(0 0, 0 190%, 100% 10%);
}

/* Orange bar */
.bottom-bar {
  background-color: #f7921f; /* orange */
  height: 55px;
  display: flex;
  justify-content: center;   /* center contents horizontally */
  align-items: center;       /* center vertically */
  color: white;
  font-size: 14px;
}

/* Right side (follow + icons) */
.bottom-bar .right-info {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  margin-left: auto;
  margin-right: 50px;
  font-weight: bolder;
}

.bottom-bar .right-info a {
  text-decoration: none;
  color: white;
  background-color: #223740;
  padding: 5px 10px;
  border-radius: 50%;
  border: 1px solid orange;

}
.bottom-bar .right-info a:hover
{
  background-color: #202020;
  border: 1px solid #223740;
  
}







/* Left Section */
.top-bar .left-info {
  display: flex;
  align-items: center;

}

.top-bar .left-info div {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.top-bar .left-info div i {
  color: #f7921f; /* icon color */
  margin-right: 3px;
}

.top-bar .left-info div + div {
  border-left: 2px solid #888;  /* vertical line between items */
  padding-left: 15px;  
  
}

.top-bar .left-info div a {
  color: #fff;                /* link text default */
  text-decoration: none;
  
}

.top-bar .left-info div:hover a {
  color: #f7921f;              /* hover link color */
}

 

/* Navbar */
.navbar {
  height: 100px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 0 20px;
  position: relative;
  z-index: 1000;
 
}
.logo {
  background-image: url("/images/logo.png");
  background-size: cover;
  height: 250px;
  width: 250px;
  margin-top: -70px;

}

 .border
 {
    border: 2px solid transparent;
 }
 .border:hover{
    border: 2px solid white;
 }
 .nav-logo
 {
    width: 30%;
 }
 .anchortags
 {
  margin-top: -65px;
 }
.anchortags ul {
  list-style: none;
}

li {
   position: relative;
  display: inline-block;
}

a {
  color: black;
  text-decoration: none;
  font-size: 15px;
  padding-right: 33px;
  font-weight: bolder;
}

a:hover {
  color: #f7921f;
}

.desktop-btn
{
  margin-top: -75px;
}
button {
  background-color: #f7921f;
  color: white;
  border: none;
  height: 50px;
  width: 150px;
  font-size: 20px;
  border-radius: 5px;
  margin-right: 20px;
 
}

button:hover {
  background-color: #223740;
}
  .mobile-menu
{
  display: none;
}

/* --- DROPDOWN MENU --- */
.continent {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;          /* remove default browser margin */
  padding: 0;  
  background: #fff;
  border-radius: 5px;
  min-width: 190px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 99;
}

/* Dropdown links */
.continent li {
  display: block;
  background: #f7f9fb;
  border-bottom: 1px solid #e6e6e6;
}

.continent li a {
  color: #353740;
  display: block;
  padding: 10px 15px;
  font-weight: bold;
}

.continent li a:hover {
  background: #FFF3E0;
}

/* ✅ Show dropdown only when hovered */
.dropdown:hover .continent {
  display: block;
}
/* =========================
   RESPONSIVENESS
   ========================= */
@media (max-width: 1440px) {
.top-bar
{
  width: 85%;
}

  .mobile-menu
{
  display: none;
}
.nav-logo
{
  width: 25%;
}
}
/* laptop */
@media (max-width: 1024px) {

  .navbar{
  height: 80px;
}
.logo{
  width: 220px;
  height: 220px;
}
.desktop-btn {
    display: none;
  }
  
/* Navbar */
  .anchortags {
    display: none; /* hide desktop menu */
  }
 
/* Show hamburger + hide desktop links on mobile */
  /* Hide hamburger on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  margin-left: auto;
  margin-bottom: 77px;
  margin-right: 20px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #223740;
  border-radius: 2px;
}

/* Mobile menu hidden by default */
.mobile-menu {
  display: none;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 10px 0;
  font-weight: bold;
}
.mobile-menu a:hover {

    color: #f7921f;
}
  .hamburger {
    display: flex;
  }
  .mobile-menu.show {
    display: flex;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: #223740;
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    padding: 15px;
    gap: 12px;
    z-index: 999;
  }

  .mobile-menu a{
    color: #fff;
    font-size: 18px;
    text-align: left;
  }
}


/* Mobile */
@media (max-width: 768px) {

    
/* Dark blue Bar */
.top-bar {
 
  width: 75%;
}
/* Right side (follow + icons) */
.bottom-bar .right-info {
  margin-right: 20px;
}

.top-bar .left-info div a {
  margin-left: 0px;
}
.navbar
{
  height: 70px;
}
.logo
{
  min-width: 250px;
  margin-top: -80px;
}
.hamburger {
  margin-bottom: 57px;
}
}
/* Small Mobile */
@media (max-width: 480px) {
/* Hide top bar, bottom bar, h1, h4, txt */
  .top-bar,
  .bottom-bar {
    display: none !important;
  }
   .desktop-btn {
    display: none;
  }
  /* Navbar */
  .anchortags {
    display: none; /* hide desktop menu */
  }
.navbar
{
  height: 70px;
}
.logo
{
  margin-top: -80px;
  margin-left: -30px;
  width: 200px;
  height: 200px;
}
.hamburger {
  margin-bottom: 45px;
}
  .mobile-menu {
    top: auto;
}
}
@media (max-width: 425px) {

  .top-bar,
  .bottom-bar {
    display: none !important;
  }
.navbar
{
  height: 70px;
}
.logo
{
  margin-top: -80px;
  margin-left: -30px;
  width: 200px;
  height: 200px;
}

  .hamburger {
  margin-bottom: 45px;
}
}

@media (max-width: 320px) {
.navbar
{
  height: 70px;
}
.logo
{
  margin-top: -80px;
  margin-left: -30px;
  width: 150px;
  height: 150px;
}
    .hamburger {
  margin-bottom: 0px;
}
}





/* =========================
   footer section
   ========================= */


   
/* Footer */
footer {
  background: #141414;
  padding-top: 120px;
  width: 100%;
  height: 130vh;
}

/* Footer Top Section */
.footer-top {
  display: flex;
  justify-content:flex-start;
  align-items: center;
  background: #445c2f;
  padding: 20px 60px;
  flex-wrap: wrap;
  border-radius: 12px;
  max-width: 1350px;
  margin: 0 auto 40px auto;
}

.footer-top .info-box {
  display: flex;
  align-items: center;
  margin-right: 120px;
  gap: 20px;
  color: #fff;
  margin-bottom: 10px;
}
.footer-top .last h3
{
  font-family: Rubik , serif;
  font-size: 20px;
  margin-bottom: 13px;
}

.footer-top .last p{
  font-family: Abril Fatface , serif;
  font-size: 14px;
}
.footer-top .last p:hover{
  color: #f7921f;
}

.footer-top .icon-circle {
  background: #fff;
  color: #445c2f;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}
.footer-top .icon-circle i 
{
  font-size: 35px;
}

.footer-top .booking-btn {
  background: #f68b1e;
  color: #fff;
  margin-left: 190px;
  text-decoration: none;
  padding: 22px 35px;
  font-size: 20px;
  border-radius: 10px;
  font-weight: bold;
  transition: background 0.3s;
}

.footer-top .booking-btn:hover {
  background: #e07810;
}

/* Footer Container */
.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 75px;
  margin-left: 97px;
 margin-right: 97px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-top: -90px;
  margin-bottom: -70px;
 

}
.footer-logo img
{
  width: 250px;
  height: 250px;
  object-fit: cover;
 
}


.company 
{
  color: #ddd;
  line-height: 1.5;
  font-size: 18px;
  font-family: Abril Fateface , serif;
  margin-bottom: 30px;
}


/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin: 15px 0;
  margin-bottom: 35px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid #445c2f;
  border-radius: 6px;
  color: #fff;
  transition: all 0.3s;
   text-decoration: none;
}

.social-icons a i{
  font-size: 25px;
  margin-left: 35px;
}
.social-icons a:hover {
  background: #f7921f;
  border-color: #f7921f;
}

/* Subscribe */
.subscribe-text {
  font-size: 17px;
  font-family: Abril Fatface , serif;
  margin-bottom: 30px;
  color: #ddd;
}

.subscribe-form input {
  
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 20px;
  font-family: Rubik, serif;
  background-color: transparent;
  border: none;
  border: 1px solid #445c2f;
  color: #ddd;
 margin-bottom: 30px;
}

.subscribe-form button {
  background: none;
  color: #f7921f;
  width: 190px;
  font-size: 18px;
  padding: 6px 10px;
  font-family: Rubik, serif;
  margin-bottom: 90px;
  font-weight: 600px;
  border: none;
  cursor: pointer;
}

.subscribe-form button:hover{
  border: 1px solid #445c2f;
}

.footer-links 
{
  margin-left: 20px;
 
}

/* Links */
.footer-links h3 {
  margin-bottom: 50px;
  border-bottom: 2px solid #f7921f;
  display: inline-block;
  padding-bottom: 5px;
  color: #ddd;
  font-size: 22px;
  font-family: Rubik , serif;
  font-weight: 550px;
}

.footer-links ul {
  margin-left: -20px;
  list-style: none;
   display: grid;
   grid-template-columns: repeat(2, auto);
  gap: 22px;
}

.footer-links li a {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  font-family: Rubik , serif;
  font-weight: 250px;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #f7921f;
}

.footer-instagram 
{
 margin-left: 100px; 
}
/* Instagram */
.footer-instagram h3 {
  margin-bottom: 25px;
  border-bottom: 2px solid #f7921f;
  color: #fff;
  font-family: Rubik ,serif;
  font-size: 25px;
  display: inline-block;
  padding-bottom: 5px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.insta-grid img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #f7921f;
}
.insta-grid img:hover{
   border: 2px solid #445c2f;
}


.footer-strip {
  position: absolute;
  background-color: transparent; /* Dark teal like screenshot */
  margin-top: -250px;
  margin-left: 900px;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

.footer-payment-text p {
  font-size: 16px;
  font-family: Abril Fatface , serif;
  font-weight: lighter;
  line-height: 1.5;
  margin-bottom: 15px;
}

.footer-payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-payment-icons img {
  height: 32px;
  object-fit: cover;
  background: #fff;
  padding: 4px 6px;
  border-radius: 4px;
}

.footer-hold-text p {
  font-size: 16px;
  margin: 10px 0 25px;
}

.footer-cert-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
 
}

.footer-cert-icons img {
  height: 45px;
  opacity: 0.8;
  background-color: #fff;
  border: 5px solid #fff;
}



/* Bottom */
.footer-bottom {
  margin-top: 40px;
  height: 80px;
  padding: 15px 60px;
  background-color: #445c2f;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-family: Rubik, serif;
}

.footer-bottom .highlight {
  color: #f7921f;
}
.footer-bottom p{
  color: #ddd;
  margin-left: 50px;
  margin-top: 16px;
  
}

.bottom-links
{
  margin-left: 510px;
}
.bottom-links a {
  color: #fff;
  margin-left: 15px;
  text-decoration: none;
}

.bottom-links a:hover {
  color: #f7921f;
}

/* 🖥️ Large Laptop (max-width: 1440px) */
@media (max-width: 1440px) {
     
/* Footer */
footer {
  height: auto;
}
.bottom-links
{
  margin-left: 450px;
}
.footer-strip {
  margin-top: -270px;
  margin-left: 800px;

}
}
/* ============================= */
/* 💻 Laptop (max-width: 1024px) */
/* ============================= */
@media (max-width: 1024px) {
  footer {
    height: auto;
    padding-top: 80px;
  }
/* Footer Top Section */
  
  .footer-top {
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 950px;
  }

  .footer-top .info-box {
    margin-right: 60px;
  }

  .footer-top .booking-btn {
    margin-left: 0;
    padding: 18px 28px;
    font-size: 18px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin: 50px;
  }

  .footer-instagram {
    margin-left: 40px;
  }

  .footer-strip {
    margin-top: -320px;
  margin-left: 500px;
  }

  .footer-bottom {
    padding: 15px 20px;
    flex-direction: column;
    text-align: center;
  }
 .footer-bottom p {
   margin-left: -60px;
  margin-top: 16px;
 }
  .bottom-links {
    margin: 20px 0 0 0;
  }
}

/* ============================= */
/* 📱 Tablet (max-width: 786px) */
/* ============================= */
@media (max-width: 786px) {
  footer {
    height: auto;
    padding-top: 70px;
  }
  .footer-top {
    max-width: 700px;
  }

.footer-top .info-box {
 margin: 10px 20px;
  gap: 10px;
}
.footer-top .last h3
{
  font-size: 18px;
}
.footer-top .last p{
  font-size: 10px;
}
.footer-top .icon-circle {
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.footer-top .icon-circle i 
{
  font-size: 25px;
}
.footer-top .booking-btn {
  margin-left: 35px;
  padding: 16px 26px;
  font-size: 14px;
}
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    margin: 40px 30px;
  }

  .footer-instagram {
    margin-left: 0;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-strip {
      margin-top: -470px;
  margin-left: 400px;
  }
  .footer-bottom {
    text-align: center;
    font-size: 12px;
  }
 .footer-bottom p {
   margin-left: 10px;
 }
.bottom-links
{
  margin-left: 50px;
}
.bottom-links a {
  margin-left: 5px;
  font-size: 12px;
   text-align: center;
}
}

/* ============================= */
/* 📲 Large Mobile (max-width: 480px) */
/* ============================= */
@media (max-width: 480px) {
  footer {
    height: auto;
    padding-top: 60px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    max-width: 370px;
  }

.footer-top .last p{
  font-size: 14px;
}

.footer-top .booking-btn {
  margin-left: 170px;
  padding: 10px 15px;
}


  .footer-container {
    grid-template-columns: 1fr;
    margin: 40px 20px;
  }

  .footer-logo img {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
.subscribe-form button {
  margin-bottom: 20px;
  }
  .social-icons {
    justify-content: center;
  }

  .footer-links ul {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 350px;
  }

  .footer-strip {
    margin: 30px auto 0;
    text-align: start;
  margin-top: -350px;
  margin-left: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 20px 10px;
  }
.footer-bottom p {
  font-size: 12px;
}
  .bottom-links {
    margin: 10px 0 0 0;
   
  }

  .bottom-links a {
    display: inline-block;
    margin: 5px;
     font-size: 12px;
  }
}

/* ============================= */
/* 📱 Small Mobile (max-width: 320px) */
/* ============================= */
@media (max-width: 320px) {
.subscribe-form input {
  padding: 10px 20px;
}
.insta-grid img {
  width: 90%;
}
}


