* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #4a4a4a;
  line-height: 1.6;
  background: linear-gradient(135deg, #f5f4f1 0%, #faf9f7 50%, #f0f9f7 100%);
}

.gallery-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #f0f9f7, #e8f4f0);
}

.gallery-section h2 {
  font-size: 42px;
  color: #2d5a4a;
  margin-bottom: 40px;
  font-weight: 300;
  padding-bottom: 20px;
  border-bottom: 3px solid #d4af37;
  text-align: center;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(45, 90, 74, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #e0e0e0;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(45, 90, 74, 0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(45, 90, 74, 0.9));
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px 60px;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(45, 90, 74, 0.12);
  animation: slideDown 0.6s ease-out;
  backdrop-filter: blur(10px);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #d4af37 0%, #56b4a0 50%, #c86b4a 100%) 1;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #56b4a0);
  margin: 0 auto;
  border-radius: 2px;
  animation: slideInCenter 0.8s ease-out 0.3s both;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  margin-top: 20px;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 180px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.logo-img:hover {
  transform: scale(1.08) rotate(-2deg);
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(45, 90, 74, 0.25);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  padding: 10px 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2d5a4a;
  margin: 4px 0;
  border-radius: 2px;
}

nav a {
  text-decoration: none;
  color: #a67c00;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #56b4a0, #d4af37);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

nav a:hover {
  color: #56b4a0;
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.language-selector {
  position: relative;
}

.lang-btn {
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  color: white;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.2);
}

.lang-btn:hover {
  box-shadow: 0 8px 25px rgba(45, 90, 74, 0.4);
  transform: translateY(-3px);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e8e6e2;
  border-radius: 12px;
  padding: 8px 0;
  min-width: 130px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 8px;
  backdrop-filter: blur(10px);
}

.language-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  width: 100%;
  border: none;
  background: transparent;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 12px;
  text-align: left;
  transition: all 0.2s ease;
  color: #4a4a4a;
}

.lang-option:hover {
  background: linear-gradient(
    135deg,
    rgba(45, 90, 74, 0.1),
    rgba(86, 180, 160, 0.1)
  );
  color: #2d5a4a;
  padding-left: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 50%;
  text-decoration: none;
  background: linear-gradient(135deg, #2d5a4a, #56b4a0);
  box-shadow: 0 4px 15px rgba(45, 90, 74, 0.2);
}

.contact-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(45, 90, 74, 0.3);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 0;
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-icon:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.page-header {
  padding: 100px 60px;
  background: linear-gradient(135deg, #2d5a4a 0%, #1a3a2e 50%, #0d2622 100%);
  background-size: cover;
  background-position: center;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
  position: relative;
  overflow: hidden;
}

.header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(86, 180, 160, 0.2), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.page-header h1 {
  font-size: 56px;
  color: white;
  margin-bottom: 15px;
  font-weight: 300;
  animation: slideInUp 0.8s ease-out 0.1s both;
  background: linear-gradient(135deg, #faf9f7, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.page-header p {
  font-size: 16px;
  color: rgba(250, 249, 247, 0.9);
  max-width: 600px;
  margin: 0 auto;
  animation: slideInUp 0.8s ease-out 0.2s both;
  position: relative;
  z-index: 2;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
}

section {
  margin-bottom: 1px;
}

h2 {
  font-size: 42px;
  color: #2d5a4a;
  margin-bottom: 40px;
  font-weight: 300;
  padding-bottom: 20px;
  border-bottom: 3px solid #d4af37;
}

h3 {
  font-size: 22px;
  color: #2d5a4a;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: 400;
}

p {
  font-size: 14px;
  color: #666;
  line-height: 1.85;
  margin-bottom: 20px;
  text-align: justify;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.info-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #d4af37;
  box-shadow: 0 8px 20px rgba(45, 90, 74, 0.08);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.info-box h4 {
  font-size: 16px;
  color: #2d5a4a;
  margin-bottom: 15px;
  font-weight: 700;
}

.info-box p {
  font-size: 13px;
  color: #888;
  margin: 8px 0;
  text-align: left;
}

.info-box a {
  color: #56b4a0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-box a:hover {
  color: #d4af37;
}

.map-container {
  margin: 40px 0;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 90, 74, 0.12);
  border: 3px solid rgba(212, 175, 55, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.attraction-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #56b4a0;
}

.attraction-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(45, 90, 74, 0.15);
  border-left-color: #d4af37;
}

.attraction-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
}

.attraction-card h4 {
  font-size: 16px;
  color: #2d5a4a;
  margin-bottom: 10px;
  font-weight: 700;
}

.attraction-card p {
  font-size: 13px;
  color: #888;
  margin-bottom: 15px;
  text-align: left;
}

.distance {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #56b4a0);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  header {
    padding: 14px 20px;
    position: sticky;
  }

  .logo-img {
    height: 120px;
  }

  #main-nav {
    gap: 16px;
  }

  .header-right {
    gap: 12px;
  }

  .page-header {
    padding: 72px 24px;
  }

  .container {
    padding: 56px 24px;
  }

  .info-grid,
  .attractions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  header {
    gap: 10px;
    padding: 10px 14px;
  }

  .logo-img {
    height: 78px;
  }

  .header-right {
    order: 3;
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
  }

  .contact-icon svg {
    width: 18px;
    height: 18px;
  }

  .lang-btn {
    padding: 7px 10px;
    font-size: 11px;
  }

  .page-header {
    padding: 56px 16px;
  }

  .page-header h1 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .page-header p {
    font-size: 15px;
  }

  .container {
    padding: 36px 16px;
  }

  h2 {
    font-size: clamp(28px, 7vw, 34px);
    margin-bottom: 24px;
  }

  h3 {
    margin-top: 30px;
    margin-bottom: 18px;
  }

  p {
    font-size: 14px;
    text-align: left;
  }

  .map-container {
    height: 320px;
    margin: 24px 0;
  }

  .info-grid,
  .attractions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
  }

  .info-box,
  .attraction-card {
    padding: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-item:hover {
    transform: none;
  }

  .gallery-overlay {
    transform: translateY(0);
    padding: 24px 16px 16px;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 260px;
  }

  .header-right {
    justify-content: space-between;
  }

  .lang-btn {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

:root {
  --space-inline: clamp(18px, 4vw, 60px);
}

html {
  scroll-behavior: smooth;
}

header {
  padding: 12px var(--space-inline);
  gap: 16px;
}

.logo-img {
  height: 180px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 28px);
}

.main-nav a {
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45, 90, 74, 0.3);
  border-radius: 12px;
  background: #fff;
  color: #2d5a4a;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page-header,
.container {
  padding-left: var(--space-inline);
  padding-right: var(--space-inline);
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    align-items: center;
  }

  .logo-img {
    height: 40px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 2;
  }

  .header-right {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: grid;
    gap: 0;
    border: 1px solid #e8e6e2;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f1efeb;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav.is-open {
    max-height: 460px;
    opacity: 1;
    pointer-events: auto;
  }

  .page-header h1 {
    font-size: clamp(34px, 7.8vw, 52px) !important;
  }

  .info-grid,
  .attractions-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-right {
    justify-content: center;
  }

  .language-selector {
    width: 100%;
  }

  .lang-btn {
    width: 100%;
    border-radius: 12px;
    max-width: none;
  }

  .lang-dropdown {
    left: 0;
    right: 0;
    min-width: unset;
  }

  .info-grid,
  .attractions-grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
