/* ===== HOVER CONTROLS (EDIT THESE ONLY) ===== */
:root {
  --hover-color: #d4af37;
  --hover-speed: 0.4s;
  --underline-height: 2px;
  --dropdown-speed: 0.4s;
}

/* ===== NAVBAR ===== */
.custom-navbar {
  background: #020024;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 5, 0.877) 0%,
    rgba(1, 1, 17, 0.911) 35%,
    rgb(0, 20, 24) 100%
  );
  padding: 2px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  font-family: "Segoe UI", sans-serif;
}


/* Nav links */
.nav-link {
  color: #ddd;
  font-size: 12px;
  font-weight: 500;
  margin: 0 14px;
  letter-spacing: 0.4px;
  position: relative;
  transition: color var(--hover-speed) ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: var(--underline-height);
  background: var(--hover-color);
  transition: width var(--hover-speed) ease;
}

.nav-link:hover {
  color: var(--hover-color);
}

.nav-link:hover::after {
  width: 100%;
}

/* Active link same as hover */
.nav-link.active {
  color: var(--hover-color) !important;
}

.nav-link.active::after {
  width: 100%;
}

/* ===== BOOK BUTTON ===== */
.book-btn {
  background: var(--hover-color);
  color: #111;
  font-weight: 600;
  padding: 10px 26px;
  letter-spacing: 1px;
  border: none;
  transition: all var(--hover-speed) ease;
}

.book-btn:hover {
  background: #f3d05e;
  color: #000 !important;
}

/* ===== HAMBURGER ICON ===== */
.custom-toggler {
  border: none;
}

.custom-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: all 0.4s ease;
}

/* ===== DROPDOWN (FIXED) ===== */
.menu-hover {
  position: relative;
}

/* Make icon clickable */
.menu-hover i {
  cursor: pointer;
  padding: 12px;
}

/* Dropdown menu */
.hover-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dropdown-speed) ease;
  z-index: 999;
}

/* Show on hover */
.menu-hover:hover .hover-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links */
.hover-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  color: #ddd;
  font-size: 12px;
  text-decoration: none;
  transition: all var(--hover-speed) ease;
}

/* REMOVE nav-link underline inside dropdown */
.hover-menu a::after {
  display: none !important;
}

.hover-menu a:hover {
  background: rgba(184, 155, 94, 0.1);
  color: var(--hover-color);
}

/* ===== HOTEL DROPDOWN ===== */
.hotel-dropdown {
  position: relative;
  display: inline-block;
  color: #ddd !important;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 520px;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(10px);
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
  z-index: 999;
}

.hotel-dropdown:hover .mega-dropdown,
.mega-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown sections */
.dropdown-section h6 {
  color: var(--hover-color);
  font-size: 13px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dropdown-section a {
  display: block;
  color: #ddd;
  font-size: 14px;
  padding: 6px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-section a:hover {
  color: var(--hover-color);
  padding-left: 6px;
}

/* Disable underline animation inside dropdown */
.mega-dropdown a::after {
  display: none !important;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #111;
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
  }

  .nav-link {
    margin: 10px 0;
  }

  .mega-dropdown {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 15px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 10px 0;
  }

  .hover-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    border: none;
    width: 100%;
  }

  .hover-menu a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .book-btn {
    width: 100%;
    margin-top: 15px;
  }
}

.social-sidebar {
  position: fixed;
  left: -5px;
  bottom: 50px;
  background: #c2c2c2c2;
  border-radius: 50px;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.social-link {
  font-size: 22px;
  text-align: center;
  transition: 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
}

/* Brand Colors */
.facebook {
  color: #1877f2 !important;
}

.instagram {
  color: #e1306c;
}

.linkedin {
  color: #0a66c2;
}

.youtube {
  color: #e60023;
}

.pinterest {
  color: #e60023;
}

.whatsapp {
  color: #002b10;
}

/* Hide on small width devices */
@media (max-width: 768px) {
  .social-sidebar {
    display: none;
  }
}

/* Hide on short height devices */
@media (max-height: 600px) {
  .social-sidebar {
    display: none;
  }
}

.footer-section {
  background: #111;
  border-top: 1px solid #eaeaea;
}

.footer-logo {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.footer-text {
  font-size: 14px;
  color: #d4d4d4;
  max-width: 320px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #d4af37;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #d7d7d7;
  font-size: 14px;
}

.footer-links a:hover {
  color: #d4af37;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 50%;
  margin-right: 8px;
  color: #6c757d;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #d4af37;
  color: #fff;
  border-color: #d4af37;
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #d7d7d7;
}

.contact-item i {
  color: #d4af37;
  font-size: 18px;
}

.copyright {
  color: #6c757d;
}

.copyright a {
  text-decoration: none;
  color: #6c757d;
}

.copyright a span {
  color: #d4af37;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .footer-text {
    max-width: 100%;
  }
}
