/*
Background Gradient Color - #974f39, #69142e
Banner Gradient Color - #3c0b10, #69142e
*/

:root {
    --lip-image: url(https://jamzcreativecorner.neocities.org/Images/vector-beauty-seamless-pattern-red-lips-sexy-lip-make-up-sw-sweet-kiss-candy-smile-wallpaper-colorful-illustration-creative-108313581.webp);

}

body {
    margin: 0;
    padding: 0;

    background: linear-gradient(to right, #974f39, #69142e);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;

    font-family: "Patrick Hand", cursive;
    color: whitesmoke;
    cursor: url('https://ani.cursors-4u.net/symbols/sym-8/sym761.png'), auto;
    
    h1, h2, h3 {
         font-family: "Beth Ellen", cursive;
        color: whitesmoke;
    }

}

/* Cursor */
body, a, button, input, textarea, select {
    cursor: url('https://ani.cursors-4u.net/symbols/sym-8/sym761.png'), auto;
}

/* ANIMATED BACKGROUND */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: var(--lip-image);
    opacity: .15;
    pointer-events: none;
    background-size: 600px;
    background-repeat: repeat;
    z-index: -2;
    animation: moveTexture 60s linear infinite;

}

@keyframes moveTexture {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 600px 600px;
    }
}

/* END ANIMATED BACKGROUND */

/* Site Wrapper */

.site-wrapper {
    display: grid;
    min-height: 100vh;
    min-width: 62vh;
    overflow-x: hidden;
    background-color: rgba(0,0,0,0.6);

    grid-template-columns: 130px 1fr 200px;
    grid-template-rows: 11dvh 1fr 11dvh;
    grid-template-areas:
        "header header login"
        "aside main main"
        "footer footer footer";

}

/* Header */
header {
    grid-area: header;
    background-color: black;
    border-bottom: 1px solid white;

    display: flex;
    flex-direction: column;
    justify-content: center;

    text-align: center;
    font-family: "patrick Hand", cursive;
    letter-spacing: 1dvh;
    font-size: clamp(28px, 5vw, 45px);

}

/* Login */
.login-box {
    grid-area: login;
    background-color: black;
    border-bottom: 1px solid white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-self: center;

    width: 100%;
    height: 100%;
    box-sizing: border-box;

    button {
     font-family: "Patrick Hand", cursive;
    font-size: 18px;

    background-color: black;
    color: white;

    border: none;
    padding: 2px 15px;
    cursor: pointer;
    }

}

 .login-box button:hover {
        background-color: whitesmoke;
        color: black;
        border-radius: 10px;
    }

/* Aside */
aside {
    grid-area: aside;
    background-color: rgba(0,0,0,0.6);

    border-right: 2px dashed whitesmoke;
}

/* Main */
main {
    grid-area: main;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 2em;
    padding: 1em;
    align-items: center;
    width: clamp(300px, 100vw, 1133px);
    margin-left: 11px;
    flex-wrap: wrap;
}

.tab-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1em;
}

.tab-menu-button {
    appearance: none;
    border-left: 3px dashed whitesmoke;
    border-right: 3px dashed whitesmoke;
    border-top: 3px dashed whitesmoke;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.75rem 1rem;
    letter-spacing: 2px;
    left: 27vh;
    position: relative;
}

.tab-menu-button.is-active {
    background: rgba(255, 255, 255, 0.607);
    color: black;
}

.tab-panel {
    position: relative;
    width: 735px;
    max-width: 100%;
    box-sizing: border-box;
    height: 331px;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 15px;
            align-items: center;
            text-align: center;
            border: 3px dashed whitesmoke;
            border-radius: 10px;
            line-height: 21.6px;
            font-size: clamp(0.5rem, 5vw, 1rem);
            overflow-y: auto;
                padding-top: 2em;
    padding-left: 6em;
    padding-right: 6em;
    padding-bottom: 5em;
    text-align: center;
            display: none;
}

.tab-panel.is-active {
    display: block;
    overflow-x: hidden;
}

