/* =========================================
BASIC SETTINGS
========================================= */

{
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

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

    background-color: #we;
    background-image: url("https://doostuff.neocities.org/images/neocitiesbkgd.jpg");
    background-repeat: repeat;
    background-attachment: fixed;

    color: #403832;

    font-family: Georgia, "Times New Roman", serif;

    line-height: 1.5;
}
.about-page-body {
    background-image: url("https://doostuff.neocities.org/images/colorful-star-seamless-pattern.jpg");
}
.tattoos-page-body {
    background-image: url("https://doostuff.neocities.org/images/sailor-dust.png");
    background-size: 1000px;
}

.ceramics-page-body {
    background-image: url("images/ceramics-background.jpg");
}

.penpal-page-body {
    background-image: url("images/penpal-background.jpg");
}

.rugs-page-body {
    background-image: url("images/rugs-background.jpg");
}

.guestbook-page-body {
    background-image: url("images/guestbook-background.jpg");
}

/* =========================================
MAIN WEBSITE CONTAINER
========================================= */

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

    margin: 0 auto;

    background-color: rgba(220, 235, 250, 0.76);

    border: 3px solid #403832;
    border-radius: 20px;

    padding: 25px;

    position: relative;
    isolation: isolate;
}

/* =========================================
SCALLOPED OUTER TRIM
========================================= */

.site::before {
    content: "";
    position: absolute;

    top: -18px;
    left: -18px;

    width: calc(100% + 36px);
    height: calc(100% + 36px);

    pointer-events: none;
    z-index: -1;

    background:

        /* TOP */
        radial-gradient(
            circle,
            #264C99 0 16px,
            transparent 17px
        )
        top center / 28px 28px repeat-x,

        /* BOTTOM */
        radial-gradient(
            circle,
            #264C99 0 16px,
            transparent 17px
        )
        bottom center / 28px 28px repeat-x,

        /* LEFT */
        radial-gradient(
            circle,
            #264C99 0 16px,
            transparent 17px
        )
        left center / 28px 28px repeat-y,

        /* RIGHT */
        radial-gradient(
            circle,
            #264C99 0 16px,
            transparent 17px
        )
        right center / 28px 28px repeat-y;

    border-radius: 38px;
}

/* =========================================
HEADER
========================================= */

.header {
text-align: center;

border-bottom: 2px dashed #8e7d6d;

padding-bottom: 22px;
margin-bottom: 22px;

}

.site-title h1 {
margin: 0;

font-size: 42px;
font-weight: normal;

letter-spacing: 2px;

}

.site-title p {
    margin: 3px 0 20px;
    font-size: 14px;
    color: #79695b;
    font-style: normal;
    font-family: "Courier New", Courier, monospace;
}
.site-title img {
    width: 250px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 3px;
}

/* =========================================
NAVIGATION
========================================= */

.navigation {
display: flex;

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

flex-wrap: wrap;

gap: 25px;

}

.nav-item {
display: flex;

flex-direction: column;

align-items: center;
.nav-text-gif {
    width: 100px;
    height: auto;
    display: block;
}
.nav-home-gif {
    width: 60px;
}
.nav-penpal-gif {
    width: 125px;
}

.nav-rugs-gif {
    width: 60px;
}
.nav-guestbook-gif {
    width: 125px;
}

gap: 5px;

color: #403832;

text-decoration: none;

font-size: 13px;

letter-spacing: 1px;

transition: transform 0.15s ease;

}

.nav-image {
    width: 70px;
    height: 70px;

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

    background-color: #ead9d5;

    border: 2px solid #403832;
    border-radius: 50%;

    overflow: hidden;
}

