body {
    background: #f8b7c7;
    font-family: 'Quicksand', sans-serif;
    color: #4a3b3f;
    margin: 0;
}

.wrapper {
    width: 85%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* HEADER */
header {
    text-align: center;
    padding: 20px;
}

h1 {
    font-family: "Playfair Display", serif;
    color: #ffffff;
    font-size: 2.4em;
    text-shadow: 0 0 10px #ff9ed4;
}

.subtitle {
    font-size: 1em;
    color: white;
    opacity: 0.8;
}

/* NAVIGATION */
.nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.nav a {
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 12px;
    background: #ffd5e9;
    color: #6d426c;
    text-decoration: none;
    text-shadow: 0 0 5px #ffffff;
    transition: 0.3s;
}

.nav a:hover {
    background: white;
    box-shadow: 0 0 10px #ffb7e2;
}

/* BOX SECTIONS */
.box {
    background: #ffe3ef;
    padding: 20px;
    border-radius: 18px;
    margin: 20px 0;
    border: 2px solid white;
    box-shadow: 0 0 10px #ffb7e2;
}

h2 {
    font-family: "Playfair Display", serif;
    color: #c0458b;
    text-align: center;
    text-shadow: 0 0 4px #ffffff;
}

/* JOURNAL */
.entry {
    background: #fff5fa;
    border-left: 4px solid #ff97ce;
    padding: 12px;
    margin: 15px 0;
    border-radius: 10px;
}

.entry h3 {
    margin: 0;
    color: #c03f8f;
}

/* GALLERY */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery img {
    width: 120px;
    border-radius: 10px;
    box-shadow: 0 0 8px #ffb7e2;
}

/* DECOR IMAGE */
.decor-img {
    display: block;
    margin: 10px auto;
    width: 200px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 15px;
    color: white;
    margin-top: 20px;
}