:root {
  --primary: #ffffff;
  --accent: #d4af37;
  --bg-dark: #0a0a0a;
  --bg-mid: #1a1a1a;
  --bg-light: #f8f8f8;
  --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);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 5%;
  background: rgba(10, 10, 10, 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.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

nav a:hover {
  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;
  padding: 0 5%;
}

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

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

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

.btn {
  padding: 1rem 2.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid var(--accent);
  cursor: pointer;
  transition: var(--transition);
}

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

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

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

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

/* About Section - Alternating Tone */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-mid);
  padding: 80px;
  border-radius: 4px;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border: 1px solid var(--accent);
  padding: 10px;
}

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

.feature-card {
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

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

.feature-card h4 {
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

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

.price-card {
  background: var(--bg-mid);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.price-header {
  text-align: center;
  margin-bottom: 2rem;
}

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

.price-value {
  font-size: 3.5rem;
  font-family: var(--font-display);
  font-weight: 700;
}

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

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

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

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

/* 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);
}

/* 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: 1.5rem;
}

.info-item label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 5px;
}

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

input, textarea {
  padding: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  font-family: var(--font-body);
}

textarea {
  height: 150px;
}

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

.footer-logo {
  height: 60px;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

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

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

/* 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 {
    display: none;
  }
  .pricing-container {
    gap: 1.5rem;
  }
  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}