/* 
 * Premium Custom Stylesheet - Light Luxury Edition
 * Chicken Chicken - Personal Brand & Wellness Spa Website
 */

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

:root {
    --color-gold: #c5a880;
    --color-gold-hover: #d4af37;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
}
::-webkit-scrollbar-thumb {
    background: #d4d4d4;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a3a3a3;
}

/* Base Typographic Enhancements */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, .font-serif-luxury {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.15em;
    color: #000000;
}

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

/* Custom luxury styles */
.border-luxury {
    border-color: rgba(0, 0, 0, 0.08);
}

.hover-trigger:hover .hover-target {
    transform: scale(1.05);
}

.text-gold {
    color: var(--color-gold);
}

.bg-gold {
    background-color: var(--color-gold);
}

.border-gold {
    border-color: var(--color-gold);
}

/* Micro-animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes drawLine {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes textReveal {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

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

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

.animate-line {
    animation: drawLine 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Text Mask Reveal */
.text-reveal-wrap {
    overflow: hidden;
    display: block;
}

.text-reveal-item {
    display: inline-block;
    transform: translateY(100%);
    animation: textReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Animation Delay Utilities */
.delay-100 { animation-delay: 100ms !important; }
.delay-200 { animation-delay: 200ms !important; }
.delay-300 { animation-delay: 300ms !important; }
.delay-400 { animation-delay: 400ms !important; }
.delay-500 { animation-delay: 500ms !important; }
.delay-700 { animation-delay: 700ms !important; }
.delay-1000 { animation-delay: 1000ms !important; }

/* Scroll-Driven Top Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 100;
    background: transparent;
    pointer-events: none;
}

.scroll-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--color-gold);
    transition: width 0.1s ease;
}


/* Glassmorphism */
.glass-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.glass-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(250, 250, 250, 0.95);
}

/* Image styling */
.img-luxury-grayscale {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-luxury-grayscale:hover {
    transform: scale(1.03);
}

/* Interactive elements */
.luxury-btn {
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
    border: 1px solid #000000;
    color: #000000;
}

.luxury-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

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

.luxury-btn:hover::before {
    left: 0;
}

/* Gold variant luxury button */
.luxury-btn-gold {
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.luxury-btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.luxury-btn-gold:hover {
    color: #ffffff;
}

.luxury-btn-gold:hover::before {
    left: 0;
}
