﻿:root {
  --gold: #c8a037;
  --gold-deep: #ab8120;
  --yellow: #f5c542;
  --dark: #1f1f1f;
  --gray: #6b7280;
  --light-gray: #f5f6f8;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(90%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  max-width: 760px;
  margin: 0 auto 50px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: #171717;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0bc36, #b98f2b);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.86);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #000;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}

.logo-text {
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  font-size: 0.95rem;
}

.logo-text span {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
}

.hero {
  min-height: 92vh;
  background:
    linear-gradient(rgba(20, 20, 20, 0.62), rgba(20, 20, 20, 0.62)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
}

.hero-content {
  max-width: 760px;
  padding: 80px 0 150px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.17);
  border: 1px solid rgba(212, 175, 55, 0.42);
  color: var(--yellow);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  font-size: 1.05rem;
  color: #ececec;
  max-width: 660px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.search-box {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1100px);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.search-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.field input,
.field select {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-family: inherit;
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
}

.grid {
  display: grid;
  gap: 28px;
}

.destinations-grid {
  grid-template-columns: repeat(4, 1fr);
}

.packages-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.35s ease;
}

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

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-text {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.price {
  color: var(--gold-deep);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gray);
  font-size: 0.92rem;
}

.rating {
  color: var(--gold-deep);
  font-weight: 600;
}

.status-open,
.status-closed,
.status-full,
.status-cancelled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 4px 10px;
}

.status-open {
  background: rgba(16, 185, 129, 0.16);
  color: #0f7d59;
}

.status-closed,
.status-full {
  background: rgba(245, 158, 11, 0.16);
  color: #965f00;
}

.status-cancelled {
  background: rgba(239, 68, 68, 0.16);
  color: #b22929;
}

.features {
  background: var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
  font-weight: 700;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--yellow));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial h4 {
  margin-bottom: 2px;
}

.testimonial small {
  color: var(--gray);
}

.stars {
  color: var(--gold-deep);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial p {
  color: var(--gray);
  font-size: 0.96rem;
}

.cta {
  background:
    linear-gradient(rgba(31, 31, 31, 0.82), rgba(31, 31, 31, 0.82)),
    url("https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.cta p {
  color: #e6e6e6;
  max-width: 700px;
  margin: 0 auto 28px;
}

.footer {
  background: var(--dark);
  color: #d1d5db;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 35px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin-bottom: 18px;
}

.footer p,
.footer li {
  color: #c7c7c7;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 600;
}

.socials a:hover {
  background: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  text-align: center;
  font-size: 0.92rem;
  color: #a9a9a9;
}

.empty-state {
  border-radius: var(--radius);
  border: 1px dashed #d7d7d7;
  padding: 32px 16px;
  text-align: center;
  color: var(--gray);
  background: #fff;
}

.loading-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.loading-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.skeleton {
  background: linear-gradient(90deg, #f1f1f1 20%, #e9e9e9 40%, #f1f1f1 60%);
  background-size: 240% 100%;
  animation: shimmer 1.2s linear infinite;
}

.sk-media {
  height: 220px;
}

.sk-body {
  padding: 18px;
}

.sk-line {
  height: 11px;
  border-radius: 999px;
  margin-top: 10px;
}

.sk-line.wide {
  width: 88%;
}

.sk-line.mid {
  width: 64%;
}

.sk-line.short {
  width: 42%;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.section-more {
  margin-top: 24px;
  text-align: center;
}

.list-view {
  display: grid;
  gap: 18px;
}

.list-item-row {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.list-item-thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.list-item-content {
  padding: 14px 0;
}

.list-item-title {
  font-size: 1.12rem;
  margin-bottom: 6px;
}

.list-item-meta {
  color: var(--gray);
  font-size: 0.86rem;
  margin-bottom: 8px;
}

.list-item-text {
  color: var(--gray);
  font-size: 0.93rem;
}

.list-item-action {
  padding-right: 16px;
}

.page-banner {
  background: linear-gradient(rgba(20, 20, 20, 0.72), rgba(20, 20, 20, 0.72)),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  padding: 70px 0;
}

.page-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 10px;
}

.page-subtitle {
  color: #ececec;
  max-width: 760px;
}

.list-toolbar {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.list-toolbar input {
  width: min(100%, 360px);
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  font-family: inherit;
}

.list-toolbar input:focus {
  outline: none;
  border-color: var(--gold);
}

.pagination {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #333;
  font-weight: 600;
  cursor: pointer;
}

.page-btn.active {
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  color: #1d1d1d;
  border-color: transparent;
}

.page-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

@media (max-width: 1100px) {
  .destinations-grid,
  .packages-grid,
  .features-grid,
  .testimonials-grid,
  .footer-grid,
  .loading-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-item-row {
    grid-template-columns: 190px 1fr;
  }

  .list-item-action {
    grid-column: 1 / -1;
    padding: 0 16px 16px 16px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    display: none;
    background: rgba(26, 26, 26, 0.98);
    padding: 14px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar.menu-open .nav-links {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 0 140px;
  }

  .hero-content {
    padding: 40px 0 120px;
  }

  .destinations-grid,
  .packages-grid,
  .features-grid,
  .testimonials-grid,
  .footer-grid,
  .search-grid,
  .loading-grid {
    grid-template-columns: 1fr;
  }

  .search-box {
    position: static;
    transform: none;
    margin: 30px auto 0;
  }

  .section {
    padding: 70px 0;
  }

  .list-item-row {
    grid-template-columns: 1fr;
  }

  .list-item-thumb {
    height: 210px;
  }

  .list-item-content {
    padding: 0 16px 0 16px;
  }

  .list-item-action {
    padding: 0 16px 16px 16px;
  }
}
