:root {
    --cream: #F5EFE7;
    --warm-orange: #E8A87C;
    --deep-brown: #5C4033;
    --soft-peach: #F4D9C6;
    --rust: #C97D60;
    --charcoal: #3D3028;
}

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

body {
    font-family: 'Karla', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 239, 231, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid var(--warm-orange);
}

.logo {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-brown);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rust);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, var(--soft-peach) 0%, transparent 70%);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(5deg); }
}

.hero-content {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Fraunces', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--deep-brown);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--rust);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    box-shadow: 0 10px 30px rgba(201, 125, 96, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 125, 96, 0.4);
    background: var(--deep-brown);
}

.hero-image {
    display: flex;
    justify-content: center;
    animation: fadeIn 1.5s ease-out 0.3s both;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* About Section */
.about {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--cream) 100%);
    position: relative;
}

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

.about h2 {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    color: var(--deep-brown);
    margin-bottom: 3rem;
}

.simba-tribute {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 3rem 0;
    border-left: 5px solid var(--rust);
}

.simba-tribute h3 {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: var(--rust);
    margin-bottom: 1.5rem;
}

.simba-tribute p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.paw-print {
    font-size: 2rem;
    color: var(--warm-orange);
    margin: 1.5rem 0;
}

/* Products Section */
.products {
    padding: 6rem 5%;
    background: var(--cream);
}

.products h2 {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    color: var(--deep-brown);
    text-align: center;
    margin-bottom: 4rem;
}

.product-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.product-card p {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rust);
    margin-bottom: 1rem;
}

.shop-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--warm-orange);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.shop-button:hover {
    background: var(--rust);
    transform: scale(1.05);
}

/* Mission Section */
.mission {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--warm-orange) 0%, var(--rust) 100%);
    color: white;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission h2 {
    font-family: 'Fraunces', serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.mission p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Footer */
footer {
    background: var(--deep-brown);
    color: var(--cream);
    padding: 3rem 5%;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--soft-peach);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.copyright {
    margin-top: 2rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .about h2,
    .products h2,
    .mission h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }
}
