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

:root {
    --primary: #1A1A1A; /* Rich Black */
    --primary-dark: #0D0D0D;
    --secondary: #C5A059; /* Soft Luxury Gold */
    --secondary-light: #E5C483;
    --accent: #F9F6F0; /* Off-white / Cream */
    --silver: #E2E8F0;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    background-color: #FCFBF7; /* Soft warm off-white */
    color: var(--primary);
}

body {
    font-family: var(--font-body);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Premium Glassmorphism - Luxury Edition */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--secondary-light);
    box-shadow: 0 30px 60px -12px rgba(197, 160, 89, 0.08);
    transform: translateY(-5px);
}

.glass-navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(235, 230, 220, 0.5);
}

/* Luxury Gradients */
.bg-gradient-premium {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    position: relative;
}

.text-gradient {
    background: linear-gradient(to right, var(--secondary), #E5C483);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Micro-animations & Effects */
.hover-lift {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease;
}

.hover-lift:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.05);
}

/* Luxury Button Glow */
.btn-luxury {
    background: var(--secondary);
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-luxury:hover {
    background: var(--secondary-light);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

/* Swiper Custom - Luxury */
.swiper-button-next, .swiper-button-prev {
    color: var(--secondary) !important;
    background: rgba(255, 255, 255, 0.9);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(235, 230, 220, 0.5);
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important;
    width: 30px !important;
    border-radius: 6px !important;
}

/* Scroll Progress */
#scroll-to-top {
    background: white;
    color: var(--secondary);
    border: 1px solid rgba(235, 230, 220, 0.5);
}

#scroll-to-top:hover {
    background: var(--secondary);
    color: white;
}

/* Soft Shadows */
.shadow-soft {
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.03);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #FAFAFA;
}

::-webkit-scrollbar-thumb {
    background: #E5C483;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Typography Hierarchy */
h1 { font-weight: 700; font-size: 3.5rem; line-height: 1.2; }
h2 { font-weight: 600; font-size: 2.5rem; line-height: 1.3; }
h3 { font-weight: 600; font-size: 1.75rem; line-height: 1.4; }

p {
    font-weight: 300;
    line-height: 1.8;
    color: #555555;
}
