/* --- STYLES FROM YOUR PROVIDED CODE --- */
body {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    background-color: black;
    color: white;
    overflow-x: hidden;
}
/* In your main CSS file (e.g., style.css) */
html {
  scroll-behavior: smooth;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

.luxury-gradient {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #000000 100%);
}

.gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 25%, #ffed4e 50%, #ffd700 75%, #d4af37 100%);
}

.premium-glow {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3), 0 0 80px rgba(212, 175, 55, 0.1);
}

.text-glow {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.card-luxury {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-luxury:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.6);
}

.btn-luxury {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    color: black;
    font-weight: 600;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.nav-glass {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.catalogue-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.catalogue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
    background: linear-gradient(145deg, #222222, #1a1a1a);
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.floating { animation: float 4s ease-in-out infinite; }
.sparkle { animation: sparkle 2s ease-in-out infinite; }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.golden-line {
    position: relative;
    overflow: hidden;
}

.golden-line::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    transition: left 0.6s ease;
}

.golden-line:hover::before {
    left: 100%;
}

.golden-underline {
    position: relative;
}

.golden-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #ffd700);
    transition: width 0.4s ease;
}

.golden-underline:hover::after {
    width: 100%;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 60;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    display: flex;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 61;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

/* Mobile Media Queries */
@media (max-width: 768px) {
    .card-luxury:hover, .catalogue-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    }

    .floating-call { bottom: 20px; right: 20px; }

    .text-8xl, .text-9xl { font-size: 3.5rem !important; line-height: 1.1 !important; }
    .text-5xl { font-size: 2.75rem !important; line-height: 1.2 !important; }
    .text-4xl { font-size: 2.25rem !important; line-height: 1.2 !important; }
    .text-3xl { font-size: 1.875rem !important; line-height: 1.3 !important; }
    .text-2xl { font-size: 1.5rem !important; line-height: 1.4 !important; }
    .text-xl { font-size: 1.25rem !important; line-height: 1.5 !important; }
    .text-lg { font-size: 1.125rem !important; line-height: 1.6 !important; }

    .py-24 { padding-top: 4rem !important; padding-bottom: 4rem !important; }
    .py-20 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

    .text-gray-400 { color: #d1d5db !important; }
    .text-gray-300 { color: #e5e7eb !important; }

    .card-luxury, .catalogue-card {
        background: linear-gradient(145deg, #262626, #1a1a1a) !important;
        border: 1px solid rgba(212, 175, 55, 0.4) !important;
    }

    .btn-luxury { font-size: 1rem !important; padding: 0.875rem 1.5rem !important; }
    .floating { animation: none; }
    .container { padding-left: 1rem !important; padding-right: 1rem !important; }

    .mobile-menu a {
        font-size: 1.5rem;
        margin: 1rem 0;
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .mobile-menu a:hover { color: #ffd700; }

    .hamburger { display: flex; }
    .desktop-nav { display: none; }
}


/* --- REQUIRED STYLES FOR CATEGORY PAGES (Do Not Remove) --- */
/* These were inline in your JS, moved here to make the category pages work */

.pdf-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    margin: 0 auto 1rem;
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(26,26,26,0.8), rgba(15,15,15,0.9));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pdf-item:hover {
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(26,26,26,0.9));
    border-color: rgba(212,175,55,0.5);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(212,175,55,0.2);
}

.pdf-item i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pdf-item span {
    flex: 1;
    margin-left: 0.75rem;
    color: #f5f5f5;
    font-weight: 500;
    text-align: left;
}

/* Shared Styles */
.pdf-icon-style { color: #ef4444; font-size: 1.2rem; }
.arrow-icon-style { color: #ffd700; font-size: 1.2rem; }
.pdf-text-style { color: #f5f5f5; font-weight: 500; }
.pdf-content-wrapper { display: flex; align-items: center; gap: 0.75rem; }

/* Header Centering for Category Pages */
.nav-container-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
}

.back-button-absolute {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    font-weight: 500;
    transition: opacity 0.3s;
    text-decoration: none;
}
.back-button-absolute:hover { opacity: 0.8; }