:root {
  --bg: #050505;
  --bg-2: #111;
  --text: #fff;
  --muted: #888;
  --accent: #d4af37;
  --border: #333;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin: 0
}

p {
  line-height: 1.6;
  color: var(--muted);
  font-size: 15px
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.95);
  border-bottom: 1px solid #222
}

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

.logo {
  display: flex;
  align-items: center
}

.logo img {
  height: 32px;
  width: auto
}

/* Smaller, more elegant logo size */
.menu {
  display: flex;
  gap: 32px;
  align-items: center
}

.menu a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 500
}

.menu a:hover,
.menu a.btn {
  color: var(--text)
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 24px
}

/* Buttons (Premium Gold Glow) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 36px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}

.btn:hover {
  color: #000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn:hover::before {
  opacity: 1;
}

.btn-outline {
  border-color: var(--border);
  color: var(--muted)
}

.btn-outline:hover {
  border-color: var(--text);
  color: var(--text);
  background: transparent;
  box-shadow: none;
}

/* Hero Video */
.hero {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  opacity: 0.6;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), #050505);
  z-index: -1;
}

/* Social Icons */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #333;
  color: var(--muted);
  transition: all .3s ease;
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentcolor;
}

.hero-content {
  text-align: center;
  max-width: 800px
}

.hero-title {
  font-size: 26px;
  line-height: 1.8;
  margin-bottom: 15px
}

.hero-subtitle {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8)
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center
}

.social-row {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  justify-content: center
}

.social {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted)
}

/* Sections General */
.section {
  padding: 100px 0
}

.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text)
}

.section-title.center {
  text-align: center
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

/* Cards (Omnia Style - No Borders/Tables) */
.media-card {
  height: 500px;
  background-size: cover;
  background-position: center;
  filter: grayscale(30%);
  transition: all .5s ease;
  border: none;
  border-radius: 4px;
}

.media-card:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}



/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px
}

/* Cleaner gap */
.gallery-item {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: opacity .3s ease;
  border: none;
}

.gallery-item:hover {
  opacity: 0.8
}

.home-gallery {
  margin: 40px 0
}

/* Ratings (Clean - No Heavy Grid Lines) */
.ratings {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  padding: 80px 0;
  border-top: 1px solid #222
}

.rating-summary {
  text-align: center;
  padding: 40px;
  border: none;
  background: #111;
}

/* Removed border */
.rating-value {
  font-size: 60px;
  font-family: var(--font-heading);
  color: var(--text)
}

.stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 4px;
  margin: 10px 0
}

.rating-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.rating-card {
  padding: 30px;
  border: none;
  background: #111;
  /* Clean dark card */
  transition: transform 0.3s ease;
}

.rating-card:hover {
  transform: translateY(-5px);
}

.quote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 300;
}

.byline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent)
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.event-card {
  background: #111;
  border: none;
  padding: 30px;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.ec-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 8px
}

.ec-title {
  font-size: 24px;
  margin-bottom: 12px
}

/* Footer (Centered & Clean) */
.site-footer {
  background: #000;
  padding: 80px 0;
  border-top: 1px solid #222
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px
}

/* Centered grid */
.footer-grid>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.footer-grid .logo {
  font-size: 20px;
  color: var(--text);

}

.footer-grid .alamat {
  font-size: 10px;
  color: var(--text);
}

.footer-grid .social-col {
  display: flex !important;
  flex-direction: row !important;
  width: 100%;
  gap: 20px;
  justify-content: flex-end !important;
  align-items: center;
}

/* Mobile */
@media (max-width:1024px) {
  .hero-title {
    font-size: 60px
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .footer-grid>div {
    align-items: flex-start;
  }
}

@media (max-width:768px) {
  .container {
    padding: 0 24px
  }

  .nav {
    height: 60px;
  }

  .logo img {
    height: 28px;
  }

  .nav-toggle {
    display: block
  }

  .menu {
    position: fixed;
    inset: 60px 0 0 0;
    background: #000;
    flex-direction: column;
    padding: 40px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    text-align: center;
  }

  .menu.open {
    transform: none;
    opacity: 1;
    pointer-events: auto
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .two-col {
    gap: 30px;
  }

  .two-col,
  .two-col.reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  /* Image on top logic requires flex manipulation or grid area adjustment. Simplified: Stack content. */
  .two-col .media-card {
    height: 300px;
    width: 100%;
    margin-bottom: 20px;
  }

  .ratings,
  .rating-cards,
  .events-grid {
    grid-template-columns: 1fr
  }

  .ratings {
    gap: 20px;
    padding: 40px 0;
  }

  .rating-summary {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-grid>div {
    align-items: center;
  }

  .footer-grid .social-col {
    justify-content: center !important;
    width: 100%;
  }
}

.search {
  height: 48px;
  padding: 0 20px;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  max-width: 300px
}

.search::placeholder {
  color: var(--muted);
  text-transform: uppercase
}

/* Sleek Filter Buttons */
.filter-tags {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px
}



/* Glass Reservation Form */
.resv-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.resv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px
}

.resv-info h3 {
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 24px
}

.resv-info p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px
}

.resv-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #333;
  padding: 15px;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  font-family: var(--font-main);
  transition: all .3s ease;
}

.resv-input:focus {
  border-color: var(--accent);
  outline: none;
  background: rgba(0, 0, 0, 0.5)
}

.resv-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted)
}

@media(max-width:768px) {
  .resv-split {
    grid-template-columns: 1fr
  }

  .resv-glass {
    padding: 30px
  }
}