@charset "utf-8";
/* ==========================================================================
   Furry Critter Network - Main Stylesheet
   ========================================================================== */

/* ==========================================================================
   CSS Variables (Custom Properties)
   ========================================================================== */
:root {
    --primary-red: #C62828;
    --dark-red: #8E0000;
    --light-red: #FFEBEE;
    --accent-orange: #E65100;
    --warm-cream: #FFFDE7;
    --soft-beige: #F3E5AB;
    --dark-charcoal: #1A1A1A;
    --medium-gray: #424242;
    --light-gray: #FAFAFA;
    --white: #FFFFFF;
    --shadow-light: rgba(198, 40, 40, 0.1);
    --shadow-medium: rgba(198, 40, 40, 0.2);
    --text-on-light: #1A1A1A;
    --text-on-dark: #FFFFFF;
    --text-secondary: #424242;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-on-light);
    background-color: var(--white);
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header & Navigation - Updated with Shared.css Styling
   ========================================================================== */
.header {
    background: url("../images/header.webp");
    overflow: visible;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 1rem 0;
    box-shadow: 0 2px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-image img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

/* ==========================================================================
   Three-Layer Navigation Menu - Styled like shared.css
   ========================================================================== */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    position: relative;
    background: rgba(246,246,246,0.75);
    border-radius: 5px;
    padding: 10px 10px 10px 10px;
    margin-top: 8px;
    box-shadow: 0px 0px 0px 1px rgba(51,51,51,0.25);
    border-top: 5px solid rgba(246,246,246,0.75);
}

.nav-menu > li {
    position: relative;
    float: left;
    transition: all .3s ease;
    text-align: center;
}

.nav-menu > li > a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 15px;
    font-family: 'Homenaje', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 15px 3px 10px;
    cursor: pointer;
    display: block;
}

.nav-menu > li > a:hover {
    color: #fff;
    background: #D03E2A;
    border-radius: 4px;
    transition: all .3s ease;
}

.nav-menu > li:first-of-type {
    background: none;
}

/* Remove the after pseudo-element for hover underline from new styles */
.nav-menu > li > a::after {
    display: none;
}

/* Dropdown Indicators */
.has-dropdown > a::after {
    content: ' ▼' !important;
    font-size: 12px;
    margin-left: 5px;
    width: auto !important;
    height: auto !important;
    background: none !important;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    display: inline !important;
}

.has-subdropdown > a::after {
    content: ' ▶';
    font-size: 12px;
    margin-left: 5px;
    float: right;
}

/* First Level Dropdown - Styled like shared.css */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10001;
    list-style: none;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    letter-spacing: .2px;
    background: rgba(246,246,246,0.90);
    display: none;
    float: left;
    margin: 15px 0 0;
    min-width: 250px;
    padding: 15px 10px 35px 10px;
    position: absolute;
    left: 0;
    text-align: left;
    box-shadow: 2px 2px 2px 2px rgba(51,51,51,0.25);
    border-radius: 5px 5px 5px 5px;
    margin-top: 8px;
    border-top: 5px solid rgba(246,246,246,0.75);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown > li {
    position: relative;
    border-bottom: none;
}

.dropdown > li:last-child {
    border-bottom: none;
}

.dropdown > li > a {
    clear: both;
    color: #D03E2A;
    display: block;
    font-weight: normal;
    line-height: 1.66286;
    padding: 3px 20px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.dropdown > li:last-child > a {
    border-radius: none;
}

.dropdown > li > a:hover,
.dropdown > li.active > a {
    text-decoration: none;
    color: #ffffff;
    background: none;
    background-color: #D03E2A;
    padding: 3px 20px;
}

/* Second Level Sub-dropdown - Styled like shared.css */
.sub-dropdown {
    top: 0;
    left: 100%;
    margin-top: -6px;
    border-radius: 0 6px 6px 0;
    padding: 8px 10px;
    background: rgba(232,232,232,0.90);
    position: absolute;
    min-width: 200px;
    box-shadow: 2px 2px 2px 2px rgba(51,51,51,0.25);
    list-style: none;
    display: none;
    z-index: 10002;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.sub-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.sub-dropdown li {
    border-bottom: none;
    position: relative;
}

.sub-dropdown li:last-child {
    border-bottom: none;
}

.sub-dropdown li a {
    display: block;
    color: #D03E2A;
    text-decoration: none;
    padding: 3px 20px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    line-height: 1.66286;
    white-space: nowrap;
}

.sub-dropdown li:last-child a {
    border-radius: none;
}

.sub-dropdown li a:hover {
    background-color: #D03E2A;
    color: #ffffff;
    transform: none;
}

/* Sub flyout arrows from shared.css */
.has-subdropdown > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #D03E2A;
    margin-top: 5px;
    margin-right: -10px;
}

.has-subdropdown:hover > a:after {
    border-left-color: #ffffff;
}

.has-subdropdown.active > a:after {
    border-left-color: #ffffff;
}

/* Active states */
.nav-menu li.active > a {
    color: #fff;
    background: #D03E2A;
    border-radius: 4px;
}

/* Mobile menu button styling */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid #D03E2A;
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    color: #D03E2A;
    padding: 10px 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 15px;
}

