/* Styln - Shared Styles for All Pages */

/* Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Premium Color Palette */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #d084e6 50%, #f093b0 100%);
    --purple: #667eea;
    --purple-dark: #764ba2;
    --rose: #f093b0;
    --gold: #D4AF37;
    --gold-light: #F4E4C1;
    --black: #000000;
    --off-black: #0a0a0a;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-light: #f5f7fa;

    /* Premium Shadows */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 60px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 20px 80px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #1a1a1a;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Header Styles */
header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    text-decoration: none;
}

.logo:hover {
    color: #764ba2;
}

/* Desktop Navigation */
nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #667eea;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #667eea;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: #f5f7fa;
    color: #667eea;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav .cta-mobile {
    margin-top: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 40px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    header {
        padding: 15px 20px;
    }
}
