/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
}

.nav-logo {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.1);
}

.brand-text {
    font-family: 'Allura', cursive;
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

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

.header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Filter Section */
.filter-section {
    padding: 3rem 0 2rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.filter-controls {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.filter-select:hover {
    border-color: var(--primary-green);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(74, 157, 126, 0.1);
}

.btn-reset {
    padding: 0.75rem 1.5rem;
    background: var(--text-gray);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-reset:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
}

.results-count {
    text-align: center;
}

.results-count p {
    color: var(--text-gray);
    font-size: 1rem;
}

.results-count span {
    font-weight: 600;
    color: var(--primary-green);
}

/* About Kittens Section */
.about-kittens-section {
    padding: 4rem 0;
    background: white;
}

.about-kittens-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-kittens-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-kittens-content h3 {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-kittens-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.kitten-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.kitten-features li {
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    background: var(--light-green);
    border-radius: 8px;
    font-weight: 500;
}

/* Kittens Grid */
.kittens-section {
    padding: 4rem 0;
    min-height: 400px;
    background: #f8f9fa;
}

.kittens-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--text-dark);
}

.kitten-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Status Badges */
.status-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.status-available {
    background: #28a745;
    color: white;
}

.status-reserved {
    background: #ffc107;
    color: #333;
}

.status-sold {
    background: #dc3545;
    color: white;
}

/* Disabled Button */
.btn-disabled {
    background: #6c757d;
    color: white;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-disabled:hover {
    background: #6c757d;
    transform: none;
}

/* Parents Showcase Section */
.parents-showcase-section {
    padding: 5rem 0;
    background: white;
    border-top: 3px solid var(--light-green);
}

.parents-showcase-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.parents-showcase-header .section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.parents-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.parents-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.parent-showcase-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.parent-showcase-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.parent-showcase-title {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.parent-showcase-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    font-style: italic;
}

.parent-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.parent-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.parent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.parent-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.parent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 50%);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1rem;
}

.parent-role {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.parent-info {
    padding: 1.5rem;
    text-align: center;
}

.parent-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.parent-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.parent-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results svg {
    width: 80px;
    height: 80px;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: white;
    color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--light-green);
    color: var(--dark-green);
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        min-width: 100%;
    }

    .about-kittens-content h2 {
        font-size: 2rem;
    }

    .about-kittens-content h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .kitten-features {
        grid-template-columns: 1fr;
    }

    .kitten-grid-page {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .about-kittens-content h2 {
        font-size: 1.75rem;
    }

    .about-kittens-content h3 {
        font-size: 1.35rem;
        margin-top: 1.5rem;
    }

    .about-kittens-content p {
        font-size: 1rem;
    }

    .kitten-features li {
        font-size: 0.95rem;
    }

    .parents-showcase-section {
        padding: 3rem 0;
    }

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

    .parents-intro {
        font-size: 1rem;
    }

    .parent-showcase-item {
        padding: 1.5rem;
    }

    .parent-showcase-title {
        font-size: 1.5rem;
    }

    .parent-showcase-subtitle {
        font-size: 0.9rem;
    }

    .parent-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .parent-name {
        font-size: 1.25rem;
    }

    .parent-image {
        height: 220px;
    }

    .kitten-grid-page {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

