/* ============================================
   MUSÉE D'ART CONTEMPORAIN - STYLE NOIR & OR
   Design élégant inspiré des grands musées
   ============================================ */

/* ===== VARIABLES ===== */
:root {
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-medium: #2a2a2a;
    --black-card: #1e1e1e;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-dark: #a8892f;
    --white: #ffffff;
    --white-smoke: #f5f5f5;
    --gray-light: #cccccc;
    --gray-medium: #888888;
    --gray-dark: #444444;
    --shadow: 0 10px 40px rgba(0,0,0,0.8);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.9);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 8px;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--black);
    color: var(--white-smoke);
    overflow-x: hidden;
    padding-top: 76px;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ===== HEADER ===== */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

header .logo {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

header .logo span {
    color: var(--gold);
}

header .logo i {
    color: var(--gold);
    font-size: 1.8rem;
}

header nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

header nav a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    padding: 0.3rem 0;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

header nav a:hover {
    color: var(--white);
}

header nav a:hover::after {
    width: 100%;
}

header nav a i {
    margin-right: 0.3rem;
}

.btn-login {
    color: var(--gray-light) !important;
}

.btn-login:hover {
    color: var(--white) !important;
}

.btn-register {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: var(--transition);
}

.btn-register:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 168, 76, 0.3);
}

.btn-register::after {
    display: none !important;
}

.btn-logout {
    color: var(--gray-light) !important;
}

.btn-logout:hover {
    color: #e94560 !important;
}

.notification-badge {
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    padding: 0.15rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    position: absolute;
    top: -5px;
    right: -15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: var(--font-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-success {
    background: var(--gold);
    color: var(--black);
}

.btn-success:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-danger {
    background: #dc3545;
    color: var(--white);
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-3px);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    height: 90vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-track {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.slide.active .slide-background {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.7) 50%,
        rgba(10, 10, 10, 0.4) 100%
    );
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 2rem;
    color: var(--white);
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease 0.3s forwards;
    opacity: 0;
}

.slide-badge i {
    margin-right: 0.5rem;
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    font-family: var(--font-primary);
    animation: fadeIn 0.6s ease 0.5s forwards;
    opacity: 0;
}

.slide-title span {
    color: var(--gold);
}

.slide-artist {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    animation: fadeIn 0.6s ease 0.7s forwards;
    opacity: 0;
}

.slide-artist span {
    color: var(--gold);
    font-weight: 600;
}

.slide-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.8);
    animation: fadeIn 0.6s ease 0.9s forwards;
    opacity: 0;
}

.slide-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease 1.1s forwards;
    opacity: 0;
}

.slide-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.slide-meta i {
    color: var(--gold);
}

.slide-actions {
    display: flex;
    gap: 1rem;
    animation: fadeIn 0.6s ease 1.3s forwards;
    opacity: 0;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
    border-color: var(--white);
}

.dot:hover {
    background: var(--gold);
}

.slider-info {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 10;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 300;
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 5rem 0;
    background: var(--black-light);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.03);
}

.stat-item:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.stat-number span {
    color: var(--gold);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-family: var(--font-primary);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.section-header h2 span {
    color: var(--gold);
}

.section-header p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto 0;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 5rem 0;
    background: var(--black);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
    background: var(--black-card);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card .category-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.category-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.category-card span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 1;
}

.category-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    color: var(--gold);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 5rem 0;
    background: var(--black-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--gray-light);
    letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: var(--black-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay-content {
    transform: translateY(0);
}

.gallery-overlay-content h3 {
    font-size: 1.2rem;
    font-family: var(--font-primary);
    margin-bottom: 0.3rem;
}

.gallery-overlay-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.gallery-overlay-content .price {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.gallery-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.gallery-badge.sold {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc3545;
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.gallery-info {
    padding: 1.2rem;
}

.gallery-category {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.gallery-info h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.2rem;
    font-family: var(--font-primary);
}

.gallery-artist {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.gallery-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.gallery-price {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

.gallery-load-more {
    text-align: center;
    margin-top: 3rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 0;
    position: relative;
}

.cta-background {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.92);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 5rem 2rem;
}

.cta-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content h2 {
    font-size: 3rem;
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.cta-content h2 span {
    color: var(--gold);
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 1rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-family: var(--font-primary);
    margin-bottom: 1.2rem;
    color: var(--white);
}

.footer-col h4 i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.footer-col p {
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-col ul li a i {
    font-size: 0.5rem;
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.contact-info li {
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.contact-info li i {
    color: var(--gold);
    width: 20px;
}

.newsletter-form .newsletter-input {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    border-radius: 50px;
    color: var(--white);
    transition: var(--transition);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.05);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.footer-payment {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    font-size: 2rem;
    color: rgba(255,255,255,0.2);
}

.footer-payment i {
    transition: var(--transition);
    cursor: pointer;
}

.footer-payment i:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .slide-title {
        font-size: 2.8rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    header {
        padding: 0.8rem 1rem;
        flex-wrap: wrap;
    }

    header .logo {
        font-size: 1.3rem;
    }

    header nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    header nav.open {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-description {
        font-size: 0.95rem;
    }

    .slide-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .slide-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .prev-btn {
        left: 0.5rem;
    }

    .next-btn {
        right: 0.5rem;
    }

    .slider-dots {
        bottom: 1.5rem;
    }

    .slider-info {
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 0.7rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.3rem 1rem;
        font-size: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .cta-background {
        background-attachment: scroll;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        display: none;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .category-card {
        padding: 1.5rem;
        min-height: 180px;
    }
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state i {
    font-size: 4rem;
    color: rgba(201, 168, 76, 0.3);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.empty-state p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

/* ===== ALERTS ===== */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert-info {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.2);
}

.alert i {
    font-size: 1.2rem;
}