.nav-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Floating PNG icons for Home + About */
.floating-icon {
    width: 70px !important;
    height: 70px !important;

    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon img {
    width: 70px !important;
    height: 70px !important;

    max-width: 70px !important;
    max-height: 70px !important;

    object-fit: contain;
}

.home-icon img {
    width: 85px !important;
    height: 85px !important;

    max-width: 85px !important;
    max-height: 85px !important;

    object-fit: contain;
}

.nav-item:hover {
transform: translateY(-4px);
}

.nav-item:hover .nav-image {
background-color: #e8c3c4;
}

/* =========================================
MAIN CONTENT
========================================= */

.main-content {
width: 100%;
}

/* =========================================
WELCOME + WHAT'S NEW
========================================= */

.intro-grid {
display: grid;

grid-template-columns: 1fr 1fr;

gap: 20px;

margin-bottom: 35px;

}

.box {
border: 2px solid #403832;
background-color: #F2F9FF;
border-radius: 20px;
overflow: hidden;
}

.box-title {
padding: 7px 10px;

text-align: center;

background-color: #BAD8F5;

border-bottom: 2px solid #403832;

font-size: 15px;

letter-spacing: 1px;

}

.box-content {
padding: 15px 18px;

font-size: 14px;

}

.box-content p {
margin-top: 0;
margin-bottom: 10px;
}

.tiny-text {
font-size: 12px;

color: #79695b;

}

.news-item {
border-bottom: 1px dotted #a49382;

padding-bottom: 8px;
margin-bottom: 8px;

}

.news-item:last-child {
border-bottom: none;

margin-bottom: 0;

}

.news-item p {
margin: 2px 0 0;
}

.date {
font-size: 11px;

color: #9a6e70;

font-weight: bold;

}

/* =========================================
FEATURED WORK
========================================= */

.featured {
margin-top: 10px;

padding-top: 5px;

}

.section-heading {
text-align: center;

font-size: 20px;

letter-spacing: 2px;

margin-bottom: 5px;

}

.section-heading span {
color: #a85e65;

padding: 0 8px;

}

.section-intro {
text-align: center;

font-size: 13px;

color: #79695b;

margin-top: 0;
margin-bottom: 20px;

}

/* =========================================
ART GRID
========================================= */

.art-grid {
display: grid;

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

gap: 18px;

}

.art-piece {
text-decoration: none;

color: #403832;

text-align: center;

font-size: 13px;

}

.placeholder-image {
height: 190px;

display: flex;

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

background-color: #F2F9FF;

border: 2px solid #403832;

margin-bottom: 7px;

color: #79695b;

font-size: 12px;

letter-spacing: 2px;

transition: 0.15s ease;

}

.art-piece:hover .placeholder-image {
transform: rotate(-1deg);

background-color: #BAD8F5;

box-shadow: 4px 4px 0 #7CA8CF;

}

/* =========================================
LITTLE NOTE
========================================= */

.little-note {
margin: 35px auto 10px;

max-width: 500px;

display: flex;

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

gap: 15px;

padding: 15px;

border-top: 1px dashed #9a8978;
border-bottom: 1px dashed #9a8978;

text-align: center;

font-size: 13px;

font-style: italic;

}

.little-note p {
margin: 0;
}

.note-decoration {
color: #a85e65;

font-size: 18px;

}

/* =========================================
FOOTER
========================================= */

.footer {
margin-top: 25px;

padding-top: 15px;

    border: none !important;

text-align: center;

font-size: 12px;

color: #79695b;

}
.footer-gif {
    display: block;

    width: 100%;
    max-width: 500px;
    height: auto;

    margin: 0 auto 15px;
}

.footer p {
margin: 5px;
}

.footer-links a {
color: #8d5960;

text-decoration: none;

}

.footer-links a:hover {
text-decoration: underline;
}

.copyright {
font-size: 10px;

opacity: 0.7;

}

/* =========================================
MOBILE
========================================= */
/* =========================================
ABOUT PAGE
========================================= */

.about-page {
    padding: 10px 15px;
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 750px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 250px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #403832;
}

.about-text {
    flex: 1;
    font-size: 14px;
}

.about-text p {
    margin-top: 0;
    margin-bottom: 15px;
}
/* =========================================
TATTOO PAGE
========================================= */

.tattoo-page {
    padding: 10px 5px;
}

.tattoo-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 20px 10px;
}

.tattoo-gallery img {
    width: 220px;
    height: auto;
    display: block;

    border: 2px solid #403832;

    box-shadow: 5px 5px 0 #b8a99a;

    transition: transform 0.2s ease;
}

.tattoo-gallery img:nth-child(odd) {
    transform: rotate(-2deg);
}

.tattoo-gallery img:nth-child(even) {
    transform: rotate(2deg);
}

.tattoo-gallery img:hover {
    transform: rotate(0deg) scale(1.05);
}
/* =========================================
TATTOO CATEGORIES
========================================= */

.tattoo-categories {
    position: relative;

    width: 100%;
    max-width: 800px;
    height: 700px;

    margin: 35px auto;
}

.tattoo-category {
    position: absolute;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    color: #403832;
    text-decoration: none;

    transition: transform 0.2s ease;
}

.tattoo-category span {
    font-family: "Courier New", Courier, monospace;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
}

.tattoo-category img {
    width: 180px;
    height: auto;

    object-fit: contain;
    display: block;

    border: none;
    box-shadow: none;
    outline: none;
    background: transparent;
}
/* Make FISH bigger */
.tattoo-category:nth-child(1) img {
    width: 210px;
}

/* Make BLACK TILES smaller */
.tattoo-category:nth-child(3) img {
    width: 160px;
}

/* Make LITTLE GUYS bigger */
.tattoo-category:nth-child(5) img {
    width: 210px;
}

/* Make HEALED smaller */
.tattoo-category:nth-child(7) img {
    width: 130px;
}
.tattoo-category:nth-child(1) {
    left: 5%;
    top: 40px;
    transform: rotate(-7deg);
}

.tattoo-category:nth-child(2) {
    left: 36%;
    top: 10px;
    transform: rotate(5deg);
}

.tattoo-category:nth-child(3) {
    right: 5%;
    top: 65px;
    transform: rotate(-4deg);
}

.tattoo-category:nth-child(4) {
    left: 15%;
    top: 280px;
    transform: rotate(6deg);
}

.tattoo-category:nth-child(5) {
    right: 30%;
    top: 250px;
    transform: rotate(-8deg);
}

.tattoo-category:nth-child(6) {
    right: 3%;
    top: 350px;
    transform: rotate(7deg);
}

.tattoo-category:nth-child(7) {
    left: 42%;
    top: 470px;
    transform: rotate(-5deg);
}
.tattoo-category span {
    font-family: "Courier New", Courier, monospace;
    font-size: 12px;
    letter-spacing: 1px;
    text-align: center;
}

.tattoo-category:hover {
    transform: scale(1.08);
    z-index: 10;
}

.tattoo-category:hover span {
    text-decoration: underline;
}
@media (max-width: 650px) {

body {
    padding: 10px 5px;
}

.site {
    padding: 15px;

    box-shadow: 4px 4px 0 #b8a99a;
}

.site-title h1 {
    font-size: 30px;
}

.navigation {
    gap: 15px;
}

.nav-image {
    width: 42px;
    height: 42px;

    font-size: 19px;
}

.nav-item {
    font-size: 11px;
}

.intro-grid {
    grid-template-columns: 1fr;
}

.art-grid {
    grid-template-columns: 1fr;
}

.placeholder-image {
    height: 250px;
}


}