/* 
   MM Events Melbourne - Refined Luxury Polish
   Aesthetic: High-end nightlife, editorial precision, and cinematic depth.
*/

:root {
    --bg-dark: #0a0a0a;
    --bg-light: #FFFFFF;
    --bg-alt: #111111;
    --text-main: #f8f8f8;
    --text-muted: #888888;
    --accent: #c5a059; /* Refined Champagne Gold */
    --accent-glow: rgba(197, 160, 89, 0.3);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --section-spacing: 10rem;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Polish */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    text-transform: none;
}

.section-title {
    margin-bottom: 5rem;
}

.section-title .divider {
    width: 40px;
    height: 1px;
    background: var(--accent);
    margin: 1.5rem auto 0;
    transition: width 0.8s ease;
}

section:hover .section-title .divider {
    width: 100px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
    height: 42px;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.1));
}

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

.nav-links a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-main);
    opacity: 0.6;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: #000;
}

.hero-video {
    filter: brightness(0.5) contrast(1.1);
}

.hero-content h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, #fff 40%, #999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.9rem;
    color: var(--accent);
}

/* Buttons */
.btn {
    padding: 1.25rem 3rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: #fff;
}

/* About Section */
.about-grid {
    gap: 6rem;
}

.about-text h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.about-image img {
    box-shadow: 40px -40px 0px -10px rgba(197, 160, 89, 0.1);
    filter: grayscale(0.2) contrast(1.1);
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0);
    transform: scale(1.02);
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(145deg, #161616 0%, #0a0a0a 100%);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 4rem 2.5rem;
}

.feature-card h4 {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

/* Pricing Polish */
.pricing-card {
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.pricing-card.featured {
    background: #141414;
    border: 1px solid var(--accent);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.price-tag {
    font-weight: 400;
    letter-spacing: -0.03em;
}

.pricing-features li {
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding-bottom: 0.8rem;
}

/* Gallery Polish */
.gallery-grid {
    gap: 0.5rem;
    padding: 0 0.5rem;
}

.gallery-item {
    filter: saturate(0.8);
}

.gallery-item:hover {
    filter: saturate(1.2);
    z-index: 10;
}

/* Contact Form Polish */
.contact-form input, .contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    font-size: 1rem;
}

.contact-form input:focus, .contact-form textarea:focus {
    background: transparent;
    border-bottom-color: var(--accent);
}

.contact-info .info-item p {
    font-size: 1.2rem;
    font-family: var(--font-display);
}

/* Footer */
footer {
    background: #050505;
    padding: 6rem 0 3rem;
}

.social-links a {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
}

.social-links a:hover {
    border-bottom-color: var(--accent);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    :root { --section-spacing: 5rem; }
    section { padding: var(--section-spacing) 0; }
    .nav-content { padding: 0 1.5rem; }
    .hero-content h1 { font-size: 4rem; }
    .pricing-card.featured { transform: none; }
    .about-grid { gap: 3rem; }
    .about-image img { box-shadow: 15px -15px 0px -5px rgba(197, 160, 89, 0.1); }
}