/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #f5f5f5;
  background-color: #111;
  line-height: 1.6;
}

img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #ffd700;
  letter-spacing: 1px;
}

.section-sub {
  text-align: center;
  margin-bottom: 40px;
  color: #ccc;
  font-size: 1.1rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  transition: background 0.3s ease;
}

.site-header.scrolled {
  background: #000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #ffd700;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger {
  width: 25px;
  height: 2px;
  background: #fff;
  display: block;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  width: 25px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-gold {
  background: #ffd700;
  color: #111;
}

.btn-gold:hover {
  background: #e6c200;
}

.btn-outline {
  border: 2px solid #ffd700;
  color: #ffd700;
}

.btn-outline:hover {
  background: #ffd700;
  color: #111;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1504280390368-56a2d62de16d?q=80&w=1600&auto=format&fit=crop") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.room-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.8);
}

.room-card h3 {
  margin: 15px 0 10px;
  color: #ffd700;
}

.room-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 10px;
}

.price {
  font-weight: 600;
  color: #fff;
}

/* Casino & Entertainment */
.dark-bg {
  background: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.service:hover {
  transform: translateY(-5px);
  background: #222;
}

.service h4 {
  color: #ffd700;
  margin-bottom: 10px;
}

/* Dining */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.contact-info p {
  margin-bottom: 10px;
  color: #ddd;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  background: #1a1a1a;
  color: #fff;
}

.contact-form button {
  width: 100%;
}

/* Footer */
.site-footer {
  background: #000;
  padding: 25px 0;
  text-align: center;
  color: #777;
}

.site-footer p {
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #111;
    padding: 20px;
    border-radius: 8px;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
