/* GoldHafen Hotel – Hauptstylesheet */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;600;700&family=Playfair+Display:wght@500;600&display=swap');

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --dark: #0f1115;
  --dark-card: #191c24;
  --dark-header: #151820;
  --dark-footer: #0b0d12;
  --text: #e6e6e6;
  --text-muted: #bbb;
}

body {
  font-family: 'Urbanist', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
}

/* ── Header ── */
header {
  background: var(--dark-header);
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.2rem;
  color: var(--gold);
  text-decoration: none;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #ddd;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(48%);
}

.hero-inner {
  max-width: 900px;
  padding: 40px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--gold-light);
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ── Sections ── */
section {
  padding: 70px 10%;
}

.section-title {
  margin-bottom: 30px;
  font-size: 1.9rem;
  color: var(--gold-light);
}

/* ── Cards ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.card {
  background: var(--dark-card);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--gold);
}

.card .price {
  margin-top: 12px;
  color: var(--gold);
}

/* ── Split ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 12px;
}

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* ── FAQ ── */
.faq-item {
  margin-bottom: 22px;
}

.faq-item h4 {
  color: var(--gold);
  margin-bottom: 6px;
}

/* ── Amenities list ── */
.amenities {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.amenities li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #ddd;
}

/* ── Contact form ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.btn {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  font-family: inherit;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--gold-light);
}

/* ── Footer ── */
footer {
  background: var(--dark-footer);
  padding: 50px 10%;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-title {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--gold);
}

footer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 850px) {
  .hero h1 { font-size: 2.3rem; }
  .split { grid-template-columns: 1fr; }
  nav { display: none; }
  section { padding: 50px 6%; }
}
