/* ========================================
   MG EVENTS - BLACK & WHITE THEME
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Black & White Color Palette */
    --primary-50: #ffffff;
    --primary-100: #f9f9f9;
    --primary-200: #f0f0f0;
    --primary-300: #e0e0e0;
    --primary-400: #c0c0c0;
    --primary-500: #808080;
    --primary-600: #606060;
    --primary-700: #404040;
    --primary-800: #202020;
    --primary-900: #000000;

    /* Main Theme Colors - Rich Golden Gradient */
    --gold: #d4af37;
    --dark-gold: #b8860b;
    --champagne: #f4e4c1;
    --cream: #faf6e9;
    --burgundy: #d4af37;
    --deep-burgundy: #b8860b;
    --bronze: #cd7f32;

    /* Secondary - Grays */
    --secondary-50: #ffffff;
    --secondary-100: #f5f5f5;
    --secondary-200: #eeeeee;
    --secondary-300: #e0e0e0;
    --secondary-400: #bdbdbd;
    --secondary-500: #9e9e9e;
    --secondary-600: #757575;
    --secondary-700: #616161;
    --secondary-800: #424242;
    --secondary-900: #212121;

    /* Accent - Dark Grays */
    --accent-light: #e0e0e0;
    --accent: #404040;
    --accent-dark: #202020;

    /* Neutrals - Pure Grays */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Semantic Colors - Grayscale */
    --success: #404040;
    --warning: #606060;
    --error: #202020;
    --info: #808080;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 2.5rem;
    --space-16: 3rem;
    --space-24: 3.5rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    background: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: none !important;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #b8860b, #d4af37);
    border: none !important;
}

.btn-secondary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: none !important;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #b8860b, #d4af37);
    border: none !important;
}

.btn-outline {
    background: transparent;
    color: white;
    border: none !important;
    border-color: transparent !important;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
    color: white;
    transform: translateY(-3px);
    border: none !important;
}

.btn i {
    margin-left: var(--space-2);
}

/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.15);
}

/* Top Bar - HIDDEN */
.top-bar {
    display: none;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-burgundy) 100%);
    color: white;
    padding: var(--space-2) 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: var(--space-6);
}

.top-bar-link {
    color: white;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
    opacity: 0.95;
}

.top-bar-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.top-bar-right {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--gold);
    color: var(--burgundy);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    padding: var(--space-4) 0;
    background: white;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo - Elegant Event Style */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    text-decoration: none;
    position: relative;
}

.logo::before {
    content: '✨';
    font-size: 1.5rem;
    animation: sparkle 2s ease-in-out infinite;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-subtext {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--burgundy);
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: var(--space-2);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    padding: var(--space-3) var(--space-4);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    min-width: 220px;
    padding: var(--space-3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    list-style: none;
    margin: 0;
    border: 1px solid var(--champagne);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--gray-700);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, var(--champagne), var(--cream));
    color: var(--burgundy);
    transform: translateX(5px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #d4af37 100%);
    color: white;
    margin-top: var(--space-24);
    position: relative;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 -10px 30px rgba(0, 0, 0, 0.2),
        0 -5px 15px rgba(212, 175, 55, 0.4);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 30%,
            transparent 70%,
            rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    animation: shimmerGold 3s ease-in-out infinite;
}

@keyframes shimmerGold {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.footer-main {
    padding: var(--space-24) 0 var(--space-12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-12);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.footer-logo .logo-text {
    font-size: 2rem;
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
}

.footer-logo .logo-subtext {
    font-size: 1.25rem;
    color: white !important;
}

.footer-desc {
    color: var(--gray-300);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition-base);
}

.footer-social-link:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-6);
    color: white;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--gray-300);
    transition: var(--transition-base);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: var(--space-2);
}

.footer-contact li {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    color: var(--gray-300);
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.25rem;
    margin-top: 2px;
}

.footer-contact strong {
    color: white;
    display: block;
    margin-bottom: var(--space-1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-6) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-bottom-content i {
    color: var(--gold);
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--burgundy));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 768px) {

    /* Top Bar */
    .top-bar {
        display: none;
    }

    /* Mobile Menu */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-6);
        transition: left var(--transition-base);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: var(--space-4);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: var(--space-6);
        margin-top: var(--space-2);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }
}