@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Typography classes */
.font-serif-luxury {
    font-family: 'Cinzel', serif;
    letter-spacing: -0.01em;
}

.font-editorial {
    font-family: 'Cormorant Garamond', Georgia, serif;
    letter-spacing: 0.02em;
}

.font-sans-clean {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #090B0E;
}
::-webkit-scrollbar-thumb {
    background: #2D3748;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C5A880;
}

/* Glassmorphism & Cards */
.glass-panel {
    background: rgba(18, 22, 29, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: rgba(24, 30, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 168, 128, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(197, 168, 128, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px 0 rgba(197, 168, 128, 0.1);
}

/* Accent Gradients & Borders */
.gold-gradient-text {
    background: linear-gradient(135deg, #E6D2B5 0%, #C5A880 50%, #9E7D53 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-gradient-bg {
    background: linear-gradient(135deg, #C5A880 0%, #9E7D53 100%);
}

.gold-gradient-bg:hover {
    background: linear-gradient(135deg, #D4B991 0%, #B08E62 100%);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-float {
    animation: floatSlow 6s ease-in-out infinite;
}

/* Input Fields styling */
.custom-input {
    background: rgba(10, 13, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #F3F4F6;
    transition: all 0.2s ease;
}

.custom-input:focus {
    border-color: #C5A880;
    box-shadow: 0 0 0 2px rgba(197, 168, 128, 0.2);
    outline: none;
}

/* Active Navigation Link Highlight */
.nav-link-active {
    color: #C5A880 !important;
    position: relative;
}

.nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #C5A880 0%, #9E7D53 100%);
    border-radius: 2px;
}

/* Floating Back to Top Button */
#back-to-top {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
}

/* Toast alert notification styling */
.toast-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    background: #12161D;
    border: 1px solid rgba(197, 168, 128, 0.4);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6), 0 0 15px rgba(197, 168, 128, 0.2);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.3s ease forwards;
}

