@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #0f0f0f;
    --bg-charcoal: #161616;
    --bg-brown: #1c1917;
    --accent-bronze: #8e6d55;
    --accent-gold: #c5a075;
    --accent-copper: #a58266;
    --text-off-white: #e5e5e5;
    --text-muted: #888888;
}

.text-muted {
    color: var(--text-muted);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-off-white);
    scroll-behavior: smooth;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.glass-nav {
    background: rgba(15, 15, 15, 0.95);
    border-bottom: 1px solid rgba(142, 109, 85, 0.2);
    backdrop-filter: blur(10px);
}

.nav-link {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: var(--accent-bronze);
}

.btn-premium {
    background: #8e6d55;
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 2px;
}

.btn-premium:hover {
    background: #a58266;
    box-shadow: 0 0 20px rgba(142, 109, 85, 0.4);
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 52px;
    opacity: 0.8;
    filter: grayscale(1) brightness(1.5);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    filter: none;
}

/* Slider CSS */
.slider-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 15, 15, 0.8) 30%, transparent 100%);
    z-index: 3;
}

/* Cards & Components */
.card-glow {
    background: #1a1a1a;
    border: 1px solid rgba(142, 109, 85, 0.2);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-glow:hover {
    border-color: var(--accent-bronze);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(142, 109, 85, 0.1);
    transform: translateY(-5px);
}

.content-section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .content-section {
        padding: 50px 0;
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-bronze));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer Styles */
footer {
    border-top: 1px solid rgba(142, 109, 85, 0.1);
}

.footer-link {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-bronze);
    padding-left: 4px;
}

.footer-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-bronze);
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-icon {
    color: var(--accent-bronze);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Transitions */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .content-section {
        padding: 40px 0;
    }
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }
}

/* Loading States */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading span {
    visibility: hidden;
    opacity: 0;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}