/* =========================================
   GENERAL
   ========================================= */

body {
background-color: #FAF0E6;
background-image: url("image/ocean sunset GIF by Living Stills.gif");
background-size: cover;
background-position: center;
background-attachment: fixed;
color: #FFF8E7;
font-family: "Times New Roman", Times, serif;
font-style: italic;
margin: 0;
padding: 0;
}

h1 {
font-style: normal;
}

a {
color: black;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}


/* =========================================
   GLIMMER
   ========================================= */

.top-sprinkle {
width: 100%;
height: 100px;
background-image: url("https://dividers.crd.co/assets/images/gallery04/937bcf07.gif?v=05d33f91");
background-position: top center;
background-size: auto 100px;
}


/* =========================================
   TOP SECTION
   A GLIMPSE | INTRODUCTION | THINGS I ADORE
   ========================================= */

#content {
display: grid;
grid-template-columns: 1fr 1.5fr 1fr;
width: 90%;
max-width: 1000px;
margin: 30px auto;
text-align: left;
border-top: 1px dotted black;
border-bottom: 1px dotted black;
align-items: stretch;
}


/* =========================================
   A GLIMPSE OF ME
   ========================================= */

.glimpse-box {
padding: 15px;
box-sizing: border-box;
border-right: 1px dotted black;
}


/* =========================================
   INTRODUCTION
   ========================================= */

#content main {
min-width: 0;
padding: 20px;
box-sizing: border-box;
}


/* =========================================
   THINGS I ADORE
   ========================================= */

.adore-box {
padding: 15px;
box-sizing: border-box;
border-left: 1px dotted black;
}

.adore-box ul {
padding-left: 20px;
margin-top: 10px;
}

.adore-box li {
margin-bottom: 8px;
}


/* =========================================
   SECTION TITLES
   ========================================= */

.title {
font-size: 18px;
font-weight: bold;
margin-bottom: 8px;
text-align: center;
}


/* =========================================
   BOTTOM TWO-COLUMN AREA
   ========================================= */

.bottom-sections {
position: relative;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 25px;
width: 90%;
max-width: 1000px;
margin: 35px auto;
align-items: start;
}


/* =========================================
   STAY INFORMED
   ========================================= */

#causes {
position: relative;
width: 100%;
text-align: center;
}

#causes .title {
margin-bottom: 20px;
}

.cause-links {
text-align: center;
width: 100%;
}

.cause-links a {
display: block;
color: #F6E6C8;
text-decoration: underline;
margin-bottom: 12px;
}


/* =========================================
   SLUGS
   ========================================= */

.slug-image {
width: 100px;
height: auto;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 0;
}

.left-slug {
left: -110px;
}

.right-slug {
right: -490px;
}


/* =========================================
   CONNECT WITH ME
   ========================================= */

.connect-box {
width: 100%;
padding: 0 20px;
box-sizing: border-box;
}

.connect-box .title {
margin-bottom: 20px;
}

.connect-link {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 18px;
}

.connect-link img {
width: 20px;
height: 20px;
object-fit: contain;
}

.connect-link a {
color: white;
font-weight: bold;
text-decoration: underline;
}

.connect-link a:hover {
text-decoration: none;
}


/* =========================================
   FORBIDDEN GARDEN
   ========================================= */

.adult-box {
grid-column: 1 / -1;
width: 100%;
padding: 25px;
box-sizing: border-box;
margin-top: 10px;
border-top: 1px dotted black;
}

.adult-box .title {
margin-bottom: 20px;
}

.adult-content {
display: flex;
justify-content: center;
align-items: center;
gap: 35px;
}

.adult-photo {
width: 180px;
height: 220px;
object-fit: cover;
border-radius: 8px;
transform: rotate(-3deg);
}

.adult-links {
text-align: left;
}

.adult-links p {
margin-top: 0;
font-weight: bold;
}

.adult-links a {
display: block;
color: white;
font-weight: bold;
text-decoration: underline;
margin-bottom: 10px;
}

.adult-links a:hover {
text-decoration: none;
}


/* =========================================
   DIVIDER
   ========================================= */

.divider {
border-bottom: 1px dotted black;
margin: 15px 0;
}


/* =========================================
   ABOUT ME PAGE
   ========================================= */

.page-title {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin: 30px 0;
}

.page-title div {
text-align: center;
}


/* =========================================
   ABOUT ME BUBBLES
   ========================================= */

.room-sections {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
}

.room-bubble {
border: 2px solid currentColor;
border-radius: 30px;
padding: 25px;
box-sizing: border-box;
background: rgba(255, 255, 255, 0.15);
}

.room-bubble h2 {
margin-top: 0;
margin-bottom: 15px;
text-align: center;
}

.room-bubble p {
margin-bottom: 0;
line-height: 1.6;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

/* TOP THREE SECTIONS */

#content {
grid-template-columns: 1fr;
width: 90%;
}

.glimpse-box {
border-right: none;
border-bottom: 1px dotted black;
}

#content main {
width: 100%;
border-bottom: 1px dotted black;
}

.adore-box {
border-left: none;
}


/* BOTTOM SECTIONS */

.bottom-sections {
grid-template-columns: 1fr;
width: 90%;
}


/* SLUGS */

.slug-image {
width: 65px;
}

.left-slug {
left: -5px;
}

.right-slug {
right: -5px;
}


/* FORBIDDEN GARDEN */

.adult-box {
grid-column: 1 / -1;
}

.adult-content {
flex-direction: column;
text-align: center;
}

.adult-links {
text-align: center;
}


/* ABOUT ME */

.room-sections {
grid-template-columns: 1fr;
}
}


/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 450px) {

.slug-image {
width: 55px;
}

.adult-photo {
width: 150px;
height: 190px;
}

.bottom-sections {
width: 92%;
}
}