/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff8f0;
    color: #333;
    padding: 20px;
}

header {
    background-color: #ffb347;
    padding: 20px;
    text-align: center;
    border-radius: 10px; /* rounded corners */
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

h1, h2 {
    margin-bottom: 10px;
}

section {
    margin: 20px 0;
    padding: 15px;
    border: 2px dashed #ffb347;
    border-radius: 10px; /* rounded corners */
}
/* Float image on Services page */
section img {
    float: right;
    margin-left: 20px;
    width: 300px;
    border-radius: 10px; /* rounded corners */
}

/* Clear floats for the section */
section::after {
    content: "";
    display: block;
    clear: both;
}
#upcoming-pawties {
    background-color: #fff4f0;
    padding: 20px;
    border: 2px dashed #ffb347;
    border-radius: 10px;
}

#upcoming-pawties ul {
    margin-top: 10px;
    list-style-type: square;
    padding-left: 20px;
}

#upcoming-pawties img {
    float: right;
    margin-left: 20px;
    width: 300px;
    border-radius: 10px;
}

/* Clear floats */
#upcoming-pawties::after {
    content: "";
    display: block;
    clear: both;
}
#contact-info {
    background-color: #fff4f0;
    padding: 20px;
    border: 2px dashed #ffb347;
    border-radius: 10px;
}

#contact-info p {
    margin: 10px 0;
}

.map-embed {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    border-radius: 10px;
}
