:root {
  --primary: #c5a059;
  --primary-dark: #a68546;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-light: #f8f8f8;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #888888;
  --accent: #e5c185;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --section-padding: 100px 5%;
}

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

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

/* 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(197, 160, 89, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  background: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.logo-box img {
  height: 45px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

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

/* 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;
  color: var(--primary);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

.btn {
  padding: 1rem 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

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

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

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

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

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

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

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  border: 10px solid var(--bg-darker);
  box-shadow: 20px 20px 0px var(--primary);
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-darker);
  padding: 3rem 2rem;
  border-top: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

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

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

/* Pricing Cards */
.pricing-container {
  background: var(--bg-light);
  color: var(--text-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.price-card {
  background: white;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  margin-bottom: 1.5rem;
  color: var(--bg-dark);
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

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

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

.price-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

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

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

.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-section {
  background: var(--bg-darker);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  margin-bottom: 2rem;
  color: var(--primary);
}

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

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

.info-item p {
  font-size: 1.2rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

.contact-form input, .contact-form textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 1rem;
  color: white;
  font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* Footer */
footer {
  padding: 4rem 5%;
  background: #000;
  text-align: center;
  border-top: 1px solid #222;
}

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

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .about-grid, .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .hero h1 {
    font-size: 3rem;
  }
}