:root {
  --color-bg: #0a0a0a;
  --color-surface: #1a1a1a;
  --color-accent: #f5f5f5;
  --color-gold: #c5a059;
  --color-text-main: #e0e0e0;
  --color-text-muted: #a0a0a0;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --section-padding: 100px 5%;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

/* --- Layout Components --- */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container img {
  height: 50px;
  filter: brightness(0) invert(1);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0.7;
}

nav a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: var(--color-gold);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background: #fff;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

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

/* --- Sections --- */

section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background: var(--color-bg);
}

.section-alt {
  background: var(--color-surface);
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://mmeventsmelbourne.com.au/wp-content/uploads/sites/7/2025/12/IMG_20250818_122150_308.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 10px;
  line-height: 1;
}

.hero-content p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 30px;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  padding: 40px;
  background: #222;
  border-top: 3px solid var(--color-gold);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: #2a2a2a;
}

.feature-card h4 {
  margin-bottom: 15px;
  color: var(--color-gold);
}

/* --- Pricing Cards --- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.price-card {
  background: #000;
  padding: 50px 40px;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: var(--color-gold);
  transform: scale(1.05);
  z-index: 2;
}

.price-card h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 30px;
  display: block;
}

.price-card ul {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.price-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.price-card li::before {
  content: '✓';
  margin-right: 10px;
  color: var(--color-gold);
}

/* --- Gallery --- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
}

.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* --- Contact Form --- */

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

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

input, textarea {
  width: 100%;
  padding: 15px;
  background: #222;
  border: 1px solid #333;
  color: #fff;
  font-family: inherit;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

footer {
  padding: 60px 5%;
  background: #000;
  border-top: 1px solid #222;
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: 30px;
  filter: brightness(0) invert(1);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  header {
    padding: 15px 5%;
  }
  
  nav {
    display: none;
  }
  
  .price-card.featured {
    transform: none;
  }
}

/* OpenTable Customization */
.ot-button {
  background-color: var(--color-gold) !important;
  color: #000 !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
}

.opentable-block-hide-title .ot-title, 
.opentable-block-hide-logo .ot-powered-by {
  display: none !important;
}