/* colour scheme */
:root {
    --header-text: #00C1FF; /* light blue */
    --flower-yellow: #FEF575; /* light yellow */
    --background-yellow: rgba(254, 245, 117, 0.43); /* light yellow with transparency */
    --flower-magenta: #E71594; /* magenta */
}

/* General styles */
body {
    font-family: 'Sansumi';
    color: #000000;
    font-size: 1.2rem;
    background-color: var(--background-yellow);
    margin: 0;
    padding: 0;
}

header, footer {
    background-color: var(--background-yellow);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

a {
    color: var(--flower-magenta);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
}

.logo-image {
    width: 300px;
}

.logo-text {
    font-size: 6rem;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}

.centre-this{
    /* we want it centred on the page */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sansumi'; /* Elegant serif font */
    color: var(--header-text);
}

h1 {
    font-size: 4rem;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}


p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Buttons */
button {
    background-color: #ff6f61; /* Coral */
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin: 0.25rem 0;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #e5534b;
}

/* Navigation */
nav {
    padding: 1rem 0;
}

ul {
    list-style: none;
}

ul li {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

ul li::before {
    background-image: url('../img/bullet.png');
    background-size: cover;
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    margin: auto;
    left: 0;
    position: absolute;
    top: 0.8rem;
}

nav a {
    color: var(--header-text);
    padding: 0.5rem 1rem;
    display: inline-block;
}

nav a:hover {
    color: var(--flower-magenta);
}

/* Forms */
input, textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #ff6f61; /* Coral */
    border: none;
    color: white;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #e5534b;
}

/* Footer */
footer {
    background-color: #ffc107; /* Warm sunshine yellow */
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.treats {
    padding: 1rem;
    /* centre it */
    margin: auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.treat-image {
    width: 80%;
    margin: auto;
    /* centre it */
    display: flex;
    justify-content: center;
    align-items: center;
    /* add some space above the image */
    margin-top: 1rem;
    
}

.toc {
    width: 80%;
    margin: auto;
}