.left-section {
    width: 29%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.right-section {
    width: 64%;
    height: auto;
    padding: 10px;
    align-self: center;
    z-index: 1;
    position: relative;
    flex-grow: 1;
}

.main-img {
    width: clamp(250px, 50vw, 330px);
    height: auto;
    border: 10px solid #140303;
    border-radius: 20px;
}

.link-bubbles {
    background-color: #140304;
    width: 14dvh;
    margin: 5px auto;
    padding: 3px;
    border-radius: 50px;
    font-size: clamp(18px, 2vw, 22px);
    text-align: center;
    border-bottom: white solid 2px;
}

.link-bubbles a {
    color: white;
    text-decoration: none;
}

.link-bubbles a:hover {
    text-decoration: underline dotted;
}

.img-caption {
    width: 39dvh;
    text-align: center;
    font-size: 25px;
    -webkit-text-stroke: 1px black;
}

.main-container {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    width: clamp(300px, 40vw, 623px,);
    height: 296px;
    border: 3px dashed white;
    flex-grow: 1;
    padding-top: 2em;
    padding-left: 6em;
    padding-right: 6em;
    padding-bottom: 5em;
    text-align: center;
    overflow-y: auto;
    line-height: 21.6px;
    font-size: clamp(0.5rem, 5vw, 1rem);
}

.hand{
    width: clamp(235px, 15vw, 235px);
    height: auto;
    z-index: 2;
    position: absolute;
    padding: 1px;
}

.hand-left {
    transform: rotate(180deg);
    bottom: 12px;
    left: -110px;
}

.hand-right {
    bottom: 12px;
    right: -110px;
}

/* Footer */
footer {
    grid-area: footer;
    background-color: black;

    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2em;

    
    text-align: center;
    align-items: center;
    font-family: "Patrick Hand", cursive;
    font-size: clamp(14px, 2vw, 10px);
    border-top: 1px solid whitesmoke;

    
    .footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;

    margin: 8px 0;
}
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: .2s ease;
}

.footer-nav a:hover {
    color: pink;
    transform: translateY(-2px);
}

/* End Site Wrapper */

/* Blog Wrapper */
.blog-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 11dvh 1fr 11dvh;

    min-height: 100vh;
    min-width: 62vh;

    background-color: rgba(0,0,0,0.6);

    grid-template-areas:
        "header header nav"
        ". blog ."
        "footer footer footer ";
}

.blog-box {
    grid-area: blog;
    max-height: 567px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 1em;
    padding: 1em;
    align-items: center;
    width: clamp(300px, 100vw, 1133px);
    font-size: clamp(16px, 2.5vw, 24px);
    margin-left: 0px;
    flex-wrap: wrap;
    background-color: rgba(245, 245, 245, 0.345);    overflow-x: hidden;
    border: 1px solid white;
    overflow-y: auto;
}

.comment-box{
    grid-area: comment;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.614);
}

/* Page Wrapper */

.page-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 11dvh 1fr 11dvh;

    min-height: 100vh;
    min-width: 62vh;

    background-color: rgba(0,0,0,0.6);

    grid-template-areas:
        "header header nav"
        "leftside main rightside"
        "footer footer footer";
}

.left-column {
grid-area: leftside;
    background-color: black;
}

.right-column {
    grid-area: rightside;
    background-color: black;
}

#content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    box-sizing: border-box;

        a {
        text-decoration: underline solid;
        color: rgb(174, 173, 173);
    }
}

#nav {
    grid-area: nav;
    display: block;
    width: 100%;
    height: 100%;
    background-color: black;
    position: relative;

    .nav-container, .mobile-nav-toggle {
        display: block;
    }    

    .mobile-nav-toggle {
        width: 100%;
        height: 100%;
        background-color: black;
        color: white;
        font-size: 30px;
        pointer-events: auto;
        border: none;
        border-bottom: 1px solid white;
        cursor: pointer;
    }

#myLinks {
    display: none;
}

#myLinks.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    position: absolute;
    right: 0;
    top: 100%;

    width: 250px;
    min-height: 78vh;

    background-color: black;
    border-left: 1px solid white;
    z-index: 10;
}

    ul {
        list-style: none;
        font-size: 20px;
    }

    a {
        color: white;
        text-decoration: none;
    }  

       #myLinks a:hover,
    #myLinks .dropdown-btn:hover {
        color: pink !important;
    }

#myLinks .submenu {
    display: none;
}

#myLinks .submenu.open {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
}

.updates, .to-do-list, .future-projects, .subscribe{
    background-color: rgba(0,0,0,0.6);
    border: 3px dashed white;
    border-radius: 10px;

    flex: 1 1 250px;
    max-width: 350px;
    min-height: 400px;
    height: 50dvh;

    text-align: center;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;

    h3 {
        font-family: Patrick Hands;
    }

    ul {
        list-style-position: inside;
        margin: 5px;
        padding: 5px;
    }

    h4 {
        text-decoration: 1px underline white;
    }
}

.box-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    width: 100%;
    height: auto;
    border: 1px solid white;
    background-color: rgba(245, 245, 245, 0.345);
    margin-bottom: 5px;
    text-align: center;
    justify-content: center;

    a {
        text-decoration: underline dotted;
        color: rgb(56, 8, 8);
    }

}

.tarot-reading {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    width: 100%;
    height: auto;
    border: 1px solid white;
    background-color: rgba(245, 245, 245, 0.345);
    margin-bottom: 5px;
    text-align: center;
    justify-content: center;
    overflow-x: hidden;
}


.tarot-pics {
display: flex;
flex-direction: row;
margin: 5px;
padding: 5px;
justify-content: center;
align-items: center;
gap: 5px;

}

