/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* 🌸 Fairy Fonts */
body, p, ul, li, a {
    font-family: 'Comfortaa', sans-serif;
    color: #fdf8ff; /* pearl white */
}

h1, h2, h3 {
    font-family: 'Gloock', serif;
    color: #fdf8ff; /* pearl white */
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* 🌸 Page Background (light pink + sparkles) */
body {
    background: #ffd9f2; /* soft pink */
    background-repeat: repeat;
    background-size: 300px;
    margin: 0;
    padding: 20px;
}

/* 🌸 Paragraph Styling */
p {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 15px;
    max-width: 600px;
    margin: 15px auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* 🌸 Fonts & text */
body, p, ul, li, a {
    font-family: 'Comfortaa', sans-serif;
    color: #fdf8ff; /* pearl white */
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Gloock', serif;
    color: #fdf8ff;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* 🌸 Background */
body {
    background: #ffd9f2; /* soft pink */
    background-repeat: repeat;
    background-size: 150px;
    margin: 0;
    padding: 20px;
}

/* 🌸 Links */
a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline;
}
a:hover {
    text-shadow: 0 0 10px rgba(255,255,255,0.9);
}

/* 🌸 Header */
header {
    margin-bottom: 40px;
}

/* 🌸 Sections */
section {
    margin-bottom: 40px;
}

/* 🌸 Content boxes (diary, recipes, logs) */
.content-box {
    padding: 20px;
    border-radius: 25px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* 🌸 Lists */
ul {
    padding-left: 20px;
}
li {
    padding: 5px 0;
}

/* 🌸 Image Frames */
.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.image-frame {
    width: 250px;
    height: 250px;
    border: 3px solid rgba(255,255,255,0.6);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
   
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
