/* 
 * WPS Warm Colorful Official Theme
 * Style: Warm, Gradient, Creative, Soft
 */

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

:root {
    /* Warm Colorful Palette */
    --bg-page: #FFF9F5; /* Very soft warm white/cream */
    --bg-secondary: #FFF0E6; /* Slightly darker warm tone */
    
    --text-main: #2D2420; /* Soft dark brown instead of black */
    --text-muted: #7A6F6A;
    
    /* Warm Gradients */
    --accent-primary: #FF6B6B;   /* Warm Coral */
    --accent-secondary: #FFD93D; /* Warm Yellow */
    --accent-tertiary: #6BCB77;  /* Soft Green */
    
    --gradient-warm: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 50%, #FFD93D 100%);
    --gradient-hero: linear-gradient(120deg, #F6D365 0%, #FDA085 100%);
    --gradient-text: linear-gradient(45deg, #FF6B6B, #FF8E53);
    
    --border-color: rgba(255, 107, 107, 0.1);
    --shadow-warm: 0 10px 30px rgba(255, 107, 107, 0.15);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.03);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 10; }
.section { padding: 100px 0; position: relative; }

/* Typography */
h1, h2, h3, h4 { color: var(--text-main); font-weight: 700; letter-spacing: -0.5px; }
.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(255, 249, 245, 0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0; z-index: 1000;
}
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 30px; }
.nav-link { color: var(--text-muted); font-size: 15px; font-weight: 500; }
.nav-link:hover, .nav-link-active { color: var(--accent-primary); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 32px; font-weight: 600; border-radius: 50px;
    font-size: 15px; cursor: pointer; transition: 0.3s;
    position: relative; overflow: hidden; border: none;
}
.btn-primary {
    background: var(--gradient-hero); color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.3);
}
.btn-outline {
    background: white; border: 1px solid var(--accent-primary); color: var(--accent-primary);
}
.btn-outline:hover {
    background: #FFF0F0;
}

/* Hero */
.hero {
    min-height: 95vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding-top: 80px; position: relative; overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #FFF0E6 0%, #FFF9F5 70%);
}
/* Abstract Shapes */
.hero::before {
    content: ''; position: absolute; top: -10%; left: -10%; width: 50%; height: 50%;
    background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%);
    border-radius: 50%; filter: blur(100px); opacity: 0.4;
    animation: floatShape 10s infinite alternate;
}
.hero::after {
    content: ''; position: absolute; bottom: -10%; right: -10%; width: 50%; height: 50%;
    background: linear-gradient(135deg, #F6D365 0%, #FDA085 100%);
    border-radius: 50%; filter: blur(100px); opacity: 0.4;
    animation: floatShape 12s infinite alternate-reverse;
}
@keyframes floatShape { from { transform: translate(0,0); } to { transform: translate(30px, 30px); } }

.hero-tag {
    display: inline-block; padding: 6px 16px; border-radius: 50px;
    background: linear-gradient(90deg, #FF9A9E, #FECFEF); color: white;
    font-size: 13px; font-weight: 600; margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(255, 154, 158, 0.3);
}
.hero h1 { font-size: 72px; line-height: 1.1; margin-bottom: 30px; letter-spacing: -1px; color: #2D2420; }
.hero p { font-size: 20px; color: var(--text-muted); max-width: 600px; margin: 0 auto 50px; }

/* Cards (Soft Warm) */
.card-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.card {
    background: white; border: 1px solid rgba(0,0,0,0.03);
    border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
    transition: 0.4s; box-shadow: var(--shadow-card);
}
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.2);
}
.card-icon {
    width: 60px; height: 60px; border-radius: 16px;
    background: var(--bg-secondary); display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin-bottom: 24px; color: var(--accent-primary);
}

/* Feature Showcase */
.showcase-box {
    background: white;
    border-radius: 30px; padding: 60px; text-align: center; position: relative;
    box-shadow: var(--shadow-warm);
    border: 1px solid rgba(255,255,255,0.5);
}

/* Floating Elements */
.float-bubble {
    position: absolute; border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--text-main);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color); padding: 80px 0; margin-top: 100px;
    background: white;
}
.footer h4 { margin-bottom: 20px; }
.footer a { display: block; color: var(--text-muted); margin-bottom: 12px; font-size: 14px; }
.footer a:hover { color: var(--accent-primary); }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 42px; }
    .nav-links { display: none; }
}
