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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F9F6F2;
}

/* CSS Variables for Colors */
:root {
    --pine-green: #2E4A34;
    --wood-brown: #6F4E37;
    --cream: #F9F6F2;
    --coastal-navy: #1F3B5C;
    --gold: #D4AF37;
    --shadow: rgba(47, 74, 52, 0.15);
    --light-shadow: rgba(47, 74, 52, 0.08);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--pine-green);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--pine-green);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--wood-brown);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--cream);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--pine-green);
    text-decoration: none;
    font-weight: 700;
}

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

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

.nav-link:hover {
    color: var(--wood-brown);
}

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

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

/* Mobile Menu Toggle - Hidden by default on desktop */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Ensure mobile menu toggle is always hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu,
    .nav-links {
        display: flex !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        list-style: none !important;
        gap: 2rem !important;
        margin: 0 !important;
    }
    
    .nav-links li,
    .nav-menu li {
        margin: 0 !important;
    }
    
    .nav-content,
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
    }
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--pine-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 120vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, var(--pine-green) 0%, var(--coastal-navy) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&h=1080&fit=crop&auto=format') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 74, 52, 0.56) 0%, rgba(31, 59, 92, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 100px 1rem 60px 1rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-image {
    width: 540px;
    height: 540px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.hero-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop text - single line */
.desktop-text {
    display: inline;
    white-space: nowrap;
}

/* Mobile text - hidden by default */
.mobile-text {
    display: none;
}

/* Desktop title - single line with periods */
.desktop-title {
    display: inline;
    white-space: nowrap;
}

/* Mobile title - hidden by default */
.mobile-title {
    display: none;
}

/* Animated paw print interactions */
.section-title i {
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    transform-origin: center;
}

.section-title i:hover {
    transform: scale(1.2) rotate(-10deg);
    color: var(--gold);
    filter: drop-shadow(0 3px 6px rgba(212, 175, 55, 0.4));
}

.kitten-name i {
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    transform-origin: center;
}

.kitten-name i:hover {
    transform: scale(1.4) rotate(20deg);
    color: var(--gold);
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

/* Mobile styles */
@media (max-width: 768px) {
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: inline;
    }
    
    .desktop-title {
        display: none;
    }
    
    .mobile-title {
        display: inline;
    }
    
    /* Reduce hero overlay opacity by 15% on mobile */
    .hero-overlay {
        background: linear-gradient(135deg, rgba(46, 74, 52, 0.41) 0%, rgba(31, 59, 92, 0.55) 100%);
    }
    
    .hero-subtitle {
        white-space: normal;
    }
    
    /* Larger mobile buttons for better touch targets */
    .hero-buttons .btn {
        padding: 20px 40px;
        font-size: 1.3rem;
        border-radius: 10px;
        min-width: 280px;
    }
    
    /* Keep adopt buttons appropriately sized on mobile */
    .btn-adopt {
        padding: 16px 32px;
        font-size: 1rem;
        min-width: 200px;
    }
    
    /* Stack hero buttons vertically on mobile with proper spacing */
    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    /* Make logo 20% bigger on mobile (540px + 20% = 648px) */
    .logo-image {
        width: 648px;
        height: 648px;
    }
}

/* Floating animation keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Paw print trail animation */
@keyframes pawTrail {
    0% { opacity: 0; transform: scale(0.5) rotate(-180deg); }
    50% { opacity: 0.7; transform: scale(1.1) rotate(0deg); }
    100% { opacity: 0; transform: scale(0.8) rotate(180deg); }
}

/* Staggered floating animation for paw accent */
.paw-accent i:nth-child(odd) {
    animation: float 3s ease-in-out infinite;
    animation-delay: 0s;
}

