.info-card h3,
.info-content h3 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.album-img,
.album-item {
  backface-visibility: hidden;
}
.contact-link,
.dropdown-menu li a,
.footer-social-icon,
.map-link,
.nav-home-link,
.nav-link,
.social-icon {
  text-decoration: none;
}
.about-us-text ul,
.dropdown-menu,
.dropdown-menu li,
.footer-links,
.nav-menu,
.nav-menu li {
  list-style: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
body {
  font-family: Inter, sans-serif;
  line-height: 1.6;
  color: #374151;
  background:
    linear-gradient(
      135deg,
      rgba(254, 243, 199, 0.9) 0,
      rgba(254, 215, 170, 0.9) 100%
    ),
    url("images/background.png") center/cover no-repeat fixed;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(217, 119, 6, 0.1);
  transition: 0.3s;
}
.navbar {
  padding: 0 2rem;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}
.nav-actions {
  display: flex;
  align-items: right;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .nav-actions {
    position: absolute;
    top: 0.6rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .lang-switcher {
    margin: 0;
  }
  .lang-switcher select {
    padding: 0.25rem 0.6rem;
    font-size: 0.85rem;
    border-radius: 0.4rem;
  }
  .hamburger {
    position: relative;
    top: 0;
  }
}
.lang-switcher {
  margin-left: 1rem;
}
.lang-switcher select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.4rem 1.75rem 0.4rem 0.6rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    border-color 0.2s;
  background-image: linear-gradient(135deg, #d97706, #f59e0b);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lang-switcher select:hover {
  box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}
.lang-switcher select:focus {
  outline: 0;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}
.custom-select {
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  user-select: none;
}
.custom-select .selected-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  background: #fff;
  color: #374151;
  font-weight: 600;
  cursor: pointer;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    border-color 0.2s;
}
.custom-select .selected-option:focus {
  outline: 0;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}
.custom-select .selected-option img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}
.custom-select .options-list {
  position: absolute;
  z-index: 1000;
  top: calc(100% + 0.25rem);
  left: 0;
  right: 0;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.25rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-height: 240px;
  overflow: auto;
}
.custom-select.open .options-list {
  display: block;
}
.custom-select .options-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.4rem;
  color: #374151;
  cursor: pointer;
}
.custom-select .options-list li:hover,
.custom-select .options-list li[aria-selected="true"] {
  background-color: #f59e0b;
  color: #fff;
}
.custom-select .options-list img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}
.lang-switcher select {
  display: none !important;
}
@media (max-width: 768px) {
  .custom-select .selected-option {
    padding: 0.55rem 0.7rem;
  }
  .custom-select .options-list {
    max-height: 50vh;
  }
  .custom-select .options-list li {
    padding: 0.6rem 0.65rem;
  }
  .custom-select .options-list img,
  .custom-select .selected-option img {
    width: 20px;
    height: 14px;
  }
}
.logo h1,
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #92400e;
  cursor: pointer;
  transition: color 0.3s;
}
.info-card p,
.nav-arrow i,
.nav-link {
  font-size: 0.875rem;
}
.bar,
.nav-link {
  transition: 0.3s;
}
.logo h1:hover,
.logo-text:hover {
  color: #78350f;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-link {
  color: #374151;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
  position: relative;
  z-index: 1001;
}
.hamburger:hover {
  background-color: rgba(217, 119, 6, 0.1);
}
.bar {
  width: 100%;
  height: 4px;
  background-color: #374151;
  border-radius: 2px;
}
.discover-btn,
.image-wrapper {
  overflow: hidden;
  position: relative;
}
.main-content {
  padding-top: 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
  padding-left: 2rem;
}
.welcome-section {
  animation: 0.8s ease-out slideInLeft;
}
.welcome-content {
  margin-bottom: 2rem;
}
.welcome-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cursor {
  animation: 1s infinite blink;
}
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  100%,
  51% {
    opacity: 0;
  }
}
.welcome-description {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
  opacity: 0;
  animation: 0.6s ease-out 1.5s forwards fadeInUp;
}
.discover-btn {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
  opacity: 0;
  animation: 0.6s ease-out 2s forwards fadeInUp;
}
.discover-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  transition: left 0.3s;
  z-index: -1;
}
.discover-btn:hover {
  transform: scale(1.05);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.discover-btn:hover::before,
.dropdown-menu li a:hover::before {
  left: 0;
}
.discover-btn:active,
.social-icon:active {
  transform: scale(0.98);
}
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0;
  animation: 0.3s ease-out 1.5s forwards fadeInUp;
}
.info-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}
.info-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.info-card h3 {
  color: #92400e;
}
.info-card p {
  color: #4b5563;
}
.visual-section {
  animation: 0.8s ease-out 0.2s both slideInRight;
}
.image-showcase {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: flex-end;
  padding-right: 2rem;
}
.image-container {
  position: relative;
  flex-shrink: 0;
}
.image-wrapper {
  width: 380px;
  height: 480px;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(217, 119, 6, 0.1),
    rgba(245, 158, 11, 0.1)
  );
  pointer-events: none;
}
.image-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.indicator,
.nav-arrow {
  transition: 0.3s;
  cursor: pointer;
}
.album-item:hover .album-item-overlay,
.image-container:hover .image-controls,
.section-image:hover::before {
  opacity: 1;
}
.nav-arrow {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.nav-arrow:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.nav-arrow i {
  color: #374151;
}
.info-icon i,
.social-icon i {
  font-size: 1.25rem;
}
.image-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
}
.indicator.active,
.indicator:hover {
  background: #fff;
  transform: scale(1.2);
}
.social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.social-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, #f59e0b, transparent);
  opacity: 0;
}
.top-line {
  animation: 0.8s ease-out 1s forwards slideDown;
}
.bottom-line {
  animation: 0.8s ease-out 1.5s forwards slideUp;
}
.social-icons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 50%;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateX(30px) scale(0.8);
  position: relative;
  overflow: visible;
}
.social-icon:first-child {
  animation:
    0.8s ease-out 1.2s forwards slideInRight,
    2s ease-in-out 2s infinite pulse;
}
.social-icon:nth-child(2) {
  animation:
    0.8s ease-out 1.4s forwards slideInRight,
    2s ease-in-out 2.2s infinite pulse;
}
.social-icon:nth-child(3) {
  animation:
    0.8s ease-out 1.6s forwards slideInRight,
    2s ease-in-out 2.4s infinite pulse;
}
.social-icon:nth-child(4) {
  animation:
    0.8s ease-out 1.8s forwards slideInRight,
    2s ease-in-out 2.6s infinite pulse;
}
.social-icon:hover {
  transform: translateY(-8px) scale(1.15) rotate(5deg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: #fff;
}
.social-icon.facebook i {
  color: #1877f2;
}
.social-icon.instagram i {
  color: #e4405f;
}
.social-icon.tiktok i {
  color: #fe2c55;
}
.social-icon.whatsapp i {
  color: #25d366;
}
.mobile-social {
  display: none;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.bg-decorations {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
.decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
}
.decoration-1 {
  width: 8rem;
  height: 8rem;
  background: rgba(251, 191, 36, 0.4);
  top: 5rem;
  left: 2.5rem;
  animation: 3s ease-in-out infinite float;
}
.decoration-2 {
  width: 12rem;
  height: 12rem;
  background: rgba(251, 146, 60, 0.4);
  bottom: 5rem;
  right: 2.5rem;
  animation: 4s ease-in-out 1s infinite float;
}
.decoration-3 {
  width: 6rem;
  height: 6rem;
  background: rgba(252, 211, 77, 0.4);
  top: 50%;
  left: 25%;
  animation: 5s ease-in-out 2s infinite float;
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 35px -5px rgba(0, 0, 0, 0.2);
  }
}
.defer-anim {
  animation-play-state: paused !important;
}
.defer-anim.in-view {
  animation-play-state: running !important;
}
@keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -8px, 0);
  }
  70% {
    transform: translate3d(0, -4px, 0);
  }
  90% {
    transform: translate3d(0, -2px, 0);
  }
}
.showcase-img.fade-out {
  opacity: 0;
  transform: scale(0.9);
}
.showcase-img.fade-in {
  opacity: 1;
  transform: scale(1);
}
.loading-shimmer {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: 2s infinite shimmer;
}
@media (max-width: 1024px) {
  .content-grid {
    gap: 2rem;
    padding-left: 1rem;
  }
  .welcome-title {
    font-size: 3rem;
  }
  .image-wrapper {
    width: 320px;
    height: 400px;
  }
  .image-showcase {
    padding-right: 1rem;
  }
}
@media (max-width: 768px) {
  .nav-container {
    justify-content: flex-start;
  }
  .nav-logo {
    order: 1;
  }
  .nav-menu {
    order: 2;
    margin-left: auto;
  }
  .nav-actions {
    order: 3;
  }
  .lang-switcher {
    order: 3;
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
  }
  #hamburger {
    order: 4;
    margin-right: 0;
  }
  .lang-switcher select {
    padding: 0.3rem 0.9rem 0.3rem 0.45rem;
    font-size: 0.9rem;
  }
  .lang-switcher {
    margin-left: 0.5rem;
  }
  .lang-switcher select {
    padding: 0.35rem 1.25rem 0.35rem 0.5rem;
    font-size: 0.9rem;
  }
  .dropdown-menu {
    position: static !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: 0.3s !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: none !important;
    border-radius: 0 0 0.5rem 0.5rem !important;
    margin-top: 0.5rem !important;
    padding: 0 !important;
    border: none !important;
  }
  .dropdown.active .dropdown-menu {
    opacity: 1 !important;
    max-height: 500px !important;
    padding: 0.5rem 0 !important;
    display: block;
  }
  .dropdown-menu li {
    width: 100%;
    text-align: left;
  }
  .dropdown-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 0.75rem 1.5rem !important;
    color: #374151 !important;
    font-size: 0.9rem !important;
  }
  .dropdown-menu li a:hover {
    background-color: rgba(217, 119, 6, 0.1) !important;
    color: #d97706 !important;
    padding-left: 2rem !important;
    background: rgba(217, 119, 6, 0.05);
    transform: translateX(10px);
  }
  .dropdown .nav-link {
    position: relative;
    padding-right: 1.5rem !important;
  }
  .dropdown .nav-link::after {
    content: "▼";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    content: "▼";
    float: right;
    font-size: 0.8rem;
    transition: transform 0.3s;
  }
  .dropdown.active .nav-link::after {
    transform: translateY(-50%) rotate(180deg);
    transform: rotate(180deg);
  }
  .nav-menu.active {
    transform: translateX(0);
    left: 0 !important;
  }
  .nav-item {
    width: 100%;
    padding: 0 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .nav-link {
    display: block;
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .hamburger,
  .nav-menu {
    display: flex !important;
  }
  .dropdown-menu,
  .nav-menu {
    border-top: 1px solid rgba(217, 119, 6, 0.1);
  }
  .dropdown-menu,
  .nav-link {
    width: 100%;
    border-radius: 0;
    margin: 0;
  }
  .content-grid,
  .info-cards {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    right: 0;
    backdrop-filter: blur(20px);
    flex-direction: column;
    transform: translateX(100%);
    position: fixed;
    left: -100%;
    top: 4rem;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: left;
    transition: left 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    gap: 0;
    z-index: 999;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
  }
  .dropdown-menu li a,
  .nav-link {
    text-align: left;
    display: flex;
    transition: 0.3s;
  }
  .dropdown-menu li:last-child a,
  .nav-item:last-child,
  .nav-link {
    border-bottom: none;
  }
  .nav-link {
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    min-height: 48px;
    position: relative;
  }
  .nav-link.active,
  .nav-link:hover {
    background: rgba(217, 119, 6, 0.1);
    color: #d97706;
    transform: translateX(5px);
  }
  .dropdown-menu {
    display: none;
    opacity: 1;
    transform: none;
    backdrop-filter: blur(10px);
  }
  .dropdown-menu li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    min-height: 44px;
    align-items: center;
  }
  .dropdown-menu li a:active {
    background: rgba(217, 119, 6, 0.1);
    transform: translateX(5px);
  }
  .content-grid {
    gap: 3rem;
    text-align: center;
    padding-left: 0;
  }
  .welcome-section {
    order: 2;
  }
  .visual-section {
    order: 1;
  }
  .welcome-title {
    font-size: 2.5rem;
  }
  .welcome-description {
    max-width: none;
  }
  .image-showcase {
    flex-direction: column;
    gap: 2rem;
    padding-right: 0;
    justify-content: center;
  }
  .social-section {
    display: none;
  }
  .mobile-social {
    display: flex;
  }
  .image-wrapper {
    width: 300px;
    height: 380px;
  }
  .info-cards {
    gap: 1rem;
  }
}
.hamburger,
.info-item,
.map-link {
  transition: 0.3s;
}
.discover-btn:focus,
.indicator:focus,
.nav-arrow:focus,
.nav-link:focus,
.social-icon:focus {
  outline: #f59e0b solid 2px;
  outline-offset: 2px;
}
.nav-link.active {
  background: rgba(217, 119, 6, 0.1);
}
.hamburger:hover {
  transform: scale(1.05);
}
.hamburger.active .bar:first-child {
  transform: translateY(9px) rotate(45deg);
  background-color: #d97706;
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: #d97706;
}
@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    position: static;
    background: 0 0;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    width: auto;
  }
  .hamburger {
    display: none !important;
  }
  .nav-link {
    position: relative;
    overflow: visible;
  }
}
.contact-form,
.dropdown-menu,
.map-link {
  backdrop-filter: blur(10px);
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #b45309, #d97706);
}
.about-us-section,
.location-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
}
.about-content,
.about-us-content,
.contact-content,
.footer-content,
.location-content {
  max-width: 1200px;
  margin: 0 auto;
}
.about-header,
.about-us-header,
.contact-header,
.location-header {
  text-align: center;
  margin-bottom: 4rem;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info,
.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.info-item:hover,
.map-container,
.map-link:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.info-item:hover {
  transform: translateY(-2px);
}
.info-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon i {
  color: #fff;
}
.info-content h3 {
  color: #1f2937;
}
.info-content p {
  color: #4b5563;
  font-size: 0.875rem;
}
.form-group label,
.map-link {
  color: #374151;
}
.map-container {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}
.contact-item,
.map-link {
  align-items: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}
.map-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.map-link {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.map-link:hover {
  background: #fff;
  transform: translateY(-1px);
  color: #d97706;
}
.map-link i {
  font-size: 0.75rem;
}
.contact-link,
.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
}
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(254, 243, 199, 0.9) 0,
    rgba(254, 215, 170, 0.9) 100%
  );
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1.5rem;
}
.contact-icon,
.submit-btn {
  display: flex;
  align-items: center;
}
.about-us-image,
.contact-form {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.contact-item:hover {
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.15);
}
.contact-icon {
  justify-content: center;
  flex-shrink: 0;
}
.contact-link {
  color: #d97706;
  transition: color 0.3s;
}
.activities-text .activities-list strong,
.contact-link:hover {
  color: #92400e;
}
.contact-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 1rem;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: 0.3s;
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.submit-btn {
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  justify-content: center;
  gap: 0.5rem;
  transition: 0.3s;
  margin-top: 1rem;
}
.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}
.submit-btn:active {
  transform: translateY(0);
}
.footer {
  background: #1f2937;
  color: #fff;
  padding: 3rem 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f59e0b;
}
.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}
.footer-logo p {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.footer-social-icon:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}
.footer-social-icon.facebook:hover {
  background: #1877f2;
}
.footer-social-icon.instagram:hover {
  background: #e4405f;
}
.footer-social-icon.tiktok:hover {
  background: #fe2c55;
}
.footer-social-icon.whatsapp:hover {
  background: #25d366;
}
.footer-social-icon i {
  color: #fff;
  font-size: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-bottom-links a,
.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-bottom-links a:hover,
.footer-links a:hover {
  color: #f59e0b;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact p {
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact i {
  color: #f59e0b;
  width: 1rem;
}
.footer-bottom {
  margin-top: 2rem;
}
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 0.875rem;
}
.footer-bottom-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .contact-section,
  .location-section {
    padding: 3rem 0;
  }
  .location-header {
    margin-bottom: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .info-icon i,
  .section-description {
    font-size: 1rem;
  }
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-links,
  .location-info {
    gap: 1rem;
  }
  .info-item {
    padding: 1rem;
  }
  .info-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .map-container iframe {
    height: 300px;
  }
  .map-overlay {
    top: 0.5rem;
    right: 0.5rem;
  }
  .map-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }
  .contact-item {
    padding: 1.5rem;
    gap: 1rem;
  }
  .contact-icon {
    width: 3rem;
    height: 3rem;
  }
  .contact-icon i {
    font-size: 1.25rem;
  }
  .contact-form {
    padding: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 2rem 1rem;
  }
  .welcome-title {
    font-size: 2rem;
  }
  .discover-btn,
  .welcome-description {
    font-size: 1rem;
  }
  .discover-btn {
    padding: 0.875rem 1.5rem;
  }
  .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .footer {
    padding: 2rem 0 1rem;
  }
}
.about-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}
.about-us-image {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  border-radius: 1rem;
  overflow: hidden;
}
.about-us-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.about-us-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}
.about-us-text p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.about-us-text ul {
  margin-top: 1.5rem;
}
.about-us-text ul li {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}
.about-us-text ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #d97706;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-menu {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transform: translateY(10px);
}
.dropdown-menu li a:hover {
  background-color: #f3f4f6;
  color: #92400e;
  transform: translateX(-5px);
}
.nav-link.active,
.nav-link:hover {
  color: #92400e;
  background-color: rgba(217, 119, 6, 0.1);
}
.nav-menu {
  gap: 1rem;
}
@media (max-width: 768px) {
  .about-us-section {
    padding: 3rem 0;
  }
  .about-us-header {
    margin-bottom: 2rem;
  }
  .about-us-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-us-image {
    padding-bottom: 60%;
  }
  .about-us-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .about-us-text p,
  .about-us-text ul li {
    font-size: 0.9rem;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s ease-in-out;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .dropdown,
  .nav-item {
    width: 100%;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
  .dropdown-menu {
    opacity: 1;
    visibility: visible;
    padding: 0 0 0 1rem;
    background: rgba(255, 255, 255, 0.8);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    position: static;
    width: 100%;
    box-shadow: none;
    border-top: 1px solid rgba(217, 119, 6, 0.1);
    border-radius: 0;
  }
  .nav-item:hover .dropdown-menu {
    max-height: 200px;
  }
  .dropdown-menu li a {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
  .dropdown:hover .dropdown-menu {
    transform: translateY(0);
  }
}
.about-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(254, 243, 199, 0.3) 0,
    rgba(254, 215, 170, 0.3) 100%
  );
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-radius: 2px;
}
.subsection-title::after,
.subsection-title::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  content: "";
}
.section-description {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.accommodation-section,
.activities-section,
.info-section {
  margin-bottom: 4rem;
  opacity: 1;
  transform: translateY(0);
}
.subsection-title {
  font-size: 2rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}
.subsection-title::before {
  left: -50px;
}
.subsection-title::after {
  right: -50px;
}
.accommodation-grid,
.activities-grid,
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}
.accommodation-grid,
.activities-grid {
  grid-template-columns: 1fr 1fr;
}
.section-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.section-image:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.contact-item:hover,
.dropdown-menu {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.section-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(217, 119, 6, 0.1),
    rgba(245, 158, 11, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.accommodation-text,
.activities-text,
.info-text {
  padding: 1rem;
}
.accommodation-text p,
.activities-text p,
.info-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  text-align: justify;
}
.accommodation-text p:last-child,
.activities-text p:last-child,
.info-text p:last-child {
  margin-bottom: 0;
}
.activities-text .activities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.activities-text .activities-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
}
.activities-text .activities-list li + li {
  margin-top: 0.5rem;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  min-width: 180px;
  z-index: 1000;
  border-radius: 0.75rem;
  padding: 0.75rem 0;
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(217, 119, 6, 0.1);
}
.dropdown-menu li {
  margin: 0;
  padding: 0;
}
.dropdown-menu li a {
  color: #374151;
  padding: 12px 20px;
  display: block;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.dropdown-menu li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.1),
    rgba(245, 158, 11, 0.1)
  );
  transition: left 0.3s;
  z-index: -1;
}
.dropdown:hover .dropdown-menu {
  transform: translateY(0);
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.activities-image .section-image {
  height: auto;
  max-height: 400px;
  width: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.6);
  display: block;
  margin: 0 auto;
}
.activities-image .section-image:hover {
  transform: none;
  box-shadow: none;
}
.contact-simple {
  max-width: 800px;
  margin: 0 auto;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.contact-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: 0.3s;
  border: 1px solid rgba(217, 119, 6, 0.1);
}
.contact-item:hover {
  transform: translateY(-5px);
}
.album-close:hover,
.contact-item:hover .contact-icon {
  transform: scale(1.1);
}
.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: 0.3s;
}
.album-modal,
.album-overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.contact-icon i {
  color: #fff;
  font-size: 1.5rem;
}
.contact-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.5rem;
}
.contact-details p {
  font-size: 1rem;
  color: #4b5563;
  margin: 0;
}
.album-modal {
  position: fixed;
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.album-modal.active,
.lightbox.active {
  display: flex;
  opacity: 1;
}
.album-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}
.album-container,
.album-item {
  position: relative;
  overflow: hidden;
}
.album-container {
  width: 90%;
  max-width: 1200px;
  height: 90%;
  margin: auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.8);
  transition: transform 0.3s;
}
.album-modal.active .album-container,
.lightbox.active .lightbox-image {
  transform: scale(1);
}
.album-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
}
.album-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}
.album-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.album-content {
  padding: 2rem;
  height: calc(100% - 120px);
}
.album-img,
.album-item-overlay,
.lightbox,
.lightbox-container,
.lightbox-overlay {
  width: 100%;
  height: 100%;
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  grid-auto-rows: 150px;
  padding: 1rem 0;
}
.album-item {
  border-radius: 1.5rem;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
}
.album-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.album-item.large {
  grid-row: span 3;
  grid-column: span 2;
}
.album-item.medium,
.album-item:nth-child(11),
.album-item:nth-child(15),
.album-item:nth-child(18),
.album-item:nth-child(3),
.album-item:nth-child(7) {
  grid-row: span 2;
  grid-column: span 1;
}
.album-item.small {
  grid-row: span 1;
  grid-column: span 1;
}
.album-item:first-child,
.album-item:nth-child(14),
.album-item:nth-child(19),
.album-item:nth-child(9) {
  grid-row: span 3;
  grid-column: span 2;
  box-shadow: 0 8px 32px rgba(217, 119, 6, 0.15);
}
.album-img {
  object-fit: contain;
  background-color: #0b0b0b;
  transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: none;
}
.album-item:hover .album-img {
  transform: scale(1.15);
  filter: brightness(1.05) contrast(1.05) saturate(1.05);
}
.album-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(8px);
}
.album-item:hover .album-item-overlay {
  opacity: 1;
}
.album-item-overlay i {
  color: #fff;
  font-size: 2.5rem;
  transform: scale(1) rotate(0);
  transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.album-size-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.35rem 0.5rem;
  border-radius: 0.35rem;
  letter-spacing: 0.2px;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.album-item:hover .album-size-badge {
  background: rgba(0, 0, 0, 0.7);
}
.album-item:first-child:hover,
.album-item:nth-child(14):hover,
.album-item:nth-child(19):hover,
.album-item:nth-child(9):hover {
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.25);
}
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
}
.lightbox-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox-close,
.lightbox-next,
.lightbox-prev {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
}
.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s;
}
.lightbox-close {
  top: 2rem;
  right: 2rem;
  border: none;
  border-radius: 50%;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.lightbox-next,
.lightbox-prev {
  top: 50%;
  transform: translateY(-50%);
  border: none;
  border-radius: 50%;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
}
.lightbox-prev {
  left: 2rem;
}
.lightbox-next {
  right: 2rem;
}
.lightbox-next:hover,
.lightbox-prev:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .subsection-title {
    font-size: 1.5rem;
  }
  .subsection-title::after,
  .subsection-title::before {
    display: none;
  }
  .accommodation-grid,
  .activities-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .accommodation-grid {
    grid-template-columns: 1fr;
  }
  .accommodation-grid .accommodation-text {
    order: 2;
  }
  .accommodation-grid .accommodation-image {
    order: 1;
  }
  .section-image {
    height: 250px;
  }
  .activities-image .section-image {
    max-height: 300px;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-item {
    padding: 1.5rem;
  }
  .album-container {
    width: 98%;
    height: 98%;
    border-radius: 1rem;
  }
  .album-header {
    padding: 1rem;
  }
  .album-title {
    font-size: 1.25rem;
  }
  .album-content {
    padding: 0.75rem;
    max-height: calc(100vh - 120px);
  }
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    grid-auto-rows: 120px;
  }
  .album-item.large,
  .album-item:first-child,
  .album-item:nth-child(14),
  .album-item:nth-child(19),
  .album-item:nth-child(9) {
    grid-row: span 2;
    grid-column: span 2;
  }
  .album-item.medium,
  .album-item.small,
  .album-item:nth-child(11),
  .album-item:nth-child(15),
  .album-item:nth-child(18),
  .album-item:nth-child(3),
  .album-item:nth-child(7) {
    grid-row: span 1;
    grid-column: span 1;
  }
  .album-item-overlay i {
    font-size: 1.75rem;
  }
  .lightbox-container {
    padding: 0.5rem;
  }
  .lightbox-close,
  .lightbox-next,
  .lightbox-prev {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  .lightbox-close {
    top: 0.5rem;
    right: 0.5rem;
  }
  .lightbox-prev {
    left: 0.5rem;
  }
  .lightbox-next {
    right: 0.5rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .album-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.875rem;
  }
  .album-item.large {
    grid-row: span 2;
    grid-column: span 2;
  }
}
@media (min-width: 1400px) {
  .album-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
  }
  .album-container {
    max-width: 1400px;
  }
}
@media (min-width: 1200px) {
  .album-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .album-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .album-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.album-content {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    grid-auto-rows: 120px;
  }
  .album-item.large {
    grid-row: span 2;
    grid-column: span 2;
  }
  .album-item.medium,
  .album-item.small {
    grid-row: span 1;
    grid-column: span 1;
  }
  .album-item.large,
  .album-item.medium,
  .album-item.small {
    grid-row: auto !important;
    grid-column: auto !important;
  }
  .album-item {
    height: auto;
  }
  .album-img {
    width: 100%;
    height: auto;
  }
}
.album-content::-webkit-scrollbar {
  width: 8px;
}
.album-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.album-content::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.8),
    rgba(245, 158, 11, 0.8)
  );
  border-radius: 10px;
  transition: 0.3s;
}
.album-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}
.album-modal {
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.85);
}
.album-container {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0,
    rgba(248, 250, 252, 0.9) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.taghia-logo {
  height: 40px;
  width: auto;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 4px;
  margin-left: 0.25rem;
}
.taghia-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.3);
}
.nav-home-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.25rem 0.75rem 0.25rem 0.25rem;
  border-radius: 9999px;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}
