/*@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap");*/

/*Upright (normal)*/
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display/PlayfairDisplay-VariableFont_wght.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/*Italic*/
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display/PlayfairDisplay-Italic-VariableFont_wght.woff2') format('woff2');
  font-weight: 400 900;
  font-style: italic;
  font-display: swap;
}

/* ===== GLOBAL RESET & VARIABLES ===== */
* {
  box-sizing: border-box;
}

:root {
  --primary-green: #91bc5e;
  --primary-blue: #83c1e0;
  --dark-blue: #116a70;
  --text-dark: #222;
  --text-medium: #333;
  --text-light: #444;
  --white: #fff;
  --black: #000;
  --background-dark: #4fb6b2;
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --shadow-medium: rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  color: var(--text-dark);
}

html {
  scroll-behavior: smooth;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  text-align: center !important;
  color: #91bc5e !important;
  margin: 20px 0 30px;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
}

.logo img {
  display: block;
  height: 50px;
  width: auto;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
  margin-left: 20px;
}

.menu-toggle {
  background-color: #40d1d6;
  border: none;
  cursor: pointer;
  color: #ffffff;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 35px;
}

body.sidebar-open .menu-toggle,
body.sidebar-open .left-float,
body.sidebar-open .right-float {
  display: none !important;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #40d1d6;
  padding: 80px 40px;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  overflow-y: auto;
}

.sidebar.open {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  z-index: 3001;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.sidebar-nav a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 22px;
  text-transform: uppercase;
}

/* Submenu */
.menu-item-has-children {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.submenu {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 15px;
  padding-right: 15px;
}

.submenu.active {
  display: flex;
}

.submenu a {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.parent-link-wrapper {
  display: flex;
  align-items: baseline; 
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 15px;
}

.parent-link-text {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.2;
}

.submenu-toggle {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  padding-bottom: 2px; 
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.arrow {
  display: block;
  font-size: 20px;
  transition: transform 0.3s;
  line-height: 1;
}

.submenu-toggle:hover {
  opacity: 0.8;
}

.menu-item-has-children.active .submenu-toggle .arrow {
  transform: rotate(180deg);
}


.overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay-dark);
  display: none;
  z-index: 150;
}

.overlay.show {
  display: block;
}

body.sidebar-open {
  overflow: hidden;
}


/* ===== FLOATING BUTTONS ===== */
.left-float {
  position: fixed;
  left: 20px;
  bottom: 30px;
  z-index: 9999;
}

.enquire-tab {
  background-color: #ec3335;
  font-family: Arial, sans-serif;
  font-weight: 600;
  color: white;
  padding: 15px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  width: 90px;
  height: 90px;
  border-radius: 5px;
  text-decoration: none;
  line-height: 1.2;
  transition: background-color 0.3s ease;
}

.enquire-tab:hover {
  background-color: #f8b35c;
}

.right-float {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.whatsapp-float {
  display: block;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 60px;
  height: auto;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.back-to-top {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 9999;
  padding: 0;
  overflow: hidden;
}

.top-arrow-img {
  width: 25px;
  height: auto;
  display: block;
}

.back-to-top:hover {
  background-color: #f1f1f1;
  transform: translateY(-5px);
}

/* ===== FOOTER ===== */
.main-footer {
  background-color: var(--background-dark);
  color: var(--white);
  padding: 60px 20px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.footer-col h3 {
  font-size: 32px;
  margin-bottom: 25px;
  color: var(--white);
  margin-top: 0;
  font-weight: normal;
}

/* Contact Col */
.contact-col {
  text-align: center;
}

.contact-col p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-col a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Follow Col */
.follow-col {
  text-align: center;
}

.social-icons {
  text-align: center;
  margin-bottom: 25px;
}

.social-icons a {
  text-decoration: none !important;
  display: inline-block;
  margin: 0 5px;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s;
}

.social-icons a img:hover {
  opacity: 0.7;
}

.license-box img {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
}

/* The background overlay - Used for Global Lightboxes (e.g., Footer License) */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}

.modal-image {
  max-width: 95%;
  max-height: 95vh;
  border: 5px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
}

/* Links Col */
.links-col {
  text-align: center;
}

.links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-col ul li {
  margin-bottom: 20px;
}

.links-col ul li a {
  color: var(--black);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.footer-col.tripadvisor-col {
  display: flex;
  flex-direction: column;
  align-items: center;  
}

.payment-box {
  width: 100%;
  margin-left: 0;     
  padding-left: 0;    
  text-align: center;  
  margin-top: 15px;
}

.payment-box img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* Center widget in Contact Column */
.contact-col #TA_rated406 {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

/* Copyright */
.copyright-bar {
  color: var(--black);
  padding: 20px 0 3px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.copyright-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* =========================================
   MOBILE RESPONSIVE (GLOBAL)
   ========================================= */

/* Mobile Navigation */
@media (max-width: 768px) {
  .site-header {
    height: 60px;
    padding: 0;
  }

  .logo img {
    height: 35px;
    margin-left: 15px;
  }

  .menu-toggle {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .sidebar {
    padding: 60px 30px;
  }

  .close-menu {
    font-size: 30px;
  }

  .sidebar-nav a {
    font-size: 18px;
  }

  .submenu a {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .site-header {
    height: 50px;
  }

  .logo img {
    height: 28px;
    margin-left: 10px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .sidebar {
    padding: 50px 20px;
  }

  .sidebar-nav a {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .submenu a {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/* Typography Mobile (Global) */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin: 15px 0 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
}

/* Floating Buttons Mobile */
@media (max-width: 768px) {
  .left-float {
    left: 10px;
    bottom: 20px;
  }

  .enquire-tab {
    width: 70px;
    height: 70px;
    font-size: 11px;
    padding: 10px 8px;
  }

  .right-float {
    right: 10px;
    bottom: 80px;
    gap: 10px;
  }

  .whatsapp-float img {
    width: 50px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
  }

  .top-arrow-img {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .enquire-tab {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }

  .whatsapp-float img {
    width: 45px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
  }

  .top-arrow-img {
    width: 18px;
  }
}

/* Footer Mobile */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .contact-col p,
  .links-col ul li a {
    font-size: 15px;
  }

  .license-box img {
    max-width: 280px;
  }

  /* Center the payment box on mobile */
  .payment-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }

  .payment-box p {
    text-align: center;
    margin-bottom: 10px;
  }

  .payment-box img {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer-col h3 {
    font-size: 22px;
  }

  .contact-col p {
    font-size: 14px;
  }

  .links-col ul li {
    margin-bottom: 15px;
  }

  .links-col ul li a {
    font-size: 14px;
  }

  .copyright-bar {
    font-size: 14px;
    padding: 15px 0 3px;
  }
}

/* Global Modal Mobile Adjustments */
@media only screen and (max-width: 700px) {
  .modal-image {
    width: 100%;
  }

  .close-btn {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
}