@charset "utf-8";
/* CSS Document */
/* Include the complete CSS from the uploaded styles.css */
        @charset "utf-8";
        
        :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;
        }

        * {
            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;
        }

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

        /* Header */
        .header {
            background: url("../images/header.webp");
            padding: 1rem 0;
            box-shadow: 0 2px 20px var(--shadow-light);
            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: 15px;
        }

        .logo-icon {
            font-size: 3rem;
            color: var(--primary-red);
        }

        .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;
        }

        .breadcrumb {
            background: rgba(246,246,246,0.75);
            padding: 10px 15px;
            border-radius: 5px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .breadcrumb a {
            color: var(--primary-red);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--dark-red);
        }

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

        .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="%23C62828" opacity="0.1"/><circle cx="15" cy="15" r="1" fill="%23C62828" 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;
        }

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

        .breed-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .breed-icon {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        /* Main Content Layout */
        .main-content {
            padding: 60px 0;
            background: var(--white);
        }

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

        .breed-image-section {
            background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
			padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px var(--shadow-light);
            border: 1px solid var(--light-gray);
        }

        .breed-image-placeholder {
            width: 100%;
            height: 430px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary-red);
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .image-caption {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-style: italic;
        }

        .breed-stats {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--text-on-dark);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--shadow-medium);
        }

        .stats-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 2px solid rgba(255,255,255,0.2);
            padding-bottom: 15px;
        }

        .stat-item {
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }

        .stat-label {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--warm-cream);
        }

        .stat-value {
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Section Styling */
        .breed-section {
            margin-bottom: 50px;
            background: linear-gradient(135deg, var(--white) 0%, var(--warm-cream) 100%);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 25px var(--shadow-light);
            border: 1px solid var(--light-gray);
            position: relative;
            overflow: hidden;
        }

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

        .section-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-red);
        }

        .section-icon {
            font-size: 2rem;
            color: var(--primary-red);
            width: 50px;
            text-align: center;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-on-light);
            margin: 0;
        }

        .section-content {
            line-height: 1.8;
            font-size: 1rem;
            color: var(--text-on-light);
        }

        .section-content h3 {
            color: var(--primary-red);
            font-size: 1.2rem;
            font-weight: 600;
            margin: 25px 0 15px 0;
        }

        .section-content p {
            margin-bottom: 15px;
        }

        .section-content ul, .section-content ol {
            padding-left: 25px;
            margin-bottom: 15px;
        }

        .section-content li {
            margin-bottom: 8px;
        }

        /* Trait Grid for Description */
        .trait-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .trait-card {
            background: rgba(255,255,255,0.6);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--light-red);
        }

        .trait-name {
            font-weight: 600;
            color: var(--primary-red);
            margin-bottom: 10px;
        }

        .trait-rating {
            display: flex;
            justify-content: center;
            gap: 5px;
            margin-bottom: 10px;
        }

        .star {
            color: var(--accent-orange);
            font-size: 1.2rem;
        }

        .star.empty {
            color: #ddd;
        }

        .trait-description {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* Health Issues List */
        .health-list {
            background: rgba(255,235,238,0.3);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--primary-red);
            margin: 20px 0;
        }

        .health-list h4 {
            color: var(--dark-red);
            margin-bottom: 15px;
        }

        /* Rescue Organizations */
        .rescue-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .rescue-card {
            background: var(--white);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 20px var(--shadow-light);
            border: 1px solid var(--light-red);
            text-align: center;
            transition: all 0.3s ease;
        }

        .rescue-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px var(--shadow-medium);
        }

        .rescue-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-red);
            margin-bottom: 10px;
        }

        .rescue-link {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background: var(--primary-red);
            color: var(--white);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .rescue-link:hover {
            background: var(--dark-red);
            transform: translateY(-1px);
        }

        /* Back Navigation */
        .back-nav {
            text-align: center;
            margin: 40px 0;
        }

        .back-link {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--primary-red), var(--accent-orange));
            color: var(--white);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 4px 15px var(--shadow-medium);
            transition: all 0.3s ease;
        }

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

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .breed-hero-title {
                font-size: 2rem;
            }

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

            .breed-section {
                padding: 30px 20px;
                margin-bottom: 30px;
            }

            .trait-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .container {
                padding: 0 15px;
            }

            .section-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .section-icon {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                padding: 40px 0;
            }

            .breed-hero-title {
                font-size: 1.8rem;
            }

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

            .breed-section {
                padding: 25px 15px;
            }
        }
    </style>