.nav-home-link:hover {
  background: #fff;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}
.nav-home-link:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.2);
}
.nav-home-link:focus {
  outline: #f59e0b solid 2px;
  outline-offset: 2px;
  border-radius: 9999px;
}
.nav-home-link .taghia-logo {
  margin-left: 0;
}
@media (max-width: 768px) {
  .nav-logo {
    gap: 0.5rem;
  }
  .taghia-logo {
    height: 32px;
    margin-left: 0.125rem;
  }
  .nav-home-link {
    padding: 0.2rem 0.6rem 0.2rem 0.2rem;
    gap: 0.4rem;
  }
  .logo-text {
    font-size: 1.1rem;
    line-height: 1;
  }
  .dropdown-menu {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: none !important;
  }
  .dropdown.active > .dropdown-menu {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-height: 1000px !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: none !important;
    border: 0 !important;
    margin-top: 0.5rem !important;
    padding: 0.25rem 0 !important;
    z-index: 1000 !important;
  }
  .dropdown.active > .dropdown-menu li a {
    display: block !important;
    width: 100% !important;
    padding: 0.75rem 1.5rem !important;
    text-decoration: none !important;
  }
}
@media (max-width: 480px) {
  .nav-home-link {
    padding: 0.15rem 0.4rem 0.15rem 0.15rem;
    gap: 0.3rem;
  }
  .nav-logo {
    gap: 0.375rem;
  }
  .taghia-logo {
    height: 28px;
    margin-left: 0;
  }
  .logo-text {
    font-size: 1.1rem;
  }
}
.navbar li,
.navbar ul {
  list-style: none !important;
}
.album-grid {
  grid-auto-rows: auto !important;
  align-items: start !important;
}
.album-item,
.album-item.large,
.album-item.medium,
.album-item.small,
.album-item:first-child,
.album-item:nth-child(11),
.album-item:nth-child(14),
.album-item:nth-child(15),
.album-item:nth-child(18),
.album-item:nth-child(19),
.album-item:nth-child(3),
.album-item:nth-child(7),
.album-item:nth-child(9) {
  grid-row: auto !important;
  grid-column: auto !important;
  height: auto !important;
}
.album-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}
.album-modal .album-content {
  background: #f9f9f9;
}
.album-modal .album-grid {
  display: block !important;
  column-gap: 16px !important;
  padding: 12px 16px !important;
  background: #f9f9f9 !important;
}
.album-modal .album-item {
  break-inside: avoid !important;
  margin: 0 0 16px !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden !important;
  background: #fff !important;
  transform: translateZ(0);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
}
.album-modal .album-item:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12) !important;
}
.album-modal .album-img {
  background-color: #f9f9f9 !important;
  object-fit: contain !important;
}
@media (min-width: 1200px) {
  .album-modal .album-grid {
    column-count: 4 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .album-modal .album-grid {
    column-count: 3 !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .album-modal .album-grid {
    column-count: 2 !important;
  }
}
@media (max-width: 767px) {
  .album-modal .album-grid {
    column-count: 1 !important;
  }
}