.mobile-menu-btn:hover {
    background: #D03E2A;
    color: #ffffff;
}

/* ==========================================================================
   Mobile Responsiveness
   ========================================================================== */
@media (max-width: 768px) {
    /* Reset nav-menu background for mobile */
    .nav-menu {
        background: none;
        border-radius: 0;
        padding: 0;
        margin-top: 0;
        box-shadow: none;
        border-top: none;
        gap: 0;
    }
    
    /* Hide desktop menu elements */
    .nav-menu, .search-box {
        display: none;
    }
    
    /* Show mobile menu when active */
    .nav-menu.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(246,246,246,0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0px 0px 0px 1px rgba(51,51,51,0.25);
        border-radius: 5px;
        padding: 20px;
        z-index: 1000;
        gap: 0;
        border-top: 5px solid rgba(246,246,246,0.75);
    }
    
    .nav-menu.mobile-active > li {
        width: 100%;
        border-bottom: 1px solid rgba(208,62,42,0.2);
        float: none;
        text-align: left;
    }
    
    .nav-menu.mobile-active > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu.mobile-active > li > a {
        display: block;
        padding: 15px 0;
        color: #333;
        font-size: 18px;
        background: none;
        border-radius: 0;
    }
    
    .nav-menu.mobile-active > li > a:hover {
        color: #D03E2A;
        background: none;
        border-radius: 0;
    }
    
    /* Mobile dropdown styles */
    .nav-menu.mobile-active .dropdown {
        position: static;
        background: rgba(232,232,232,0.8);
        box-shadow: none;
        border-radius: 4px;
        margin: 5px 0 10px 15px;
        padding: 10px;
        display: none;
        border-top: 3px solid #D03E2A;
    }
    
    .nav-menu.mobile-active .dropdown.show {
        display: block;
        opacity: 1;
        transform: none;
    }
    
    .nav-menu.mobile-active .dropdown > li > a {
        padding: 8px 15px;
        color: #D03E2A;
        font-size: 14px;
    }
    
    .nav-menu.mobile-active .dropdown > li > a:hover {
        background-color: #D03E2A;
        color: #ffffff;
        border-radius: 4px;
    }
    
    /* Mobile sub-dropdown styles */
    .nav-menu.mobile-active .sub-dropdown {
        position: static;
        background: rgba(208,62,42,0.1);
        box-shadow: none;
        border-radius: 4px;
        margin: 5px 0 5px 15px;
        padding: 5px 10px;
        display: none;
        border-left: 3px solid #D03E2A;
    }
    
    .nav-menu.mobile-active .sub-dropdown.show {
        display: block;
        opacity: 1;
        transform: none;
    }
    
    .nav-menu.mobile-active .sub-dropdown li a {
        padding: 6px 15px;
        color: #D03E2A;
        font-size: 13px;
    }
    
    .nav-menu.mobile-active .sub-dropdown li a:hover {
        background-color: #D03E2A;
        color: #ffffff;
        border-radius: 3px;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .logo-text {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
}

@media (min-width: 992px) {
    /* Ensure desktop menu styling is applied */
    .nav-menu {
        background: rgba(246,246,246,0.75);
        border-radius: 5px;
        padding: 10px 10px 10px 10px;
        margin-top: 8px;
        box-shadow: 0px 0px 0px 1px rgba(51,51,51,0.25);
        border-top: 5px solid rgba(246,246,246,0.75);
    }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-beige) 50%, var(--light-red) 100%);
    padding: 30px 0px 10px 0px;
    position: relative;
    overflow: hidden;
    text-align: center;
	border-bottom: double;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pawprint" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="%23D32F2F" opacity="0.1"/><circle cx="15" cy="15" r="1" fill="%23D32F2F" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23pawprint)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-red), var(--accent-orange));
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================================================
   Featured Sections
   
.featured-sections {
    padding: 60px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-light);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    box-shadow: 0 6px 15px var(--shadow-medium);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-on-light);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.feature-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--dark-red);
}
========================================================================== */
/* ==========================================================================
   Breed Gallery Preview
   ========================================================================== */
