/* Zamat Kasíno Hotel — Velvet Quiet */

:root {
  --bg: #ede6de;
  --bg-deep: #e2d8cc;
  --surface: #f7f3ee;
  --text: #3d3530;
  --text-soft: #6b5f56;
  --accent: #7a5c5c;
  --accent-deep: #5c4444;
  --gold: #a8927a;
  --line: rgba(61, 53, 48, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  --max: 72rem;
  --ease: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease), opacity var(--ease);
}

a:hover {
  color: var(--accent-deep);
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(237, 230, 222, 0.95), rgba(237, 230, 222, 0));
  backdrop-filter: blur(6px);
}

.brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.75;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--accent-deep);
}

/* Hero */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem 5rem;
}

.hero-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  color: var(--text);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 28rem;
  line-height: 1.75;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.85);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 18%);
  pointer-events: none;
}

/* Sections */

.section {
  padding: 7rem 5rem;
  border-top: 1px solid var(--line);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 3rem;
  align-items: start;
}

.section-num {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  padding-top: 0.5rem;
}

.section-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.75rem;
  max-width: 22ch;
}

.section-content p {
  color: var(--text-soft);
  max-width: 38rem;
  margin-bottom: 1.25rem;
}

.section-content p:last-child {
  margin-bottom: 0;
}

.section-image {
  margin-top: 3rem;
  max-width: 42rem;
}

.section-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(0.94) saturate(0.88);
}

.section-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.35rem;
  color: var(--accent-deep);
}

/* Page hero (inner pages) */

.page-hero {
  padding: 10rem 5rem 5rem;
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.page-hero-lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 36rem;
  line-height: 1.75;
}

/* Casino layout */

.casino-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 5rem 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.casino-grid.reverse {
  direction: rtl;
}

.casino-grid.reverse > * {
  direction: ltr;
}

.casino-grid img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  filter: brightness(0.9) saturate(0.82);
}

.casino-block h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.casino-block p {
  color: var(--text-soft);
  margin-bottom: 1rem;
  max-width: 32rem;
}

.casino-note {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 5rem 7rem;
  border-top: 1px solid var(--line);
}

.casino-note p {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-soft);
  max-width: 40rem;
  line-height: 1.6;
}

/* Contact */

.contact-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 5rem 7rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
}

.contact-details h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.contact-item {
  margin-bottom: 1.75rem;
}

.contact-item dt {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-item dd {
  color: var(--text-soft);
  font-size: 1rem;
}

.contact-form {
  background: var(--surface);
  padding: 3rem;
  border: 1px solid var(--line);
}

.contact-form h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: border-color var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.btn {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--surface);
  background: var(--accent-deep);
  border: none;
  cursor: pointer;
  transition: background var(--ease);
}

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

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 7rem 2rem 3rem;
    order: 1;
  }

  .hero-image {
    order: 0;
    height: 55vh;
    min-height: 320px;
  }

  .hero-image::after {
    background: linear-gradient(to top, var(--bg) 0%, transparent 30%);
  }

  .section {
    padding: 4.5rem 2rem;
  }

  .section-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .page-hero {
    padding: 8rem 2rem 3rem;
  }

  .casino-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    padding: 0 2rem 4rem;
    gap: 2.5rem;
  }

  .casino-grid.reverse {
    direction: ltr;
  }

  .casino-note {
    padding: 3rem 2rem 4rem;
  }

  .site-header {
    padding: 1.25rem 1.5rem;
  }

  .site-nav {
    gap: 1.25rem;
    font-size: 0.62rem;
  }

  .site-footer {
    padding: 2.5rem 2rem;
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}
