:root {
  --color-bg: #0a0a0a;
  --color-surface: #1a1a1a;
  --color-accent: #ffffff;
  --color-text: #e0e0e0;
  --color-text-muted: #a0a0a0;
  --font-display: 'Syncopate', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --container-padding: 2rem;
  --section-spacing: 8rem;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, .display-font {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  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 img {
  height: 50px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--color-text-muted);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  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;
}

.hero-content p {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: var(--color-text-muted);
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn {
  padding: 1rem 2.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  border: 1px solid var(--color-accent);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

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

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

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

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

/* Sections */
section {
  padding: var(--section-spacing) 0;
}

.section-alt {
  background-color: #f5f5f5;
  color: #0a0a0a;
}

.section-alt h2 {
  color: #0a0a0a;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 700px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

/* Feature Cards */
.feature-card {
  padding: 3rem;
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

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

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

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

.pricing-card {
  background: #fff;
  color: #000;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.pricing-card.dark {
  background: #111;
  color: #fff;
  border: 1px solid #333;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 3rem;
  margin: 1.5rem 0;
}

.price-tag span {
  font-size: 1rem;
  vertical-align: super;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  font-size: 0.9rem;
}

.pricing-card.dark .pricing-features li {
  border-bottom-color: rgba(255,255,255,0.1);
}

/* 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: transform 0.5s ease;
}

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

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

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

label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
}

input, textarea {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: var(--font-body);
}

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

/* Footer */
footer {
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #050505;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 992px) {
  .grid-2, .contact-container {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    display: none;
  }
  
  :root {
    --section-spacing: 5rem;
  }
}

@media (max-width: 600px) {
  .cta-group {
    flex-direction: column;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}