/* Care Tips Page Styles */

/* Hero Section */
.care-tips-hero {
    background-color: #2a9d8f;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    min-width: 100vw;
}

.care-tips-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.care-tips-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.care-tips-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
}

/* Care Tips Section */
.care-tips-section {
    padding: 80px 0;
    background: transparent;
}

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

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

.tip-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-header {
    padding: 30px;
    text-align: center;
    color: white;
    position: relative;
}

.card-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.card-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.dog-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.cat-header {
    background: linear-gradient(135deg, #a8e6cf, #56ab2f);
}

.bird-header {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
}

.card-body {
    padding: 30px;
}

.card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-body li {
    padding: 15px 0;
    border-bottom: 1px solid #f1f2f6;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.card-body li:last-child {
    border-bottom: none;
}

.card-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    color: #00b894;
    font-weight: bold;
    font-size: 1.1rem;
}

.card-body strong {
    color: #2d3436;
    font-weight: 600;
}

/* Further Reading Section */
.further-reading-section {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-header p {
    font-size: 1.2rem;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

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

.info-link-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-link-card:hover {
    background: white;
    border-color: #74b9ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(116, 185, 255, 0.2);
}

.info-link-card i {
    font-size: 3rem;
    color: #74b9ff;
    margin-bottom: 20px;
    display: block;
}

.info-link-card h3 {
    font-size: 1.5rem;
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-link-card p {
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .care-tips-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .care-tips-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .card-header {
        padding: 20px;
    }
    
    .card-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .care-tips-hero {
        padding: 60px 15px;
    }
    
    .care-tips-hero .hero-title {
        font-size: 2rem;
    }
    
    .care-tips-section,
    .further-reading-section {
        padding: 60px 0;
    }
    
    .tip-category-card {
        margin: 0 15px;
    }
}
