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

:root {
    --primary: #182633;
    --primary-dark: #0f1821;
    --primary-light: #2c3e50;
    --secondary: #d4a373;
    --accent: #e63946;
    --cream: #f5f1e9;
    --bone: #e5e0d5;
    --slate-50: var(--cream);
    --slate-100: var(--bone);
    --slate-200: #d1ccc0;
    --slate-800: #1b2631;
    --slate-900: #121a21;
    --glass: rgba(245, 241, 233, 0.7);
    --glass-border: rgba(24, 38, 51, 0.1);
    --shadow-premium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--slate-50);
    color: var(--slate-900);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Navbar */
nav {
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-gradient {
    background: radial-gradient(circle at top right, rgba(24, 38, 51, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(212, 163, 115, 0.05), transparent);
    background-color: var(--cream);
}

.hero-image-container {
    position: relative;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-light);
    border-radius: 2rem;
    z-index: -1;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

/* Product Cards */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image-zoom {
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-zoom {
    transform: scale(1.1);
}

/* Buttons */
.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.btn-premium:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Utilities */
.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    background: var(--accent);
    padding: 1rem 0;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    white-space: nowrap;
}

/* Staggered Reveal */
.reveal-stagger {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-stagger.active {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Marquee */
@keyframes marquee-modern {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-modern {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    background: #0f1821;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-modern-content {
    display: flex;
    animation: marquee-modern 40s linear infinite;
    gap: 4rem;
}

.marquee-modern-content span {
    color: #d4a373;
    font-size: 1.2rem;
    font-weight: 800;
    opacity: 0.8;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.2em;
}

/* Shine Hover Effect */
.shine-hover {
    position: relative;
    overflow: hidden;
}

.shine-hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
}

.shine-hover:hover::after {
    left: 130%;
}

/* Floating Shapes */
@keyframes floating {
    0% { transform: translate(0, 0px) rotate(0deg); }
    50% { transform: translate(0, 15px) rotate(5deg); }
    100% { transform: translate(0, -0px) rotate(0deg); }
}

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

/* Micro-interactions */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Text Gradient Animate */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-gradient {
    background: linear-gradient(-45deg, #182633, #d4a373, #182633, #d4a373);
    background-size: 400% 400%;
    animation: gradient-shift 10s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hover Shine Effect */
.shine-hover {
    position: relative;
    overflow: hidden;
}

.shine-hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    pointer-events: none;
    opacity: 0;
}

.shine-hover:hover::after {
    opacity: 1;
    left: 100%;
    top: 100%;
}

/* Pulse Animation for CTA */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(24, 38, 51, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(24, 38, 51, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 38, 51, 0); }
}

.animate-pulse-premium {
    animation: pulse-glow 2s infinite;
}
