/* Body styling */
body {
    background-image: url('stripes.png'); /* Path to your striped background image */
    background-color: #edcfd3; /* Fallback color in case the image doesn't load */
    background-repeat: repeat; /* Repeat the background image */
    font-family: 'Cormorant Garamond', serif; /* Elegant serif font for body text */
    color: #5D001E; /* Darker pink for text */
    margin: 0;
    padding: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); /* Light shadow for body text */
}

/* Full-page border with pinkbows.png */
.page-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: 30px solid transparent; /* Set border width */
    border-image: url('pinkbows.png') 30 round; /* Border image and slicing values */
    box-sizing: border-box;
    z-index: -1; /* Ensure it stays behind the content */
}

/* Wrapper styling */
.wrapper {
    position: relative;
    max-width: 900px; /* Adjust max width */
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(255, 245, 247, 0.8); /* Light pink with transparency */
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Shadow to give the border depth */
}

/* Header styling with royal cursive font and text shadow */
header {
    background-color: rgba(244, 211, 223, 0.8); /* Light pink with transparency */
    text-align: center;
    padding: 20px 0; /* Adjust as needed */
    font-family: 'Great Vibes', cursive; /* Royal cursive font */
    font-size: 2.5em; /* Adjust as needed */
    color: rgb(76, 0, 83); /* Gold color for the header text */
    letter-spacing: 2px;
    border-bottom: 5px solid rgb(74, 19, 68); /* Decorative golden border */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Adds a shadow behind the text */
}

/* Navigation styling */
nav {
    background-color: rgba(255, 204, 221, 0.8); /* Soft pink with transparency */
    padding: 10px; /* Adjust as needed */
    text-align: center;
    margin-bottom: 20px;
}

nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1em; /* Adjust as needed */
    color: #A0522D; /* Saddle brown for link text */
    text-decoration: none;
    margin: 0 10px; /* Adjust as needed */
    padding: 6px 12px; /* Adjust as needed */
    border: 2px solid rgb(74, 19, 68);
    border-radius: 10px;
}

nav a:hover {
    background-color: #FFE4E1; /* Very light pink for hover */
    color: #8B4513; /* Darker brown when hovered */
    border-color: rgb(74, 19, 68); /* Slightly brighter gold on hover */
}

/* Main content styling */
main {
    background-color: rgba(255, 240, 245, 0.8); /* Very light pink with transparency */
    padding: 15px; /* Adjust as needed */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Light shadow for content box */
}

/* Ordered and unordered lists styling */
ol, ul {
    padding-left: 20px;
    color: #5D001E;
}

ol li, ul li {
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1em;
    color: #8B0000; /* Deep pinkish-red for list items */
}

/* Footer styling */
footer {
    background-color: rgba(248, 187, 208, 0.8); /* Soft pink with transparency */
    color: #5D001E;
    text-align: center;
    padding: 15px 0; /* Adjust as needed */
    font-family: 'Cormorant Garamond', serif;
    font-size: 1em; /* Adjust as needed */
    border-top: 5px solid rgb(74, 19, 68); /* Gold border on top */
    border-bottom: rgb(74, 19, 68);
    border-left: #5D001E;
    border-right: #5D001E;
    margin-top: 20px;
}

/* Apply custom font via Google Fonts */
@import url(Cyber-BoldRustique.ttf);

