/* Shared site styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #0e0e0e;
  color: #f4f4f4;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #d4af67;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  font-size: 14px;
  font-weight: 600;
  color: #f5f5f5;
  transition: color 0.25s ease;
}

nav a:hover {
  color: #d4af67;
}

.menu-button {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #f4f4f4;
}

main {
  padding-top: 110px;
}

.page {
  min-height: calc(100vh - 110px);
  padding: 60px 24px 60px;
}

.page.center-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 36px;
  font-size: 40px;
  font-weight: 800;
  color: #d4af67;
}

.hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.2s ease;
}

.slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 28px;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d4af67;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 4vw, 5.5rem);
  line-height: 1.02;
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 680px;
  font-size: 1.05rem;
  margin-bottom: 28px;
  color: #e4e4e4;
}

.error-page {
  min-height: calc(100vh - 110px);
  padding: 42px 24px 56px;
}

.error-hero {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 24px;
  padding: 32px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.compact-hero {
  background: rgba(20, 24, 34, 0.95);
}

.error-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(212, 175, 103, 0.14);
  color: #d4af67;
  font-size: 2.7rem;
  font-weight: 800;
  border: 1px solid rgba(212, 175, 103, 0.24);
}

.error-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.error-copy p {
  max-width: 680px;
  margin-bottom: 18px;
  color: #d8d8d8;
  font-size: 0.98rem;
  line-height: 1.75;
}

.error-copy .tagline {
  margin-bottom: 24px;
  color: #f4f1e7;
  font-size: 1rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-divider {
  width: 100%;
  max-width: 760px;
  height: 1px;
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.08);
}

.popular-destinations {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.popular-destinations h2 {
  color: #f7f5ec;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.destination-card {
  display: block;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.destination-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 103, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.destination-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.destination-icon {
  font-size: 1.5rem;
}

.destination-card h3 {
  color: #d4af67;
  margin: 0;
  font-size: 1.05rem;
}

.destination-card p {
  margin: 0;
  color: #d8d8d8;
  font-size: 0.95rem;
  line-height: 1.65;
}

.btn,
.product-btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 999px;
  background: #d4af67;
  color: #111;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.btn:hover,
.product-btn:hover {
  transform: translateY(-2px);
  background: #f1d27a;
}

.cards,
.gallery,
.product-grid,
.about-grid,
.review-grid {
  display: grid;
  gap: 24px;
}

.gallery {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card,
.project,
.product-card,
.review {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.card:hover,
.project:hover,
.product-card:hover,
.review:hover {
  transform: translateY(-6px);
  border-color: #d4af67;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.card h3,
.product-content h3,
.project-title,
.review strong {
  color: #d4af67;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.card p,
.product-description,
.about-text,
.review p {
  color: #d8d8d8;
  font-size: 0.95rem;
  line-height: 1.65;
}

.project {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: white;
  cursor: pointer;
}

.project-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 320px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-title {
  padding: 20px 24px 24px;
  font-size: 1.45rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
}

.modal-overlay.hidden {
  display: none;
}

.modal {
  width: min(1100px, 100%);
  max-height: 90vh;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

.modal-header {
  padding: 28px 32px 0;
}

.modal-header h2 {
  margin-bottom: 10px;
  color: #d4af67;
}

.modal-header p {
  color: #ccc;
}

.modal-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px 32px 0;
  overflow: hidden;
}

.modal-gallery::-webkit-scrollbar {
  display: none;
}

.modal-gallery {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal-image {
  aspect-ratio: 16 / 9;
  background-size: contain;
  background-position: center;
  border-radius: 20px;
  background-repeat: no-repeat;
}

.modal-image.main-image {
  aspect-ratio: 16 / 9;
}

.modal-thumbnails {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 32px 32px;
}

.modal-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  cursor: pointer;
}

.modal-thumbnail.active {
  border-color: #d4af67;
}

@media (max-width: 900px) {
  .modal-gallery {
    grid-template-columns: 1fr;
  }

  .modal-thumbnails {
    justify-content: center;
  }
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.about-image {
  min-height: 420px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-text p {
  margin-bottom: 20px;
}

.product-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.product-controls button {
  border: 1px solid #d4af67;
  background: #131313;
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.product-controls button:hover {
  background: #d4af67;
  color: #111;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card .product-image {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: #1c1c1c;
  color: #aeaeae;
  font-size: 1rem;
}

.product-content {
  padding: 24px 0 0;
}

.product-category,
.product-info p {
  color: #bbb;
  margin-bottom: 10px;
}

.product-price {
  color: #d4af67;
  font-weight: 700;
}

.contact-box {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 34px;
}

.contact-box h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin-bottom: 18px;
}

.contact-box p {
  margin-bottom: 24px;
  color: #dcdcdc;
}

.contact-box form {
  display: grid;
  gap: 18px;
}

.contact-box input,
.contact-box textarea,
.contact-box select {
  width: 100%;
  background: #111;
  color: #f3f3f3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 20px;
  outline: none;
}

.contact-box textarea {
  min-height: 180px;
  resize: vertical;
}

footer {
  padding: 28px 24px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #bbb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.footer-links a {
  color: #d4af67;
}

.footer-copy {
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
  }
  nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #0c0c0c;
    flex-direction: column;
    display: none;
    padding: 16px 24px 24px;
  }
  nav.show {
    display: flex;
  }
  nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .menu-button {
    display: block;
  }
  main {
    padding-top: 100px;
  }
  .about-grid,
  .product-grid,
  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 48px 18px;
  }
  .section-heading {
    font-size: 2.6rem;
  }
  .product-card {
    padding: 22px;
  }
  .contact-box {
    padding: 26px;
  }
}