.paw-accent i:nth-child(even) {
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Interactive paw print effects */
.paw-accent i:hover {
    animation-play-state: paused;
}

/* Logo hover effect */
.logo-image {
    transition: all 0.4s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background: var(--wood-brown);
    color: white !important;
    box-shadow: 0 8px 25px rgba(111, 78, 55, 0.3);
    text-decoration: none !important;
}

.btn-primary:hover {
    background: #8B5A3C;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(111, 78, 55, 0.4);
    filter: brightness(1.1);
    color: white !important;
    text-decoration: none !important;
}

.btn-secondary {
    background: transparent;
    color: var(--pine-green) !important;
    border: 2px solid var(--pine-green);
    text-decoration: none !important;
}

.btn-secondary:hover {
    background: var(--pine-green);
    color: white !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 20px rgba(46, 74, 52, 0.3);
    text-decoration: none !important;
}

/* Special styling for secondary buttons on hero section (white background) */
.hero .btn-secondary {
    background: transparent;
    color: white !important;
    border: 2px solid white;
}

.hero .btn-secondary:hover {
    background: white;
    color: var(--pine-green) !important;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-adopt {
    background: var(--pine-green);
    color: white !important;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none !important;
}

.btn-adopt:hover {
    background: #3A5A42;
    transform: translateY(-2px);
    color: white !important;
    text-decoration: none !important;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.paw-accent {
    margin-top: 2rem;
    font-size: 2rem;
    color: var(--wood-brown);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.paw-accent i {
    transition: all 0.3s ease;
    cursor: pointer;
    transform-origin: center;
}

.paw-accent i:hover {
    transform: scale(1.3) rotate(15deg);
    color: var(--gold);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

/* Kittens Section */
.kittens {
    padding: 80px 0;
    background: var(--cream);
}

.kittens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.kitten-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--light-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kitten-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.kitten-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.kitten-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.kitten-card:hover .kitten-image img {
    transform: scale(1.05);
}

.kitten-info {
    padding: 1.5rem;
}

.kitten-name {
    font-size: 1.4rem;
    color: var(--pine-green);
    margin-bottom: 0.5rem;
}

.kitten-name i {
    color: var(--wood-brown);
    margin-right: 0.5rem;
}

.kitten-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wood-brown);
    margin-bottom: 1rem;
}

.kitten-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.kitten-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.kitten-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

@media (max-width: 480px) {
    .kitten-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .kitten-buttons .btn {
        flex: none;
        width: 100%;
    }
}

/* Adoption Section */
.adoption {
    padding: 80px 0;
    background: white;
}

.adoption-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--cream);
    box-shadow: 0 5px 20px var(--light-shadow);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--wood-brown);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--pine-green);
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--cream);
}

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

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pine-green);
    margin-bottom: 0.5rem;
    margin-top: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:first-child {
    margin-top: 0;
}

.faq-question:hover {
    color: var(--wood-brown);
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--wood-brown);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--light-shadow);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--wood-brown);
    font-family: 'Playfair Display', serif;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: var(--pine-green);
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    padding: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #555;
}

.contact-item i {
    color: var(--wood-brown);
    width: 20px;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--light-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--pine-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wood-brown);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Featured Articles Section */
.featured-articles {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(249, 246, 242, 0.8) 100%);
}

.featured-articles .section-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.featured-articles-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(47, 74, 52, 0.1);
}

.featured-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.featured-article-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.featured-article-card:hover .featured-article-image img {
    transform: scale(1.05);
}

.featured-article-content {
    padding: 2rem;
}

.featured-article-content h3 {
    font-size: 1.4rem;
    color: var(--pine-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.featured-article-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.featured-article-meta {
    color: #888;
    font-size: 0.85rem;
}

.featured-article-meta i {
    color: var(--wood-brown);
    margin-right: 0.5rem;
}

.featured-articles-cta {
    text-align: center;
}

/* Mobile responsive for featured articles */
@media (max-width: 768px) {
    .featured-articles {
        padding: 3rem 0;
    }
    
    .featured-article-image {
        height: 200px;
    }
    
    .featured-article-content {
        padding: 1.5rem;
    }
    
    .featured-article-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .featured-article-image {
        height: 180px;
    }
    
    .featured-article-content {
        padding: 1rem;
    }
    
    .featured-article-content h3 {
        font-size: 1.1rem;
    }
}

/* Footer */
.footer {
    background: var(--pine-green);
    color: white;
    padding: 3rem 0 2rem 0;
    text-align: center;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: var(--wood-brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.footer-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.maine-outline {
    width: 60px;
    height: 60px;
    background: var(--wood-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.maine-outline:hover {
    background: var(--gold);
    transform: scale(1.05);
}

.maine-outline i {
    color: white;
    font-size: 1.8rem;
}

.footer-text {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    width: 100%;
}

.footer-text p {
    font-size: 0.9rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: #e8f4f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 5px 20px var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile menu styles for kitten detail pages using .nav-links */
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 5px 20px var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .nav-links .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        color: var(--pine-green);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content {
        padding: 120px 1rem 40px 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kittens-grid {
        grid-template-columns: 1fr;
    }
    
    .adoption-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-image {
        width: 360px;
        height: 360px;
    }
    
    .footer {
        padding: 2rem 0 1.5rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .footer-social {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social a {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .maine-outline {
        width: 50px;
        height: 50px;
    }
    
    .maine-outline i {
        font-size: 1.5rem;
    }
    
    .footer-text {
        padding-top: 1rem;
    }
    
    .footer-text p {
        font-size: 0.8rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .kitten-card {
        margin: 0 0.5rem;
    }
    
    .logo-image {
        width: 300px;
        height: 300px;
    }
    
    .footer {
        padding: 1.5rem 0 1rem 0;
    }
    
    .footer-content {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .maine-outline {
        width: 40px;
        height: 40px;
    }
    
    .maine-outline i {
        font-size: 1.2rem;
    }
    
    .footer-text {
        padding-top: 0.8rem;
    }
    
    .footer-text p {
        font-size: 0.75rem;
        line-height: 1.4;
        padding: 0 0.25rem;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--wood-brown);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 2rem 0;
    }
    
    .hero::before,
    .hero-overlay {
        display: none;
    }
    
    .hero-content {
        color: var(--pine-green);
    }
}
