:root {
  --primary: #ffffff;
  --accent: #d4af37;
  --bg-dark: #0a0a0a;
  --bg-mid: #1a1a1a;
  --bg-light: #f4f4f4;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --text-dark: #1a1a1a;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', 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);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-container {
  height: 50px;
}

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

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

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

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

/* Hero Section */
.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: 1rem;
  animation: fadeInUp 1s ease forwards;
}

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

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.btn {
  padding: 1rem 2.5rem;
  border: 1px solid var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.8rem;
  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);
  color: var(--bg-dark);
  border-color: var(--primary);
}

/* Sections */
section {
  padding: 8rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title .divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto;
}

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

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.about-image img {
  border: 10px solid var(--bg-mid);
  box-shadow: 20px 20px 0px var(--accent);
}

/* Why Choose Us */
.bg-alt {
  background-color: var(--bg-mid);
}

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

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

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

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

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

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

.price-header h4 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-family: var(--font-display);
  margin-bottom: 2rem;
}

.price-amount span {
  font-size: 1rem;
  opacity: 0.6;
}

.price-features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

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

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

.gallery-item {
  aspect-ratio: 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);
  filter: brightness(0.7);
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 2rem;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item label {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

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

input, textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-mid);
  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: 4rem 0;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.copyright {
  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: 768px) {
  .nav-links {
    display: none;
  }
  .about-grid, .contact-wrapper {
    grid-template-columns: 1fr;
  }
  section {
    padding: 4rem 0;
  }
  .hero-content h1 {
    font-size: 3rem;
  }
}