/* General Styles */
body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #fdf8f5; /* Light warm background */
    color: #5d4037; /* Brown text color */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
}

/* Header */
h1 {
    color: #8d6e63; /* Lighter brown for the name */
    margin-bottom: 20px;
    font-weight: 700;
}

/* Main Content */
.dog-photo {
    width: 150px; /* Adjust size as needed */
    height: 150px;
    border-radius: 50%; /* Makes the photo circular */
    object-fit: cover; /* Ensures the image covers the area well */
    margin-bottom: 20px;
    border: 5px solid #e1bee7; /* Cute border color, matching placeholder */
}

.blurb {
    font-size: 1.1em;
    line-height: 1.6;
    color: #795548; /* Darker brown for readability */
}

/* Divider */
.divider {
    border: none;
    height: 1px;
    background-color: #e0e0e0; /* Light gray color for the line */
    margin: 30px 0; /* Add some space above and below */
}

/* Section Headings */
.contact-info h2, .tags-section h2, .health-info h2 {
    text-align: center;
    color: #8d6e63;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Contact Info Section */
.contact-info {
    margin-top: 20px;
    text-align: left; /* Align text to the left for readability */
    font-size: 0.95em;
    line-height: 1.7;
}

.contact-info p {
    color: #5d4037; /* Consistent text color */
}

.contact-info strong {
    color: #795548; /* Slightly darker for labels */
}

.health-info p {
    color: #5d4037;
    text-align: left;
    line-height: 1.7;
}

.health-info a {
    color: #795548;
    font-weight: bold;
    text-decoration: underline;
}

.health-info a:hover {
    color: #8d6e63;
}

/* Tags Section */
.tag-images {
    display: flex;
    justify-content: center; /* Center images horizontally */
    gap: 20px; /* Space between images */
    flex-wrap: wrap; /* Allow images to wrap on small screens */
}

.tag-photo {
    max-width: 100px; /* Limit tag photo size */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Slightly rounded corners */
    border: 3px solid #e1bee7; /* Match main photo border color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Footer (Optional) */
footer {
    margin-top: 30px;
    font-size: 0.9em;
    color: #a1887f;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 1.8em;
    }
    .dog-photo {
        width: 120px;
        height: 120px;
    }
    .blurb {
        font-size: 1em;
    }
    .contact-info {
        font-size: 0.9em; /* Adjust font size slightly for smaller screens */
    }
    .contact-info h2, .tags-section h2, .health-info h2 {
        font-size: 1.2em;
    }
    .tag-photo {
        max-width: 80px; /* Slightly smaller tags on mobile */
    }
}
