/* Import the font if not already done */
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');

body {
    font-family: 'Patrick Hand', cursive;
    background-color: #f9f5f7; /* Soft, light background */
    color: #333;
    margin: 0;
    padding: 0;
}

nav {
    background-color: #f1c6c6; /* Soft pink background for elegance */
    padding: 15px 0;
    text-align: center;
    border-bottom: 2px solid #e4a4a4; /* Slightly darker border for contrast */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #6c0c6d; /* Deep purple for a posh touch */
    text-decoration: none;
    font-size: 1.2em;
    font-family: 'Patrick Hand', cursive;
}

nav ul li a:hover {
    color: #c2388f; /* Bright pink on hover */
    text-decoration: underline;
}

.journal-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff; /* Clean white background */
    border: 1px solid #e0a1b6; /* Soft pink border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Gentle shadow */
    border-radius: 8px;
    position: relative;
}

.journal-container h1 {
    color: #6c0c6d; /* Deep purple for headings */
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.journal-entry {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fef0f5; /* Very light pink background */
    border-left: 5px solid #c2388f; /* Bright pink accent border */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for elegance */
}

.journal-entry:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/2099737/pexels-photo-2099737.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center; /* Optional floral overlay */
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.journal-entry h2 {
    font-size: 1.8em;
    color: #6c0c6d; /* Deep purple for subheadings */
    margin-bottom: 10px;
    position: relative;
}

.entry-date {
    display: block;
    font-size: 0.9em;
    color: #aaa; /* Light gray for date */
    margin-top: 5px;
}

.journal-entry .entry-text {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555; /* Slightly lighter text color for readability */
}

.entry-tags {
    margin-top: 10px;
    font-size: 0.9em;
    color: #c2388f; /* Bright pink for tags */
}

.entry-tags a {
    color: #6c0c6d; /* Deep purple for tags */
    text-decoration: none;
    margin-right: 10px;
}

.entry-tags a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f1c6c6; /* Same pink as nav for consistency */
    color: #6c0c6d; /* Deep purple text color */
}

footer p {
    margin: 0;
    font-size: 0.9em;
}
