/* 
   GreenChasqui Luxury Design System 
   Aesthetics: Quiet Luxury / Liquid Glass / Organic Textures
*/

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

/* Global Typography */
* {
    font-family: 'Poppins', sans-serif;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fix Material Symbols: Prevent Poppins from overriding icons */
.material-symbols-outlined, 
.material-icons,
[class^="material-"] {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

:root {
    --primary-luxury: #064E3B;
    --accent-luxury: #22C55E;
    --bg-luxury: #FAFAF9;
    --stone-luxury: #E7E5E4;
    --text-luxury: #1C1917;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-luxury);
}

::selection {
    background-color: var(--primary-luxury);
    color: white;
}

/* Typography Utilities */
.font-luxury-serif { font-family: 'Poppins', sans-serif !important; font-weight: 300; }
.font-luxury-sans { font-family: 'Poppins', sans-serif !important; }
.font-headline { font-family: 'Poppins', sans-serif !important; font-weight: 800; letter-spacing: -0.02em; }

/* Design System Components */
.liquid-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.luxury-shadow {
    box-shadow: 0 20px 40px -15px rgba(6, 78, 59, 0.1);
}

.luxury-shadow-sm {
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}

.text-luxury-gold { color: var(--accent-luxury); }
.bg-luxury-green { background-color: var(--primary-luxury); }

/* Animations */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-fade-in-right { animation: fadeInRight 1.2s ease-out forwards; }
.animate-fade-in-left { animation: fadeInLeft 1.2s ease-out forwards; }

/* Organic Textures */
.organic-texture { position: relative; }
.organic-texture::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("https://www.transparenttextures.com/patterns/natural-paper.png");
    pointer-events: none;
    z-index: 1;
}

/* Category Cards & Hover States */
.category-card {
    background: white;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.category-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-color: var(--accent-luxury);
    box-shadow: 0 30px 60px -12px rgba(6, 78, 59, 0.12);
}

/* Luxury Button */
.btn-luxury {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(6, 78, 59, 0.5);
}
