:root {
    --primary: #fd81c9;
    --primary-dark: #f60099;
    --secondary: #0ebbfd;
    --accent: #ffd438;
    --dark: #000000;
    --light: #F7F7F7;
    --white: #FFFFFF;
    --text: #333333;
    --text-light: #666666;
    --gradient: linear-gradient(to bottom, #94e1fe, #f60099);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Calibri, 'DM Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
}

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

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

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

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

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

/* Back link (Terms of Service page) */
.back-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-dark);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
    padding: 0;
    position: relative;
    background: linear-gradient(to bottom, #94e1fe, #fb8ed2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, white);
    pointer-events: none;
    z-index: 1;
}

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

.hero-content {
    max-width: 800px;
    padding: .15rem 2rem 4.5rem;
    animation: fadeInUp 1s ease;
}

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

.hero h1 {
    font-family: 'Cherry Bomb One', 'Fredoka', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 500;
}

.tagline {
    font-family: 'Gochi Hand', cursive;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 157, 0.4);
    background: var(--primary-dark);
}

/* Section Styling */
section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

section:nth-child(even) {
    background: var(--light);
}

section.hero {
    background: linear-gradient(to bottom, #94e1fe, #fb8ed2);
}

.section-title {
    font-family: 'Cherry Bomb One', 'Fredoka', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 3rem;
    align-items: stretch;
}

.about-text h3 {
    font-family: 'Gochi Hand', 'Fredoka', sans-serif;
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-text strong {
    color: var(--primary);
    font-weight: 700;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    width: 75%;
    margin: auto;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Typewriter effect */
.about-text .typewriter-line {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 2rem;
}

.typewriter-fuzz {
    --caret: currentcolor;
}

.typewriter-fuzz::before {
    content: "";
    animation: typewriterFuzz 12s infinite;
}

.typewriter-fuzz::after {
    content: "";
    border-right: 1px solid var(--caret);
    animation: blink 0.5s linear infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes typewriterFuzz {
    /* "for Furries." — type then delete */
     0.0%, 48.0% { content: ""; }
     1.5%, 46.5% { content: "f"; }
     3.0%, 45.0% { content: "fo"; }
     4.5%, 43.5% { content: "for"; }
     6.0%, 42.0% { content: "for "; }
     7.5%, 40.5% { content: "for F"; }
     9.0%, 39.0% { content: "for Fu"; }
    10.5%, 37.5% { content: "for Fur"; }
    12.0%, 36.0% { content: "for Furr"; }
    13.5%, 34.5% { content: "for Furri"; }
    15.0%, 33.0% { content: "for Furrie"; }
    16.5%, 31.5% { content: "for Furries"; }
    18.0%, 30.0% { content: "for Furries."; }

    /* "by Furries." — type then delete */
    52.0%, 97.0% { content: ""; }
    53.5%, 95.5% { content: "b"; }
    55.0%, 94.0% { content: "by"; }
    56.5%, 92.5% { content: "by "; }
    58.0%, 91.0% { content: "by F"; }
    59.5%, 89.5% { content: "by Fu"; }
    61.0%, 88.0% { content: "by Fur"; }
    62.5%, 86.5% { content: "by Furr"; }
    64.0%, 85.0% { content: "by Furri"; }
    65.5%, 83.5% { content: "by Furrie"; }
    67.0%, 82.0% { content: "by Furries"; }
    68.5%, 80.5% { content: "by Furries."; }
}

@media (prefers-reduced-motion) {
    .typewriter-fuzz::after {
        animation: none;
    }

    @keyframes typewriterFuzzSimple {
        0%, 49% { content: "for Furries."; }
        50%, 100% { content: "by Furries."; }
    }

    .typewriter-fuzz::before {
        content: "for Furries.";
        animation: typewriterFuzzSimple 8s linear infinite;
    }
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Commission Info */
.commission-note {
    color: var(--text);
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.commission-note strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.commission-note a {
    color: var(--text);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.commission-note a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.pricing-menu {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-menu img {
    width: 100%;
    height: auto;
    display: block;
}

.coming-soon {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--text-light);
}

/* Care Instructions */
.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.care-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.care-card h3 {
    font-family: 'Gochi Hand', 'Fredoka', sans-serif;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.care-card ul {
    list-style: none;
    padding-left: 0;
}

.care-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.care-card li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

.care-subtitle {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.warning-box {
    background: var(--accent);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(255, 170, 0, 0.3);
}

.warning-box strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-button.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

.contact-button.secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.3);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Terms of Service Page */
.container {
    max-width: 900px;
    margin: 6rem auto 3rem;
    padding: 0 2rem;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
}

.terms-header h1 {
    font-family: 'Cherry Bomb One', 'Fredoka', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.terms-header p {
    font-style: italic;
    color: var(--text-light);
}

.terms-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.terms-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: var(--primary-dark);
}

/* Footer */
footer {
    background: #707070;
    color: white;
    padding: 1.5rem 2rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.7rem;
    color: white;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .logo img {
        height: 50px;
    }

    .terms-content {
        padding: 2rem 1.5rem;
    }

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

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
