/* style.css */

/* Reset and Base Styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Playfair Display;
    background-color: #e8e8e8;
    color: #333;
    text-align: center;
    background-image: url('images/PawPrint.png');
    background-repeat: repeat;
    background-position: -15% 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

/* Header and Navigation */
header {
    background-color: #ff9800;
    color: white;
    padding: 20px 0;
}

header h1 {
    margin-bottom: 10px;
}

nav {
    background-color: #bfbaba;
    padding: 10px 0;
    margin-bottom: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
}

nav a:hover {
    background-color: #bfbaba;
}

/* Main Content and Sections */
.main-content {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.orange-section {
    border: 2px solid #ff9800;
    background-color: #ffe0b2;
    padding: 20px;
    max-width: 700px;
    box-sizing: border-box;
    border-radius: 15px;
    text-align: left;
    width: 100%;
}

/* Dog Specific Styles */
.dog-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.dog-listing {
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #ff9800;
    color: white;
    padding: 10px 0;
}

/* Section Heading and List Spacing */
#shelters h2, #contact h2, #about h2 {
    margin-bottom: 20px;
}

#shelters ul, #contact ul, #about ul {
    margin-top: 10px;
}

/* Local Shelters Specific */
#shelters ul {
    list-style-type: none;
}

/* Team Section Styles */
#team {
    text-align: center;
}

.team-members-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    margin: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #ff9800;
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
    nav a {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }
}

.quiz-link-box {
    background-color: #ff9800;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.quiz-link-box a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.quiz-link-box a:hover {
    text-decoration: underline;
}

/* Shelter Specific Styles */
.shelter-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin-top: 15px;
}

/* Side Column Styles */
.main-content-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px; /* Reset padding to horizontal only */
    gap: 60px; /* Increase gap for horizontal spacing */
}

.left-column, .right-column {
    width: 200px;
    background-color: #f0f0f0;
    padding: 20px; /* Reset padding to standard */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.center-content {
    flex-grow: 1;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* margin: 0 20px; Removed, using gap instead */
}

.home-banner {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
}

.donate-button {
    background-color: #ff9800;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.donate-button:hover {
    background-color: #e68a00;
}

/* New Styles for Expanded Side Content */
.featured-dog {
    margin-bottom: 15px;
}

.featured-dog img {
    width: 100%;
    height: auto; /* Changed from 150px to auto */
    object-fit: contain; /* Changed from cover to contain */
    border-radius: 5px;
    margin-bottom: 5px;
}

.social-links img {
    width: 30px;
    height: 30px;
    object-fit: contain; /* Changed from cover to contain */
    margin-right: 5px;
}
