@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    /* Absolute Luxury Palette */
    --color-primary: #050505; /* Vantablack/Abyss */
    --color-primary-dark: #000000;
    --color-secondary: #D4AF37; /* Premium Metallic Gold */
    --color-secondary-hover: #F3E5AB; /* Soft Champagne Gold */
    --color-background: #080808; /* Charcoal Black */
    --color-text: #EAEAEA; /* Silver/Off-White for low eye strain */
    --color-gold-muted: rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Elegance & Negative Space */
.luxury-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* New Luxury UI Components */
.luxury-card {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.8) 0%, rgba(5, 5, 5, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 2px solid var(--color-secondary);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.8), 0 0 25px -5px rgba(212, 175, 55, 0.15);
}

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

/* Gold Glows & Gradients */
.glow-gold {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    transition: box-shadow 0.5s ease;
}

.glow-gold:hover {
    box-shadow: 0 0 45px rgba(212, 175, 55, 0.4);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #8C7322 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold Dividers */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-secondary) 50%, transparent 100%);
    opacity: 0.5;
    margin: 2rem auto;
    width: 60%;
}

.gold-divider-vertical {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, var(--color-secondary) 50%, transparent 100%);
    opacity: 0.3;
}

/* Sleek Luxury Button */
.btn-luxury {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    border-radius: 0px; /* Sharp corners for luxury feel */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 500;
    overflow: hidden;
    transition: color 0.4s ease;
    z-index: 1;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-luxury:hover {
    color: #000;
}

.btn-luxury:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-luxury-solid {
    background: var(--color-secondary);
    color: #000;
    border: none;
}

.btn-luxury-solid::before {
    background: #F3E5AB;
}

/* Image Lightbox Modal */
.modal {
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transform: scale(0.98);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.visible .modal-content {
    transform: scale(1);
}

/* Elegant Slow Fade Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 150ms; }
.delay-200 { transition-delay: 300ms; }
.delay-300 { transition-delay: 450ms; }

/* Slow Aura/Float Animations */
@keyframes slowFloat {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

.floating {
    animation: slowFloat 8s ease-in-out infinite;
}

/* Gallery Luxury Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1); /* Black and white by default */
    transform: scale(1.02);
    transition: filter 0.8s ease, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    filter: grayscale(0%) contrast(1); /* Color on hover */
    transform: scale(1.06);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, transparent 60%);
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.gallery-item:hover::after {
    opacity: 0.4;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    color: var(--color-secondary);
    z-index: 10;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
