/* CSS Variables - Dark Brown & Cream Color Scheme */
:root {
    --color-hero-bg: #3d2314;
    --color-hero-text: #f5f0e8;
    --color-primary: #6b8e23;
    --color-primary-hover: #556b2f;
    --color-cream: #f5f0e8;
    --color-cream-dark: #ebe5d9;
    --color-brown: #8b7355;
    --color-brown-light: #a0916f;
    --color-text: #3d3d3d;
    --color-text-light: #666666;
    --color-white: #ffffff;
    --color-border: #d4c9b8;
    --color-footer-bg: #2d1a0e;

    --font-display: 'Rye', cursive;
    --font-heading: 'Alfa Slab One', cursive;
    --font-body: 'Lato', sans-serif;

    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: #5D2E0C;
    color: var(--color-white);
    border: 2px solid #8B4513;
}

.btn-primary:hover {
    background-color: #8B4513;
    color: #FF0000;
    transform: scale(1.02);
    box-shadow: 0 0 10px #FF4500, 0 0 20px #FF6600, 0 0 30px #FF8C00, inset 0 0 15px rgba(255, 69, 0, 0.4);
    text-shadow: 0 0 8px #FF4500, 0 0 15px #FF6600;
    border-color: #FF4500;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(61, 35, 20, 0.85), rgba(61, 35, 20, 0.85)), url('hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-hero-text);
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero .container {
    width: 100%;
}

.hero-content {
    max-width: 600px;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--color-hero-text);
    text-align: left;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.95;
    line-height: 1.6;
    text-align: left;
}

.hero-note {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 36px;
    font-style: italic;
    text-align: left;
}

.hero .btn {
    display: inline-block;
}

/* Section Styles */
.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
    background-color: var(--color-cream);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.about-text p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.about-text p:last-child {
    margin-bottom: 0;
}

.important-notice {
    background-color: #c41e3a;
    border-left: 4px solid #8b0000;
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: #ffffff;
}

.important-notice h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
}

.important-notice p {
    color: #ffffff;
    margin: 0;
}

/* Animals Section */
.animals-section {
    padding: 80px 0;
    background-color: var(--color-cream);
}

.animals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.animal-card {
    text-align: center;
}

.animal-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.animal-card:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.animal-card span {
    display: block;
    margin-top: 12px;
    font-weight: 400;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

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

.step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-brown);
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--color-cream);
}

.pricing-card {
    max-width: 400px;
    margin: 0 auto 30px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--color-border);
}

.price {
    margin-bottom: 30px;
}

.price .amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-primary);
    font-family: var(--font-display);
}

.price .period {
    display: block;
    color: var(--color-text-light);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
}

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

.pricing-features svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.hours-card {
    max-width: 400px;
    margin: 0 auto;
    background-color: var(--color-cream-dark);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
}

.hours-card h3 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: underline;
}

.hours-time {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.hours-days {
    color: var(--color-text-light);
}

/* Footer */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-cream);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-cream);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--color-cream);
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-cream);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-cream);
}

.footer-contact p {
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-auth-links {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.footer-auth-links a {
    color: #f5f0e8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-auth-links a:hover {
    color: #FFD700;
}

.footer-auth-links .divider {
    color: rgba(255, 255, 255, 0.3);
}

.footer-vet-link {
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.footer-vet-link:hover {
    border-color: #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .animals-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: auto;
    }

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

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .about-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .animals-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-links li {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .animals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    .btn {
        padding: 12px 24px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
    }
}
