/* Color Variables */
:root {
    --cream: #FFF7EC;
    --orange: #E8813A;
    --cocoa: #4A3423;
    --milk: #FFE3C2;
}

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

body {
    font-family: 'Baloo 2', sans-serif;
    line-height: 1.6;
    color: var(--cocoa);
    background-color: var(--cream);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-cream { background-color: var(--cream); }
.section-milk { background-color: var(--milk); }

h1, h2, h3, h4, h5 {
    font-weight: 800;
    color: var(--cocoa);
}

h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
}

/* Header */
header {
    background-color: var(--cream);
    border-bottom: 2px solid var(--cocoa);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    padding: 10px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    text-shadow: 1px 1px 0 var(--cocoa);
    line-height: 1;
}

.shiba-logo {
    width: 48px;
    height: 48px;
}

nav a {
    margin: 0 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--cocoa);
    transition: color 0.3s;
}

nav a:hover {
    color: var(--orange);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid var(--cocoa);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 0 var(--cocoa);
}

.btn-primary {
    background-color: var(--orange);
    color: var(--cream);
}

.btn-primary:hover {
    background-color: #f79654;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--cocoa);
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 var(--cocoa);
}

.btn-secondary {
    background-color: var(--cream);
    color: var(--cocoa);
}

.btn-secondary:hover {
    background-color: var(--milk);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--cocoa);
}
.btn-secondary:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 var(--cocoa);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.3rem;
}

/* Hero Section */
.hero {
    background-color: var(--cream);
    text-align: center;
    padding: 100px 0 140px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--orange);
    -webkit-text-stroke: 1px var(--cocoa);
    text-shadow: 3px 3px 0 var(--cocoa);
}

.hero p {
    font-size: 1.4rem;
    font-weight: 600;
    max-width: 750px;
    margin: 0 auto 50px;
    color: var(--cocoa);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Wavy Dividers */
.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path fill="%23FFE3C2" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,144C672,139,768,181,864,181.3C960,181,1056,139,1152,128C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center bottom;
    background-size: 100% 100%;
    z-index: 10;
}

.wave-divider.to-cream {
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path fill="%23FFF7EC" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,144C672,139,768,181,864,181.3C960,181,1056,139,1152,128C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center bottom;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Cards */
.card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 24px;
    border: 2px solid var(--cocoa);
    box-shadow: 4px 4px 0 var(--cocoa);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section-cream .card {
    background: var(--milk);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 8px 8px 0 var(--orange);
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--orange);
    text-shadow: 1px 1px 0 var(--cocoa);
}

.card p {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Paw-print bullets */
.pricing-card ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.pricing-card ul li {
    padding: 12px 0;
    border-bottom: 2px dashed var(--milk);
    font-weight: 600;
    position: relative;
    padding-left: 32px;
}

.pricing-card ul li::before {
    content: "🐾";
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.1rem;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Pricing Table */
.pricing-table {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 24px;
    border: 2px solid var(--cocoa);
    box-shadow: 4px 4px 0 var(--cocoa);
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 8px 8px 0 var(--orange);
}

.pricing-card.popular {
    background-color: var(--milk);
    border-color: var(--orange);
    border-width: 3px;
    transform: scale(1.05);
    z-index: 10;
}
.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.07);
}

.badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--cream);
    padding: 6px 24px;
    border-radius: 20px;
    border: 2px solid var(--cocoa);
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 2px 2px 0 var(--cocoa);
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--orange);
    text-shadow: 1px 1px 0 var(--cocoa);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--cocoa);
    margin-bottom: 30px;
    line-height: 1;
}

.price span {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cocoa);
    opacity: 0.8;
}

.pricing-card .btn-primary {
    width: 100%;
}

/* Reviews */
.review-card {
    text-align: center;
}

.review-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 800;
    color: var(--orange);
    text-shadow: 1px 1px 0 var(--cocoa);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream);
    padding: 25px 30px;
    border-radius: 24px;
    border: 2px solid var(--cocoa);
    box-shadow: 4px 4px 0 var(--cocoa);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--orange);
    text-shadow: 1px 1px 0 var(--cocoa);
}

.faq-item p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--cocoa);
    color: var(--cream);
    padding: 60px 0 40px;
    text-align: center;
    border-top: 4px solid var(--orange);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    margin: 0 15px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s;
}

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

/* Other Pages Content */
.page-content {
    padding: 80px 0;
    min-height: 70vh;
}
.page-content h1 {
    font-size: 3.5rem;
    color: var(--orange);
    text-shadow: 2px 2px 0 var(--cocoa);
    margin-bottom: 40px;
    text-align: center;
}
.content-box {
    background: var(--cream);
    border: 2px solid var(--cocoa);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 6px 6px 0 var(--milk);
    max-width: 800px;
    margin: 0 auto;
}
.content-box h2 {
    text-align: left;
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--cocoa);
}
.content-box p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.content-box ul {
    padding-left: 20px;
    margin-bottom: 30px;
    list-style: none;
}
.content-box li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    font-weight: 600;
    font-size: 1.1rem;
}
.content-box li::before {
    content: "🐾";
    position: absolute;
    left: 0;
    top: 2px;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }
    
    nav {
        margin: 15px 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 100%;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/* News Section & Articles */
.news-meta { font-size: 0.95rem; color: var(--orange); margin-bottom: 10px; font-weight: 800; }
.news-card { text-align: left; display: flex; flex-direction: column; }
.news-card h3 { font-size: 1.4rem; line-height: 1.4; margin-bottom: 12px; color: var(--cocoa); text-shadow: none; }
.news-card p.excerpt { flex-grow: 1; color: var(--cocoa); opacity: 0.8; margin-bottom: 20px; font-weight: 500; }
.news-link { font-weight: 800; color: var(--orange); text-decoration: underline; text-decoration-style: dashed; text-underline-offset: 4px; }
.news-link:hover { color: var(--cocoa); }
.article-header { text-align: center; margin-bottom: 40px; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.3; }
.article-meta { font-size: 1rem; color: var(--cocoa); opacity: 0.8; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; font-weight: 600; }
.breadcrumb { font-weight: 700; margin-bottom: 20px; text-align: left; }
.breadcrumb a { color: var(--orange); text-decoration: underline; }
.article-body { font-size: 1.15rem; line-height: 1.8; font-weight: 500; }
.article-body h2 { text-align: left; font-size: 1.8rem; margin: 40px 0 20px; border-bottom: 2px dashed var(--milk); padding-bottom: 10px; }
.article-body h3 { font-size: 1.4rem; margin: 30px 0 15px; }
.article-body p { margin-bottom: 20px; }
.article-body ul { padding-left: 20px; margin-bottom: 20px; }
.article-body li { margin-bottom: 10px; position: relative; padding-left: 30px; }
.article-body li::before { content: "🐾"; position: absolute; left: 0; top: 2px; }
.article-body a { color: var(--orange); text-decoration: underline; font-weight: 700; }
.article-body a:hover { color: var(--cocoa); }

.floating-btn { position: fixed; bottom: 30px; right: 30px; background-color: var(--orange); color: var(--cream); width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; box-shadow: 0 4px 0 var(--cocoa); border: 2px solid var(--cocoa); cursor: pointer; z-index: 1000; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none; }
.floating-btn:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 8px 0 var(--cocoa); color: var(--cream); }
@keyframes float-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero-img-container { animation: float-bounce 3s infinite ease-in-out; display: flex; justify-content: center; margin-bottom: 20px; }

html { scroll-behavior: smooth; }

