/* Warm Card Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --warm-primary: #ff6b6b;
    --warm-secondary: #ffd93d;
    --warm-accent: #6bcf7f;
    --warm-bg: #fff5f5;
    --warm-card: #ffffff;
    --warm-text: #2d3436;
    --warm-text-light: #636e72;
    --warm-border: #ffe0e0;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: var(--warm-bg);
    color: var(--warm-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: var(--warm-card);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--warm-primary);
}

.nav-brand img {
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--warm-text);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--warm-primary);
}

/* Hero Section */
.hero {
    padding: 5rem 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 3rem;
    color: var(--warm-text);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--warm-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-warm {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--warm-primary), #ff8787);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s;
}

.btn-warm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.5rem;
    color: var(--warm-text);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--warm-text-light);
}

/* Story Section */
.story {
    padding: 5rem 2rem;
    background: var(--warm-card);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--warm-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    display: block;
}

/* Collection Section */
.collection {
    padding: 5rem 2rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--warm-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--warm-text);
    margin-bottom: 0.75rem;
}

.card-content p {
    color: var(--warm-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.rating {
    color: var(--warm-primary);
    font-weight: 600;
}

.reviews {
    color: var(--warm-text-light);
}

/* Community Section */
.community {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fff5f5, #ffe0e0);
    text-align: center;
}

.community-content {
    max-width: 700px;
    margin: 0 auto;
}

.community-content h2 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.5rem;
    color: var(--warm-text);
    margin-bottom: 1.5rem;
}

.community-content p {
    font-size: 1.15rem;
    color: var(--warm-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    background: var(--warm-card);
    border-top: 1px solid var(--warm-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--warm-primary);
}

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

.footer-links a {
    text-decoration: none;
    color: var(--warm-text-light);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--warm-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--warm-border);
    color: var(--warm-text-light);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}
