/* General Body Styling */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #fdf6f6; /* Soft pink background */
    color: #555; /* Gentle gray text */
    text-align: center;
}

/* Header Styling */
header {
    background-color: #ffe4e1; /* Light pastel pink */
    padding: 20px;
    border-bottom: 2px solid #f8c8c8; /* Subtle pink border */
}

header img {
    border-radius: 10px; /* Rounded corners for the image */
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
section {
    margin: 20px auto;
    padding: 15px;
    max-width: 800px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #444;
}

/* Footer (Video) Styling */
footer {
    margin: 20px auto;
    padding: 15px;
    background-color: #ffe4e1;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

footer video {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Typography Enhancements */
h1, h2, h3 {
    color: #a15c5c; /* Warm muted red-pink for headings */
    font-family: 'Georgia', serif;
}

/* Optional Decorative Elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('soft-flowers.png') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.05; /* Very subtle background image */
    z-index: -1;
}

/* Button/Link Styling */
a {
    color: #a15c5c;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}