/* Goldenfeeling — Luxury Casino Hotel / Tropical Resort */

:root {
  --bg: #faf7f1;
  --surface: #ffffff;
  --surface-2: #f4f1eb;
  --gold: #bfa030;
  --gold-light: #d6b84a;
  --text: #1e1e24;
  --muted: #6e6e75;
  --border: rgba(30, 30, 36, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--gold);
}

p, li, dd, td {
  color: var(--text);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s;
}

::selection {
  background: var(--gold);
  color: #fff;
}

a:hover, a:focus-visible {
  color: var(--gold-light);
}

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

.container {
  width: 92%;
  max-width: var(--max);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: .8rem;
  text-align: center;
}

.section-subtitle {
  color: var(--muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(250,247,241,.92);
  backdrop-filter: blur(8px);
  padding: 1rem 0;
  transition: background .3s, box-shadow .3s;
  border-bottom: 1px solid var(--border);
}

.header.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  color: var(--gold-light);
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--surface);
  padding: .2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.nav-list {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-list a {
  color: var(--text);
  font-size: .92rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .25s;
}

.nav-list a:hover::after,
.nav-list a.active::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.7rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  font-size: .9rem;
  letter-spacing: .04em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s;
}

.btn:hover, .btn:focus-visible {
  background: var(--gold);
  color: #0b0b0c;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: #0b0b0c;
  border-color: var(--gold);
}

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-light);
  transition: transform .3s, opacity .3s;
}

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(250,247,241,.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform .35s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 1.5rem;
  color: var(--text);
  font-family: Georgia, serif;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  will-change: transform;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,30,36,.45), rgba(30,30,36,.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 8rem 1.5rem 4rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
}

.hero p.lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,.92);
  margin-bottom: 1.6rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

.hero .disclaimer {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: .65rem 1.2rem;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

/* Booking form */
.booking-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: var(--shadow);
}

.booking-form, .contact-form {
  display: grid;
  gap: 1rem;
}

.booking-form {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

label {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .35rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

input, select, textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .85rem 1rem;
  border-radius: 8px;
  font: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(205,164,52,.15);
}

input:invalid:not(:placeholder-shown),
select:invalid,
textarea:invalid:not(:placeholder-shown) {
  border-color: #b94a4a;
}

.error-msg {
  color: #e68a8a;
  font-size: .8rem;
  min-height: 1.2em;
  display: block;
  margin-top: .25rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.card:hover, .card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .5s;
}

.card:hover img, .card:focus-within img {
  transform: scale(1.06);
}

.card-body {
  padding: 1.5rem;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: .5rem;
}

.card p {
  color: var(--muted);
  font-size: .94rem;
  margin-bottom: .75rem;
}

.meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

/* Feature blocks */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.feature:nth-child(even) .feature-image {
  order: 2;
}

.feature img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonial {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.testimonial q {
  display: block;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text);
}

.testimonial .author {
  color: var(--gold);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, rgba(205,164,52,.08), rgba(205,164,52,.03));
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta h2 {
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #fff;
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer h4,
.footer a:hover,
.footer a:focus-visible {
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer h4 {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: .5rem;
}

.footer a, .footer p {
  color: var(--muted);
  font-size: .92rem;
}

.footer a:hover, .footer a:focus-visible {
  color: var(--gold-light);
}

.legal-text {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}

.social {
  display: flex;
  gap: .8rem;
}

.social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: background .2s, border-color .2s, color .2s;
  color: var(--gold);
}

.social a:hover, .social a:focus-visible {
  border-color: var(--gold);
  background: var(--surface-2);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  z-index: 1005;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cookie-banner.show { display: flex; }

.cookie-banner p { margin: 0; color: var(--muted); font-size: .9rem; }

.cookie-banner .cookie-actions { display: flex; gap: .7rem; }

.cookie-toast {
  position: fixed;
  right: 1.5rem;
  bottom: 6rem;
  background: var(--gold);
  color: #0b0b0c;
  padding: .75rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  z-index: 1006;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}

.cookie-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Success popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30,30,36,.55);
  z-index: 1007;
  display: none;
  place-items: center;
  padding: 1rem;
}

.popup-overlay.show { display: grid; }

.popup {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  max-width: 420px;
  width: 100%;
  padding: 2rem;
  text-align: center;
}

.popup p { margin-bottom: 1.5rem; color: var(--text); }

.close-popup {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  position: absolute;
  top: .7rem;
  right: 1rem;
  cursor: pointer;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* Subtle glow for headings */
.glow {
  text-shadow: 0 0 28px rgba(191,160,48,.22);
}

/* Legal content */
.legal-section p,
.legal-section li {
  color: var(--muted);
  margin-bottom: .75rem;
}

.legal-section ul {
  margin-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin: 2rem 0 .75rem;
}

/* Contact details */
.contact-list dt {
  color: var(--gold);
  font-size: .85rem;
  text-transform: uppercase;
  margin-top: 1.2rem;
}

.contact-list dd {
  color: var(--text);
  margin-top: .25rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  color: var(--gold);
}

.map-link:hover { text-decoration: underline; }

/* Room detail tables */
.room-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
}

.room-table th, .room-table td {
  text-align: left;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: .92rem;
}

.room-table th { color: var(--gold); font-weight: 500; }

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }

/* Responsive */
@media (max-width: 1024px) {
  .nav-list { display: none; }
  .burger { display: flex; }
  .header .btn { display: none; }
  .hero-bg { background-attachment: scroll; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature:nth-child(even) .feature-image { order: 0; }
  .booking-form { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