.tarot-card {
    width: 151px;
    height: auto;
}

/* Navigation */

.banner {
    min-height: 300px;
    width: clamp(100px, 12vw, 160px);

    background: linear-gradient(to right, #3c0b10, #69142e);

    position: absolute;
    top: 80px;
    right: 15px;

    border-radius: 5px;

    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;

    overflow: visible;

    transition: height .3s ease;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 80%, 0% 100%);

    z-index: 5;
}

.banner > ul {
    list-style: none;

    margin-top: 20px;
    padding: 0;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: center;

    gap: 5px;
}

.banner a {
    color: white;
    text-decoration: none;
}

.banner a:hover {
    color: black;
}

.dropdown-btn {
    background: none;
    border: none;

    color: white;

    cursor: pointer;

    font: inherit;
    padding: 0;
}

.dropdown-btn:hover {
    color: black;
}

.submenu {
    list-style: none;

    max-height: 0;
    overflow: hidden;

    margin-top: 5px;
    padding: 0;

    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    transition: max-height .3s ease, padding .3s ease;
}

.submenu li {
    margin: 0;
    padding: 0;
}

.submenu a {
    display: block;
    padding: 6px 10px;
    font-size: 14px;
    text-align: center;
}

.submenu.open {
    max-height: 400px;
    padding: 8px 0;
    border: 2px dashed white;
}

/* End Navigation */

/* Sticker */

.sticker {
    position: absolute;
    cursor: grab;
    user-select: none;
    z-index: 3;
    transition: transform 0.2s ease; 
        
        img {
    display: block;
    pointer-events: none;
}

}

.sticker:hover {
    transform: scale(1.09);
}


.nav-container {
    display: none;
}

/* Mobile */

@media (max-width: 1000px) {
    .banner,
    .sticker,
    .login-box,
    #myLinks,
    .left-column,
    .right-column,
    aside {
        display: none;
    }

    .blog-wrapper{
    grid-template-columns: 1fr 200px;
    grid-template-rows: 11dvh 1fr 11dvh;

        grid-template-areas:
            "header nav"
            "blog blog"
            "footer footer";
;
        width: 100%;
    }

.blog-box {
    max-height: 577px;
}


    .page-wrapper{
    grid-template-columns: 1fr 200px;
    grid-template-rows: 11dvh 1fr 11dvh;

        grid-template-areas:
            "header nav"
            "main main"
            "footer footer";

        min-width: 0;
        width: 100%;
    }


    .site-wrapper {
    grid-template-columns: 1fr 200px;
    grid-template-rows: 11dvh 1fr 11dvh;

        grid-template-areas:
            "header login"
            "main main"
            "footer footer";

        min-width: 0;
        width: 100%;
    }

    main {
        width: 100%;
        margin-left: 0;
        box-sizing: border-box;
    }

        .tab-panel {
        width: 780px;
        max-width: 100%;
        box-sizing: border-box;
    }

.nav-container {
    display: block;
    position: relative;
    z-index: index 2;
    border-bottom: 1px solid white;

}

.mobile-nav-toggle {
    display: block;
    background-color: black;
        color: white;
        border: none;

        font-size: 30px;
        padding: 5px 15px;

        cursor: pointer;
        width: 100%;
        height: 100%;
    }

    #myLinks {
        display: none;
    }

    #myLinks.open {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        right: 0;
        top: 63px;
        position: absolute;

        width: 37vw;
        min-height: 100dvh;

        background-color: black;
        z-index: 3;

    }

    /* Main navigation list */
    #myLinks > ul {
        display: flex;
        flex-direction: column;
        align-items: center;

        list-style: none;

        margin: 0;
        padding: 0;

        gap: 15px;
    }

    /* Main links */
    #myLinks a,
    #myLinks .dropdown-btn {
        display: block;

        color: white !important;

        font-family: "Patrick Hand", cursive;
        font-size: 25px;

        text-decoration: none;

        background: none;
        border: none;

        cursor: pointer;
    }

    /* Hover */
    #myLinks a:hover,
    #myLinks .dropdown-btn:hover {
        color: pink !important;
    }

    /* SUBMENUS */

    #myLinks .submenu {
        display: none;

        max-height: none;

        list-style: none;

        margin: 5px 0;
        padding: 10px;

        background: rgba(255,255,255,0.1);

        flex-direction: column;
        align-items: center;

        gap: 5px;
    }

    #myLinks .submenu.open {
        display: flex;
    }

    #myLinks .submenu a {
        font-size: 18px;
    }
}

@media (max-width: 1000px) {

    #myLinks .submenu {
        display: none;

        max-height: none;
        overflow: visible;

        margin: 5px 0;
        padding: 10px;

        list-style: none;

        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    #myLinks .submenu.open {
        display: flex;
    }

}