/* =========================================
   STEPH'S WORLD
   Cute 2000s Personal Website
   ========================================= */


/* ---------- BASIC ---------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 30px 10px;

    font-family: "Trebuchet MS", Arial, sans-serif;

    color: #74345f;

    background-color: #ffd9ed;

    background-image:
        radial-gradient(#ffffff 1px, transparent 1px),
        radial-gradient(#f6a9d0 1px, transparent 1px);

    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;
}


/* ---------- SITE ---------- */

.site {
    width: 900px;
    max-width: 100%;

    margin: 0 auto;

    background: rgba(255, 247, 252, 0.96);

    border: 4px double #e78abb;

    box-shadow:
        0 0 0 6px #fff,
        0 0 20px rgba(185, 68, 135, 0.35);
}


/* ---------- HEADER ---------- */

header {
    text-align: center;

    padding: 25px 20px 15px;

    background:
        linear-gradient(
            to bottom,
            #ffc5e2,
            #ffe9f5
        );

    border-bottom: 3px dotted #e18ab7;
}


.tiny-text {
    font-size: 12px;
    color: #b84d88;
    letter-spacing: 1px;
}


h1 {
    margin: 8px 0 0;

    font-family: Georgia, serif;

    font-size: 42px;

    color: #d33b91;

    text-shadow:
        2px 2px #ffffff,
        4px 4px #f3a6ce;
}


.subtitle {
    margin-top: 3px;

    font-size: 13px;

    font-style: italic;

    color: #9c4c7b;
}


/* ---------- NAVIGATION ---------- */

nav {
    margin-top: 20px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 6px;
}


nav a {
    display: inline-block;

    padding: 6px 12px;

    color: white;

    background: #e05b9e;

    border: 2px outset #f4a5cc;

    text-decoration: none;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 1px;
}


nav a:hover {
    background: #c93a82;

    border-style: inset;

    transform: translateY(1px);
}


/* ---------- MAIN LAYOUT ---------- */

main {
    display: grid;

    grid-template-columns: 245px 1fr;

    gap: 15px;

    padding: 18px;
}


/* ---------- BOXES ---------- */

.box {
    margin-bottom: 15px;

    padding: 14px;

    background: #fff9fd;

    border: 2px solid #efa7cb;

    box-shadow:
        3px 3px 0 #f8c9e2;
}


.box h2 {
    margin: -14px -14px 12px;

    padding: 8px;

    text-align: center;

    font-size: 15px;

    color: white;

    background: #e15b9e;

    border-bottom: 2px solid #c94486;

    letter-spacing: 1px;
}


.box p {
    font-size: 13px;

    line-height: 1.6;
}


.small {
    font-size: 11px !important;

    color: #a26b89;
}


/* ---------- PROFILE ---------- */

.profile {
    text-align: center;
}


.avatar {
    width: 105px;
    height: 105px;

    margin: 10px auto;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #ffc8e5,
            #d9c3ff
        );

    border: 4px solid white;

    outline: 2px dashed #dc77ad;

    box-shadow: 0 0 8px #e9a5ca;
}


.avatar span {
    font-size: 40px;
}


.divider {
    margin: 10px 0;

    color: #e078ad;

    font-size: 12px;
}


.status {
    text-align: left;

    background: #fff0f8;

    padding: 8px;

    border: 1px dotted #dc8eb5;
}


/* ---------- LIST ---------- */

ul {
    padding-left: 20px;

    margin-bottom: 5px;
}


li {
    margin: 7px 0;

    font-size: 12px;

    list-style-type: "♡ ";
}


/* ---------- COUNTER ---------- */

.counter {
    display: inline-block;

    padding: 5px 10px;

    margin: 5px 0;

    background: #292329;

    color: #ffb6df;

    border: 2px inset #999;

    font-family: "Courier New", monospace;

    letter-spacing: 3px;

    font-size: 13px;
}


/* ---------- CONTENT ---------- */

.content {
    min-width: 0;
}


.welcome {
    background:
        linear-gradient(
            135deg,
            #fff,
            #fff0f8
        );
}


.welcome p {
    font-size: 14px;
}


.cute-line {
    text-align: center;

    margin: 18px 0;

    color: #dd6ca5;
}


.center {
    text-align: center;
}


/* ---------- BLOG ---------- */

article {
    padding: 10px;

    margin-bottom: 12px;

    background: #fff1f8;

    border-left: 4px solid #e275aa;
}


article h3 {
    margin: 0;

    font-size: 11px;

    color: #ad6a8d;

    font-weight: normal;
}


article h4 {
    margin: 5px 0;

    color: #c83c83;

    font-size: 17px;
}


article p {
    font-size: 13px;

    line-height: 1.6;
}


.read-more {
    color: #d13d8c;

    font-size: 12px;

    font-weight: bold;

    text-decoration: none;
}


.read-more:hover {
    text-decoration: underline;
}


/* ---------- FAVORITES ---------- */

.favorites {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 8px;

    text-align: center;
}


.favorites div {
    padding: 10px 4px;

    font-size: 11px;

    font-weight: bold;

    color: #a53d76;

    background: #fff0f8;

    border: 1px dashed #e08ab5;
}


.favorite-icon {
    font-size: 27px;
}


/* ---------- GUESTBOOK ---------- */

.guestbook {
    text-align: center;
}


.button {
    display: inline-block;

    padding: 9px 15px;

    margin-top: 5px;

    color: white;

    background: #db4e94;

    border: 3px outset #f2a3c9;

    text-decoration: none;

    font-size: 12px;

    font-weight: bold;
}


.button:hover {
    border-style: inset;

    background: #c83b82;
}


/* ---------- FOOTER ---------- */

footer {
    padding: 20px;

    text-align: center;

    background: #ffe0ef;

    border-top: 3px dotted #df86b2;

    color: #9e527c;

    font-size: 11px;
}


.footer-hearts {
    color: #d95097;

    letter-spacing: 6px;

    margin: 5px 0;
}


/* ---------- FLOATING DECORATIONS ---------- */

.sparkle {
    position: fixed;

    color: #e36ca8;

    font-size: 22px;

    pointer-events: none;

    opacity: 0.7;
}


.sparkle1 {
    top: 12%;
    left: 4%;
}


.sparkle2 {
    top: 35%;
    right: 4%;
}


.sparkle3 {
    bottom: 25%;
    left: 5%;
}


.sparkle4 {
    bottom: 10%;
    right: 6%;
}


/* ---------- MOBILE ---------- */

@media (max-width: 700px) {

    body {
        padding: 10px 5px;
    }

    h1 {
        font-size: 31px;
    }

    main {
        grid-template-columns: 1fr;
    }

    .favorites {
        grid-template-columns:
            repeat(2, 1fr);
    }

    nav a {
        font-size: 10px;
        padding: 5px 8px;
    }

    .sparkle {
        display: none;
    }
}