/* Modern Asian-inspired design system */
:root {
    /* Color palette - completely different from previous site */
    --primary: #E83E8C;
    --secondary: #6610F2;
    --accent: #20C997;
    --warning: #FD7E14;
    --dark: #343A40;
    --light: #F8F9FA;
    --bg-color: #080516;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #F8F9FA;
    --text-muted: rgba(248, 249, 250, 0.7);
    --border-radius: 8px;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --container-width: 1140px;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Background overlay for depth */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(102, 16, 242, 0.2), transparent),
                radial-gradient(ellipse at bottom, rgba(232, 62, 140, 0.2), transparent);
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--light);
    position: relative;
    margin-bottom: 2.5rem;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 4px;
    width: 60px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

h3 {
    font-size: 1.5rem;
    color: var(--light);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--light);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    padding: 0 2rem;
    margin: 0 auto;
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--light);
    border: none;
    box-shadow: 0 4px 15px rgba(232, 62, 140, 0.3);
}

.primary-btn:hover {
    box-shadow: 0 7px 20px rgba(232, 62, 140, 0.5);
    transform: translateY(-3px);
    color: var(--light);
}

.outline-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.outline-btn:hover {
    background-color: var(--primary);
    color: var(--light);
}

.glow-btn {
    background: var(--primary);
    color: var(--light);
    border: none;
    box-shadow: 0 0 15px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 62, 140, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(232, 62, 140, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 62, 140, 0);
    }
}

/* Header & Navigation */
header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(8, 5, 22, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-svg {
    width: 40px;
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--light);
    margin: 6px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pattern-svg {
    width: 100%;
    max-width: 500px;
}

/* Categories Section */
.categories {
    background-color: rgba(102, 16, 242, 0.05);
}

.categories h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.categories h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.category-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Featured Section */
.featured {
    background-color: rgba(232, 62, 140, 0.05);
}

.featured h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.featured h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.placeholder-img {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.placeholder-img svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card h3, 
.featured-card p {
    padding: 0 1.5rem;
}

.featured-card h3 {
    margin-top: 1.5rem;
}

.featured-card .btn {
    margin: 1rem 1.5rem 1.5rem;
}

/* About Section */
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 62, 140, 0.3) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content .btn {
    margin-top: 1rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    text-align: center;
    padding: 5rem 0;
}

.cta h2 {
    color: var(--light);
    margin-bottom: 1rem;
}

.cta h2::after {
    display: none;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta .glow-btn {
    background: var(--light);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-icon {
    width: 60px;
    height: 60px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.8rem;
}

.link-group a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 101;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(8, 5, 22, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav li {
        margin: 1.5rem 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-links {
        width: 100%;
        justify-content: space-around;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .categories-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .cta {
        padding: 4rem 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content, 
.category-card, 
.featured-card, 
.about-content {
    animation: fadeIn 1s ease-out forwards;
}
