:root {
    --gold-accent: maroon;
    --steel-gray: #2c3e50;
    --light-bg: #f9f9f9;
    --text-dark: #333;
}
:root {
    --primary-color: #ff7b25;
    --secondary-color: #ff9d4d;
    --light-gray: #f6f6f6;
    --dark-gray: #333;
    --text-color: #444;
    --border-radius: 8px;
}

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

.blog-menu-header {
    color: #FFA000;
    border-bottom: 3px solid var(--gold-accent);
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.blog-menu-header h2 {
    color: var(--steel-gray);
    font-size: 2.2rem;
    display: inline-block;
    padding-right: 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--gold-accent);
}

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

.blog-card-img {
    height: 180px;
    background-color: #eaeaea;
    background-size: cover;
    background-position: center;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-date {
    color: var(--gold-accent);
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-card-title {
    color: var(--steel-gray);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    background: var(--light-bg);
    color: var(--steel-gray);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.tag:hover {
    background: var(--gold-accent);
    color: white;
}

/* Filter/Search Components */
.blog-filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.search-box {
    flex-grow: 1;
    max-width: 400px;
}

.search-box input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.category-filter select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 1rem;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.blog-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

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

.blog-title {
    color: #FFA000;
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--gold-accent);
    margin-bottom: 30px;
}

.blog-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.blog-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.blog-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-dark);
    line-height: 1.7;
}

.blog-section {
    margin-bottom: 50px;
}

.section-title {
    color: var(--gold-accent);
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-accent);
}

.section-content {
    font-size: 1.05rem;
}

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

.section-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.breed-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.breed-category {
    background: var(--light-bg);
    padding: 15px;
    border-radius: var(--border-radius);
}

.breed-category h4 {
    margin-top: 0;
    color: var(--gold-accent);
    font-family: inherit;
}

.breed-category ul {
    padding-left: 20px;
}

.breed-category li {
    margin-bottom: 8px;
}

.tip-box {
    background: #f0f7ff;
    border-left: 4px solid var(--gold-accent);
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.tip-title {
    font-weight: bold;
    color: var(--steel-gray);
    margin-bottom: 10px;
}

.numbered-list {
    counter-reset: section;
    margin-left: 0;
    padding-left: 0;
}

.numbered-list li {
    list-style-type: none;
    position: relative;
    padding-left: 40px;
    margin-bottom: 25px;
}

.numbered-list li:before {
    counter-increment: section;
    content: counter(section);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gold-accent);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.supervision-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.supervision-table th, 
.supervision-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.supervision-table th {
    background-color: var(--gold-accent);
    color: white;
}

.supervision-table tr:nth-child(even) {
    background-color: var(--light-bg);
}


.feature-list {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 25px 0;
}

.feature-list h4 {
    margin-top: 0;
    color: var(--steel-gray);
}

.feature-list ul {
    padding-left: 20px;
    list-style-type: none;

}

.feature-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "•";
    color: var(--gold-accent);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.measurement-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.measurement-step {
    background: white;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: var(--border-radius);
}


h4{
    font-family: inherit;
}

.measurement-step h4 {
    margin-top: 0;
    color: var(--steel-gray);
}

.material-comparison {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.material-comparison th, 
.material-comparison td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.material-comparison th {
    background-color: var(--gold-accent);
    color: white;
}

.material-comparison tr:nth-child(even) {
    background-color: var(--light-bg);
}

.accessory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.accessory-card {
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: var(--border-radius);
}

.accessory-card h4 {
    margin-top: 0;
    color: var(--steel-gray);
}

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

.hazard-card {
    background: #f8f9fa;
    border-left: 3px solid var(--gold-accent);
    padding: 15px;
    border-radius: 0 5px 5px 0;
}

.hazard-card h4 {
    color: var(--steel-gray);
    margin-top: 0;
}

.contaminant-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.contaminant-table th, 
.contaminant-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.contaminant-table th {
    background-color: var(--gold-accent);
    color: white;
}

.contaminant-table tr:nth-child(even) {
    background-color: var(--light-bg);
}

.cycle-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.cycle-step {
    background: white;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
}

.cycle-step-number {
    background: var(--gold-accent);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Space between images */
    max-width: 1000px; /* Adjust as needed */
    margin: 0 auto;
    margin-bottom: 15px;
}

.gallery-item {
    flex: 1 1 calc(33.333% - 10px); /* Three items per row accounting for gap */
    box-sizing: border-box;
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px; /* Optional rounded corners */
    transition: transform 0.3s ease; /* Optional hover effect */
}

.gallery-img:hover {
    transform: scale(1.02); /* Optional hover effect */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 10px); /* Two items per row on tablets */
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%; /* One item per row on mobile */
    }
}

@media (max-width: 600px) {
    .hazard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .measurement-guide {
        grid-template-columns: 1fr;
    }
    
    .blog-hero-image {
        height: 300px;
    }
    
    .blog-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .breed-list {
        grid-template-columns: 1fr;
    }
    
    .blog-hero-image {
        height: 300px;
    }
    
    .blog-content {
        padding: 25px;
    }

}


@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filters {
        flex-direction: column;
    }
    
    .search-box {
        max-width: 100%;
    }
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}


.blog-meta {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #777;
    font-size: 0.9rem;
}

.blog-meta span {
    margin: 0 10px;
}

.blog-hero-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

/* Blog Content */
.blog-content {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.blog-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Blog Sections */
.blog-section {
    margin-bottom: 3rem;
}


/* Feature List */
.feature-list {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.feature-list h4 {
    color:maroon;
    margin-bottom: 1.5rem;
}

.feature-list ul {
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
}


/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.comparison-table th {
    background-color: maroon;
    color: white;
    text-align: left;
    padding: 12px;
}

.comparison-table td {
    border: 1px solid #ddd;
    padding: 12px;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 1.5rem 0;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    color: white;
    width: 100%;
    padding: 8px;
    text-align: center;
    font-size: 0.9rem;
}

/* Tip Box */
.tip-box {
    background-color: #f4f9ff;
    border-left: 4px solid var(--secondary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.tip-title {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Video Section */
.video {
    margin: 1.5rem 0;
}

/* Conclusion */
.conclusion {
    background-color: #fffaf0;
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border: 1px solid #ffe0b2;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e06716;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.pros, .cons {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
}

.pros h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.cons h3 {
    color: #F44336;
    margin-bottom: 1rem;
}

.checkmark {
    color: #4CAF50;
    font-weight: bold;
    margin-right: 5px;
}

.x-mark {
    color: #F44336;
    font-weight: bold;
    margin-right: 5px;
}

.pros li, .cons li{
    list-style-type: none;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 30px 0;
    margin-top: 3rem;
    text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-subtitle {
        font-size: 1.3rem;
    }
    
    .image-grid, .pros-cons {
        grid-template-columns: 1fr;
    }
}
