/*
Theme Name: LUX BAGS
Theme URI: https://nuyalux.com
Author: Nuy Luxe Team
Author URI: https://nuyalux.com
Description: Thème WordPress premium pour le lancement Nuy Luxe
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nuy-luxe
Domain Path: /languages
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #e6c547;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #d4af37;
}

p {
    line-height: 1.8;
    color: #b0b0b0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WordPress essentials */
.wp-container {
    max-width: 900px;
    margin: 0 auto;
}

.entry-content {
    margin-top: 30px;
    line-height: 1.8;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

.entry-content a {
    text-decoration: underline;
}

/* Menu Navigation */
.main-navigation {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 2px solid #d4af37;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.main-navigation a {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Responsive Menu */
@media (max-width: 768px) {
    .main-navigation ul {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .main-navigation a {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
}
