:root {
  --bg-color: #ffffff;
  --gray-light: #f3f4f6;
  --text-dark: #111111;
  --text-muted: #555555;
  --gold-accent: #d4af37;
  --gold-hover: #b5952f;
  --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max-width: 1100px;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header.main-header {
  border-bottom: 1px solid var(--gray-light);
  background-color: var(--bg-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 24px;
  background-color: var(--gold-accent);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px; /* Small rounded */
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: center;
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(17, 17, 17, 0.4), rgba(17, 17, 17, 0.4)), url('images/photo-1582719478250-c89cae4dc85b.png');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero-content {
  max-width: 600px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 300;
}

/* Typography Headings */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--text-dark);
}

/* General Sections */
section {
  padding: 80px 0;
}

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

/* Rooms Section */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.room-card {
  background: var(--bg-color);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.room-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.room-details {
  padding: 25px;
  text-align: center;
}

.room-details h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.room-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Casino Section */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.casino-box {
  background-color: var(--bg-color);
  padding: 40px 20px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.casino-box h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.casino-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-color);
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 20px;
}

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-accent);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Simple Pages (Terms, Privacy) */
.page-header {
  padding: 60px 0 30px;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 400;
}

.content-block {
  max-width: 800px;
  margin: 0 auto 80px;
}

.content-block ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.content-block li {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.content-block p {
  margin-bottom: 15px;
  color: var(--text-muted);
}

/* Footer */
footer {
  background-color: var(--gray-light);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #eaeaea;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin: 0 10px;
}

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

.copyright {
  color: #888888;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* In a full build, this would be a hamburger menu */
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}