@font-face {
    font-family: 'Delius Swash Caps';
    src: url('fonts/DeliusSwashCaps-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body {
font-family: 'Delius Swash Caps';
    background: #fffaf0;
    margin: 0;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16rem;
}

button {
    padding: 1rem 1.8rem;
    font-size: 1.8rem;
    background: #c9def0;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
}

button:hover {
    background: #c9def0;
}

/* Header Styling (Synced with setting.css) */
.header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background-color: #fff5f5;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 8rem;
    z-index: 1000;
    border-radius: 20px;
}
/* Headings */
h1 {
    margin: 1rem 0;
    text-align: center;
    width: 100%;
    font-size: 3.5rem;
    color: #efbedd;
}
/* Spacer after header */
header + * {
    margin-top: 10rem;
}

/* Logo */
img.header-logo {
    width: 10rem;
    margin: 1rem;
    margin-top: 1rem;
    border-radius: 20px;
}

/* Hamburger Button */
.hamburger {
    font-size: 2.5rem;
    background-color: #c9def0;
    border: none;
    cursor: pointer;
    margin-left: 1rem;
    color: #a8c487;
    transition: color 0.3s ease;
}

.hamburger:hover {
    color: #c9d5bb;
}

/* Navigation Menu */
.nav {
    display: none;
    background: #c9d5bb;
    padding: 1rem;
    position: absolute;
    top: 10rem;
    left: 20px;
    width: 200px;
    border-radius: 10px;
    text-align: center;
}

.nav ul {
    list-style: none;
    padding: 0;
    font-size: 20px;
}

.nav li {
    margin: 0.8rem 0;
}

.nav a {
    text-decoration: none;
    color: white;
    background-color: #c9def0;
    padding: 10px;
    display: block;
    font-weight: bold;
    border-radius: 5px;
}

.nav a:hover {
    background-color: #d9cdfb;
}

.nav.show {
    display: block;
}

/* Spacer after header */
header + * {
    margin-top: 10rem;
}

/* Main Container */
.container {
    width: 80%;
    max-width: 800px;
    padding: 3rem;
    padding-top: 4rem;
    background: #f3dac6;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Pet Count Input Section */
.pet-count-container {
    margin-bottom: 3rem;
    font-size: 1.6rem;
}

#pet-count {
    font-size: 1.6rem;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 60px;
    margin-left: 1rem;
}

/* Pet Form Sections */
.pet-form {
    margin-bottom: 3rem;
    padding: 2rem;
    border: 2px solid #ffb6b9;
    border-radius: 15px;
    background-color: #CDE3DC;
}

.pet-form h3 {
    font-size: 2.2rem;
    color: #286567;
    margin-bottom: 1rem;
}

.pet-form label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.pet-form input[type="text"],
.pet-form select,
.pet-form input[type="color"] {
    width: 100%;
    font-size: 1.4rem;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Emoji Selector Section */
.emoji-container {
    margin-top: 1rem;
}

.emoji-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.emoji-button {
    font-size: 2rem;
    background: #ffe4e1;
    border: 2px solid #ffb6b9;
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease;
}

.emoji-button:hover {
    background: #ffcad4;
}

/* Welcome Text */
.welcome-content {
    text-align: center;
    margin-top: 12rem;
}

.welcome-content h2 {
    font-size: 2.5rem;
    color: #ffb6b9;
}

.welcome-content p {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* Footer Styling */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #d9cded;
    text-align: center;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    color: white;
    z-index: 1000;
}
label {
    color:#286567;
}
h4 {
    color: #286567;
}