body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #0b0b0b;
    color: #fff;
}

header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(180deg, #000, #111);
}

.top-bar {
    position: absolute;
    top: 10px;
    right: 10px;
}

.top-bar button {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    margin-left: 5px;
    cursor: pointer;
}

h1 {
    color: #d4af37;
}

.actions {
    margin-top: 25px;
}

.btn-gold, .btn-outline {
    padding: 12px 25px;
    margin: 5px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.btn-gold {
    background: #d4af37;
    color: #000;
}

.btn-outline {
    border: 2px solid #d4af37;
    color: #d4af37;
}

section {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #111;
    border-radius: 10px;
}

form input, form select, form button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
}

form button {
    background: #d4af37;
    color: #000;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

#price {
    font-size: 20px;
    color: #d4af37;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #aaa;
}
	
.section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  background: #111;
  border-radius: 10px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.destinations-grid div {
  background: #000;
  padding: 15px;
  border: 1px solid #222;
  color: #d4af37;
  border-radius: 6px;
}
.site-header {
  background: #000;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo strong {
  color: #d4af37;
  font-size: 22px;
}

.logo span {
  display: block;
  font-size: 12px;
  color: #aaa;
}

.nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
}

.nav a:hover {
  color: #d4af37;
}

.header-actions {
  display: flex;
  gap: 10px;
}

.btn-book {
  background: #d4af37;
  color: #000;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

#lang {
  background: #000;
  color: #d4af37;
  border: 1px solid #d4af37;
}
