
/* assets/css/style.css - Global Styles */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #050507;
}
::-webkit-scrollbar-thumb {
    background: #362309;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C68A2C;
}

/* --- NAVIGATION DROPDOWNS --- */
.nav-dropdown, .sub-dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.group:hover > .nav-dropdown,
.group:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.sub-dropdown {
    transform: translateX(10px);
}
.group:hover > .sub-dropdown {
    transform: translateX(0);
}

/* --- LUXURY BUTTONS (Global) --- */
.luxury-btn-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.luxury-btn {
    position: relative;
    padding: 12px 30px;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.015) 0px,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 6px
        ),
        linear-gradient(180deg, #0a0a0e 0%, #050507 100%);
    color: #ad9459; /* Muted Gold */
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    min-width: 180px;
    text-align: center;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.luxury-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2px; 
    padding: 1px;
    background: linear-gradient(45deg, #563810, #C68A2C, #F5ECC3, #C68A2C, #563810);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.luxury-btn:hover {
    color: #fff;
    background-color: #0f0f12; 
    text-shadow: 0 0 8px rgba(198, 138, 44, 0.6);
    box-shadow: 0 0 25px rgba(198, 138, 44, 0.15);
}

.luxury-btn:hover::before {
    opacity: 1;
}

/* --- PRIVACY CONSENT BANNER --- */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 14, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(198, 138, 44, 0.5);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.privacy-banner.visible {
    transform: translateY(0);
}

.privacy-btn-outline {
    position: relative;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.privacy-btn-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0a0a0e;
    border: 1px solid #C68A2C;
    color: #C68A2C;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top-btn:hover {
    background: #C68A2C;
    color: #000;
    box-shadow: 0 0 25px rgba(198, 138, 44, 0.4);
}
