:root {
  --brand-orange: #dc7c11;
  --brand-orange-hover: #c36d0f;
  --brand-dark: #1e293b;
  --brand-gray: #64748b;
  --brand-cream: #fef3c7;
  --brand-green: #bb9974;
  --topbar-height: 40px;
  --navbar-height: 80px;
  --total-header-height: 120px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Arvo', serif;
}

#topbar {
  height: var(--topbar-height);
  top: 0;
}

#navbar {
  top: var(--topbar-height);
  background: linear-gradient(to bottom, #ffffff 0%, #fffbf0 100%);
  border-bottom: 2px solid rgba(220, 124, 17, 0.1);
}

#navbar > div > div {
  min-height: 80px;
}

#hero {
  height: calc(100vh - var(--total-header-height));
  margin-top: var(--total-header-height);
}

.nav-link {
  position: relative;
  transition: all 0.3s ease;
  color: var(--brand-dark);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--brand-orange);
  transform: translateY(-1px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange) 0%, var(--brand-green) 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

.nav-link.active {
  color: var(--brand-orange);
  font-weight: 600;
}

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

.nav-link-mobile {
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  font-weight: 500;
  color: var(--brand-dark);
}

.nav-link-mobile:hover {
  background-color: rgba(220, 124, 17, 0.1);
  color: var(--brand-orange);
  padding-left: 24px;
}

.mobile-dropdown-btn {
  background: none;
  text-align: left;
}

.mobile-dropdown-btn:hover {
  padding-left: 16px;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-link-mobile-sub {
  padding: 10px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: block;
  font-weight: 400;
  color: var(--brand-gray);
  font-size: 0.95rem;
}

.nav-link-mobile-sub:hover {
  background-color: rgba(220, 124, 17, 0.1);
  color: var(--brand-orange);
  padding-left: 24px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-down {
  animation: slideDown 0.3s ease-out;
}

.custom-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.custom-shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

#hero video {
  filter: brightness(0.8);
}

html {
  scroll-behavior: smooth;
}



.container {
  max-width: 1280px;
}

svg {
  transition: transform 0.2s ease;
}

a:hover svg {
  transform: scale(1.1);
}

@media (max-width: 640px) {
  :root {
    --topbar-height: 40px;
    --navbar-height: 64px;
    --total-header-height: 104px;
  }

  #topbar {
    height: 40px;
  }

  #navbar {
    top: 40px;
  }

  #navbar > div > div {
    min-height: 64px;
  }

  #hero {
    margin-top: 104px;
  }

  #mobile-menu {
    top: 104px;
  }
}

.btn-primary {
  background-color: var(--brand-orange);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--brand-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 124, 17, 0.3);
}

.destination-card {
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
}

#mobile-menu {
  transition: all 0.3s ease;
}

#mobile-menu.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(10px) translateX(-50%);
  }
}

.animate-bounce {
  animation: bounce 2s infinite;
}


.bg-orange-500 { background-color: #dc7c11; }
.text-orange-500 { color: #dc7c11; }
.hover\:bg-orange-500:hover { background-color: #dc7c11; }
.hover\:text-orange-500:hover { color: #dc7c11; }
.bg-orange-600 { background-color: #c36d0f; }
.hover\:bg-orange-600:hover { background-color: #c36d0f; }
.border-orange-500 { border-color: #dc7c11; }
.border-orange-200 { border-color: #fbcd9f; }
.bg-orange-50 { background-color: #fef3e8; }
.hover\:bg-orange-50:hover { background-color: #fef3e8; }
.text-orange-600 { color: #c36d0f; }
.text-orange-400 { color: #f79a3d; }
.hover\:text-orange-100:hover { color: #fde6d0; }
.ring-orange-500 { --tw-ring-color: #dc7c11; }
.hover\:ring-orange-500:hover { --tw-ring-color: #dc7c11; }
.hover\:shadow-orange-500\/50:hover { --tw-shadow-color: rgba(220, 124, 17, 0.5); }
.border-t-4.border-orange-500 { border-top-color: #dc7c11; }
.border-l-4.border-orange-500 { border-left-color: #dc7c11; }
.from-orange-500 { --tw-gradient-from: #dc7c11; }
.to-orange-600 { --tw-gradient-to: #c36d0f; }

        
        .modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease-in-out;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .modal-content {
            background: linear-gradient(to bottom, #ffffff, #fff7ed);
            margin: auto;
            padding: 0;
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            animation: slideIn 0.3s ease-in-out;
            position: relative;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .close-modal {
            position: sticky;
            top: 0;
            right: 0;
            float: right;
            font-size: 2rem;
            font-weight: bold;
            color: #fff;
            background: #FF6B35;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
            margin: 1rem 1rem 0 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        .close-modal:hover,
        .close-modal:focus {
            background: #e55a28;
            transform: rotate(90deg) scale(1.1);
        }

        
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        @media (max-width: 768px) {
            .parallax {
                background-attachment: scroll;
            }
        }

        
        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: #FF6B35;
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: #e55a28;
        }


.parallax-bg-zebror {
    background-image: url('images/zebror-1000px.webp');
}


main > section, body > section {
    margin-top: 0;
}

