:root {
  --primary: #ffffff;
  --accent: #d4af37;
  --bg-dark: #0f0f0f;
  --bg-darker: #050505;
  --bg-light: #f8f8f8;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --text-dark: #1a1a1a;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  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);
}

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

.logo-container {
  height: 50px;
}

.logo-container img {
  height: 100%;
  width: auto;
  filter: brightness(0) invert(1);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: 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;
  padding: 0 5%;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1.2s ease forwards;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1.4s ease forwards;
}

.btn {
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--accent);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
}

.btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-dark);
}

/* Sections */
section {
  padding: 100px 10%;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 15px auto 0;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 20px 20px 0px var(--accent);
}

/* Features Section */
.features-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 3rem 2rem;
  background: white;
  border-bottom: 4px solid var(--accent);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

.price-card {
  background: var(--bg-darker);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.price-card:hover {
  border-color: var(--accent);
}

.price-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.price-tag {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1.5rem 0;
}

.price-card ul {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

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

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* Contact Form */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-darker);
  padding: 4rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input, textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-family: var(--font-body);
}

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

/* Footer */
footer {
  padding: 80px 10% 40px;
  background: var(--bg-darker);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--accent);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  header {
    padding: 1rem 5%;
  }
  nav {
    display: none; /* In a real app, we'd add a hamburger menu */
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 5%;
  }
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  .price-card.featured {
    transform: none;
  }
}