: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: '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);
  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.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;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.logo-container img {
  width: 100%;
  height: auto;
}

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

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

.nav-links 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;
}

.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;
  margin-bottom: 2rem;
  color: var(--accent);
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

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

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

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

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

.btn:hover::before {
  left: 0;
}

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

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

/* Section Styling */
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-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.about-image {
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent);
  z-index: -1;
}

/* Why Us Grid */
.why-us {
  background: 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: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

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

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

.price-card {
  background: var(--bg-mid);
  padding: 3rem;
  text-align: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

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

.price-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.price-value span {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  flex-grow: 1;
}

.price-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

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

/* 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.8s ease;
}

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

/* Form */
.contact-section {
  background: var(--bg-light);
  color: var(--text-dark);
}

.contact-grid {
  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;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  font-family: inherit;
}

.contact-form .btn {
  border-color: var(--bg-dark);
  color: var(--bg-dark);
  background: transparent;
}

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

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

.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: 992px) {
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .price-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  section {
    padding: 4rem 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .btn-group {
    flex-direction: column;
    width: 100%;
  }
}