/* 
 * WPS Creative Official Theme
 * Style: Bento Grid, Modern, Gradient, Glassmorphism
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --w-red: #F24636;
    --w-blue: #4185F4;
    --w-green: #34A853;
    --w-orange: #F9AB00;
    --w-dark: #1A1A1A;
    --w-gray: #F5F5F7;
    --w-border: #E5E5E5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--w-dark);
    background-color: #FFFFFF;
    line-height: 1.5;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }
.text-gradient {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; font-weight: 600; border-radius: 50px;
    transition: 0.3s; cursor: pointer;
}
.btn-primary {
    background: var(--w-red); color: white;
    box-shadow: 0 10px 20px rgba(242, 70, 54, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px); box-shadow: 0 15px 30px rgba(242, 70, 54, 0.4);
}
.btn-glass {
    background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1); color: var(--w-dark);
}
.btn-glass:hover {
    background: white; transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1200px;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px);
    border-radius: 16px; border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 15px 30px; z-index: 1000;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-brand { font-size: 24px; font-weight: 800; display: flex; align-items: center; gap: 10px; }

/* Hero */
.hero {
    padding-top: 180px; padding-bottom: 100px; text-align: center;
    background: radial-gradient(circle at 50% 0%, #FFF5F5 0%, #FFFFFF 100%);
}
.hero h1 {
    font-size: 72px; letter-spacing: -2px; line-height: 1.1; margin-bottom: 30px;
}
.hero p {
    font-size: 20px; color: #666; max-width: 600px; margin: 0 auto 50px;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-bottom: 20px;
}
.bento-item {
    background: #F9FAFB; border-radius: 24px; padding: 40px;
    position: relative; overflow: hidden; transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
}
.bento-item:hover {
    background: white; transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.05);
}
.bento-item.large { grid-column: span 2; grid-row: span 2; background: #1A1A1A; color: white; }
.bento-item.wide { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; }

/* Bento Content */
.b-tag {
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 15px; display: inline-block; padding: 6px 12px; border-radius: 6px;
}
.b-tag.red { background: rgba(242, 70, 54, 0.1); color: var(--w-red); }
.b-tag.blue { background: rgba(65, 133, 244, 0.1); color: var(--w-blue); }
.b-tag.dark { background: rgba(255,255,255,0.2); color: white; }

.b-title { font-size: 28px; font-weight: 700; margin-bottom: 15px; line-height: 1.2; }
.b-desc { font-size: 16px; opacity: 0.7; line-height: 1.6; }

/* Floating Elements in Bento */
.float-img {
    position: absolute; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: 0.5s;
}
.bento-item:hover .float-img { transform: scale(1.05); }

/* Marquee */
.marquee-container {
    overflow: hidden; white-space: nowrap; padding: 40px 0; background: white;
}
.marquee-content {
    display: inline-block; animation: scroll 20s linear infinite;
}
.marquee-item {
    display: inline-block; padding: 0 40px; font-size: 24px; font-weight: 700; color: #DDD;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Footer */
.footer {
    background: #111; color: white; padding: 80px 0; border-radius: 40px 40px 0 0; margin-top: 80px;
}
.footer-link { color: #888; display: block; margin-bottom: 15px; }
.footer-link:hover { color: white; }

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-item { grid-column: auto !important; grid-row: auto !important; height: 300px; }
    .hero h1 { font-size: 48px; }
}