.breed-gallery {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--warm-cream) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.breed-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.3s ease;
}

.breed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.breed-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, var(--light-red), var(--warm-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.breed-info {
    padding: 20px;
}

.breed-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-on-light);
    margin-bottom: 10px;
}

.breed-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 500;
}

.breed-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.breed-tag {
    background: var(--light-red);
    color: var(--dark-red);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==========================================================================
   Mission Section
   ========================================================================== */
.mission {
    padding: 30px 0;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    color: var(--text-on-dark);
}

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

.mission h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.mission p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.signature {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: right;
}

.signature-name {
    font-size: 2.5rem;
    font-family: 'Brush Script MT', cursive;
    line-height: 1;
    margin-bottom: 0px;
}

.signature-title {
    font-size: 0.8rem;
    opacity: 0.8;
	padding-right: 15px
}

/* ==========================================================================
   Hyperlink Directory Section (Reusable Template)
   ========================================================================== */
.link-directory {
    padding: 60px 0;
    background: var(--white);
}

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

.directory-column {
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    position: relative;
}

.directory-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-orange));
    border-radius: 15px 15px 0 0;
}

.directory-column:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.directory-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    border-bottom: 2px solid var(--light-red);
    padding-bottom: 10px;
}

.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-list li {
    margin-bottom: 8px;
}

.link-list a {
    color: var(--text-on-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    border-left: 3px solid transparent;
}

.link-list a:hover {
    color: var(--primary-red);
    background: var(--light-red);
    border-left-color: var(--primary-red);
    transform: translateX(3px);
}

/* Alternative compact layout for many links */
.link-columns {
    column-count: 2;
    column-gap: 20px;
    column-fill: balance;
}

.link-columns .link-list {
    break-inside: avoid;
    margin-bottom: 15px;
}

.link-columns .link-list a {
    padding: 4px 8px;
    font-size: 0.85rem;
}

/* For pages with 300+ links - ultra-compact */
.mega-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.mega-link-column {
    background: var(--warm-cream);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.mega-link-column h4 {
    color: var(--primary-red);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.mega-link-column a {
    color: var(--text-on-light);
    text-decoration: none;
    font-size: 0.8rem;
    line-height: 1.4;
    display: block;
    padding: 2px 0;
    transition: color 0.2s ease;
}

.mega-link-column a:hover {
    color: var(--primary-red);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--dark-charcoal);
    color: var(--text-on-dark);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
	te
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-section ul li a:hover {
    color: var(--soft-beige);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 30px;
    text-align: center;
    color: white;
    opacity: 0.7;
}

/* ==========================================================================
   Mobile Responsiveness
   ========================================================================== */
@media (max-width: 768px) {
    /* Hide desktop menu elements */
    .nav-menu, .search-box {
        display: none;
    }
    
    /* Show mobile menu when active */
    .nav-menu.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        padding: 20px;
        z-index: 1000;
        gap: 0;
    }
    
    .nav-menu.mobile-active > li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-menu.mobile-active > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu.mobile-active > li > a {
        display: block;
        padding: 15px 0;
        color: var(--text-on-light);
    }
    
    /* Mobile dropdown styles */
    .nav-menu.mobile-active .dropdown {
        position: static;
        background: var(--light-gray);
        box-shadow: none;
        border-radius: 0;
        margin-left: 15px;
        display: none;
    }
    
    .nav-menu.mobile-active .dropdown.show {
        display: block;
        opacity: 1;
        transform: none;
    }
    
    .nav-menu.mobile-active .dropdown > li > a {
        padding: 10px 15px;
        color: var(--text-secondary);
    }
    
    /* Mobile sub-dropdown styles */
    .nav-menu.mobile-active .sub-dropdown {
        position: static;
        background: var(--warm-cream);
        box-shadow: none;
        border-radius: 0;
        margin-left: 15px;
        display: none;
    }
    
    .nav-menu.mobile-active .sub-dropdown.show {
        display: block;
        opacity: 1;
        transform: none;
    }
    
    .nav-menu.mobile-active .sub-dropdown li a {
        padding: 8px 15px;
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        display: block;
    }
	
    .logo-text {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

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

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .featured-sections, 
    .breed-gallery,
    .mission,
    .link-directory {
        padding: 50px 0;
    }

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

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

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