/* GLOBAL RESET & TYPOGRAPHY */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background-color: #fdfbf7; color: #1a1a1a; line-height: 1.6; }

/* TYPOGRAPHY & UTILITIES */
.title, .section-title { font-family: 'Noto Serif SC', Georgia, serif; font-weight: 700; color: #1e293b; }
.section-title { font-size: 2.25rem; text-align: center; margin-bottom: 0.5rem; }
.underline { height: 0.375rem; width: 6rem; background-color: #b91c1c; margin: 0 auto 3rem; border-radius: 9999px; }
.content-container { max-width: 800px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 1.5rem; }

/* BUTTONS */
.btn { display: inline-block; font-weight: 700; font-size: 1.125rem; padding: 1rem 2rem; border-radius: 1.5rem; border: none; cursor: pointer; text-align: center; text-decoration: none; transition: 0.2s; }
.primary-btn { background-color: #b91c1c; color: #ffffff; width: 100%; }
.primary-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.inline-btn { width: auto; margin-top: 1.5rem; }

/* NAVBAR */
.navbar { position: fixed; top: 0; width: 100%; background: #ffffff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 1000; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Noto Serif SC', serif; font-size: 1.5rem; font-weight: 700; color: #b91c1c; text-decoration: none; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: #1e293b; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: #b91c1c; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 3px; background-color: #1e293b; border-radius: 3px; }

/* HERO & CALCULATOR SECTION */
.hero-section { padding-top: 8rem; text-align: center; background: linear-gradient(to bottom, #ffffff, #fdfbf7); }
.hero-content { max-width: 640px; margin: 0 auto; }
.hero-section .title { font-size: 3rem; line-height: 1.2; margin-bottom: 1rem; }
.hero-section .subtitle { font-size: 1.25rem; color: #475569; margin-bottom: 2.5rem; }

/* Fixed alignment issue */
.calculator-card { background: white; border: 2px solid #e2e8f0; border-radius: 2rem; padding: 2.5rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); margin: 0 auto 3rem auto; max-width: 100%; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; text-align: left; }
.label { font-size: 0.875rem; font-weight: 600; color: #475569; margin-bottom: 0.5rem; display: block; }
.select { width: 100%; padding: 0.75rem; border: 1px solid #cbd5e1; border-radius: 0.5rem; font-size: 1rem; }

/* CALCULATOR RESULT CARD */
.result-wrapper { margin-top: 2rem; display: flex; justify-content: center; }
.result-card-link { text-decoration: none; color: inherit; width: 90%; max-width: 400px; display: block; }
.result-card { height: auto; padding: 2rem; border: 4px solid #b91c1c; border-radius: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #fff; animation: popIn 0.3s ease-out; transition: transform 0.2s, box-shadow 0.2s; }
.result-card-link:hover .result-card { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
@keyframes popIn { 0% { transform: scale(0.9); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.result-icon { font-size: 4rem; }
.animal-name { font-size: 1.5rem; color: #b91c1c; margin-top: 0.5rem; font-weight: 700;}
.element-label { font-size: 1rem; color: #475569; text-transform: uppercase; letter-spacing: 1px;}
.click-hint { font-size: 0.875rem; color: #b91c1c; margin-top: 1rem; font-weight: 600; opacity: 0.8; }
.hidden { display: none !important; }

.sales-copy h2 { font-size: 1.75rem; margin-bottom: 1rem; color: #1e293b;}
.sales-copy p { font-size: 1.125rem; color: #475569; margin-bottom: 1.5rem;}

/* SHOP SECTION */
.shop-section { background: white; }
.shop-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; padding: 0 1.5rem; }
.product-card-link { display: block; text-decoration: none; color: inherit; }
.product-card { background: #ffffff; border: 2px solid #e2e8f0; border-radius: 1.5rem; padding: 2rem 1.5rem; text-align: center; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; height: 100%; display: flex; flex-direction: column; justify-content: space-between; align-items: center; }
.product-card-link:hover .product-card { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); border-color: #b91c1c; }
.product-icon { font-size: 4rem; margin-bottom: 0.5rem; }
.product-title { font-size: 1.5rem; margin-bottom: 0.5rem; color: #1e293b; font-weight: 700; }
.product-subtitle { font-size: 1rem; color: #64748b; margin-bottom: 1.5rem; }
.shop-btn { width: auto; padding: 0.75rem 2rem; margin-top: auto; }

.refund-policy { max-width: 800px; margin: 4rem auto 0; text-align: center; font-size: 0.875rem; color: #64748b; padding: 1.5rem; background: #f8fafc; border-radius: 1rem; }

/* FAQ SECTION */
.faq-item { background: white; padding: 1.5rem; border-radius: 1rem; margin-bottom: 1rem; border: 1px solid #e2e8f0; }
.faq-item h3 { font-size: 1.125rem; color: #b91c1c; margin-bottom: 0.75rem; }
.faq-item p { color: #475569; }

/* ZODIAC & OFFICERS SECTION */
.zodiac-section { background: white; scroll-margin-top: 100px; }
.zodiac-detail { background: #f8fafc; padding: 2rem; border-radius: 1.5rem; margin-bottom: 3rem; border-left: 4px solid #b91c1c; scroll-margin-top: 100px; }
.zodiac-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.zodiac-header .zodiac-icon { font-size: 2.5rem; }
.zodiac-header h3 { font-size: 1.5rem; color: #1e293b; }
.zodiac-detail p { margin-bottom: 1.5rem; color: #475569; }
.element-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.element-list li { background: white; padding: 1rem; border-radius: 0.5rem; border: 1px solid #e2e8f0; font-size: 0.95rem; }

/* IN-LINE UPSELL FOR ZODIACS */
.upsell-container { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 2px dashed #cbd5e1; text-align: center; }
.upsell-title { font-size: 1.25rem; color: #1e293b; margin-bottom: 1.5rem; font-family: 'Noto Serif SC', serif; }
.upsell-link { max-width: 280px; margin: 0 auto; }
.upsell-card { box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

.section-divider { border: 0; height: 1px; background: #e2e8f0; margin: 4rem 0; }
.officers-intro { text-align: center; font-size: 1.125rem; color: #475569; margin-bottom: 3rem; }
.officers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.officer-card { background: #ffffff; border: 1px solid #e2e8f0; padding: 1.25rem; border-radius: 0.75rem; font-size: 0.95rem; color: #475569; }
.officer-card strong { color: #b91c1c; display: block; margin-bottom: 0.25rem; font-size: 1.1rem;}

/* ABOUT SECTION */
.bio-content p { margin-bottom: 1.5rem; font-size: 1.125rem; color: #334155; }
.signature { font-family: 'Noto Serif SC', serif; font-size: 1.25rem; margin-top: 2rem; }

/* FOOTER */
.main-footer { text-align: center; padding: 2rem; background: #1e293b; color: #94a3b8; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: white; text-align: center; padding: 1rem 0; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hero-section .title { font-size: 2.25rem; }
    .hero-section { padding-top: 6rem; }
}