/* Global Overrides */
:root {
    --lt-olive: #8e5e54;
    --lt-rose: #d2a399;
    --lt-black: #050505;
}

body {
    background-color: var(--lt-black);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--lt-black); 
}
::-webkit-scrollbar-thumb {
    background: var(--lt-olive); 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--lt-rose); 
}

/* Glassmorphism Utilities */
.glass-nav {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(210, 163, 153, 0.1);
}

.bg-lt-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation Links */
.nav-link {
    position: relative;
    color: #e5e5e5 !important;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--lt-rose);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--lt-rose) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-lt-primary {
    background: linear-gradient(45deg, var(--lt-olive), var(--lt-rose));
    color: #000;
    font-weight: 600;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-lt-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(210, 163, 153, 0.4);
    color: #000;
}

.btn-lt-outline {
    background: transparent;
    border: 1px solid var(--lt-rose);
    color: var(--lt-rose);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-lt-outline:hover {
    background: rgba(210, 163, 153, 0.1);
    color: #fff;
    border-color: #fff;
}

/* Utilities */
.text-lt-rose {
    color: var(--lt-rose);
}
.text-lt-olive {
    color: var(--lt-olive);
}
.border-lt-rose {
    border-color: var(--lt-rose);
}
