/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
/*End of Fonts*/

* {
    font-family: Arial, Helvetica, sans-serif;
	color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
}

p {
    font-family: Lexend, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.8;
}

    .paragraph-no-margin {
        margin: 0;
    }

span, h1, h2, h3, h4, h5, h6 {
    font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

    .heading-no-margin {
        margin: 0;
    }

b, i, s, u {
    font-family: inherit;
}

ul, ol {
    line-height: 1.8;
}

hr {
    border: none;
    border-top: 1px solid rgb(72, 72, 72);
    margin: 32px 0;
}

:root {
    --text: #000;
    --bg: rgb(230, 210, 80);
    --hovercolor: dimgray;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color-scheme: none;
}

body, html {
    background-color: var(--bg);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
}

header {
    background-color: rgb(255, 240, 125, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 10px 20px;
    margin: 4vh 10vw; /* top and right | bottom and left */
    top: 4vh;
    box-sizing: border-box;
    position: sticky;
    z-index: 1000;
    backdrop-filter: blur(6px);
    --webkit-backdrop-filter: blur(6px);
    box-shadow: 0 0 18px 1px rgb(0 0 0 / 25%);
    border: 1px solid rgba(100, 100, 100, 0.3);
    border-radius: 24px;
}

    #logoandtitle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        user-select: none;
        gap: 20px;
    }

        #pfp {
            max-height: 58px;
            border-radius: 10px;
        }

        #title {
            font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

    nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: lemonchiffon;
        border-radius: 14px;
        width: auto;
        gap: 1px;
        flex-wrap: nowrap;
        margin-left: auto;
        position: relative;
        z-index: 10;
    }

        nav a, #dropdown-button {
            padding: 16px 24px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            color: black;
            transition: background-color 0.2s, color 0.2s;
            font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            user-select: none;
            border-radius: inherit;
        }

        nav a:hover, #dropdown-button:hover {
            background-color: rgb(225, 215, 130, 0.75);
            color: black;
            box-shadow: inset 0 0px 8px 1px rgb(75 75 75 / 25%);
        }


main {
    margin: 1vh 12vw 12vh; /* top and bottom | right and left */
    justify-content: center;
    flex: 1;
}

    #description {
        margin-bottom: 6vh;
    }

    #page-title-and-description-container {
        border-bottom: 1px solid rgb(255, 240, 120, 0.5);
        margin: 24px 0;
        margin-block-start: 0;
        display: flex;
        align-items: baseline;
        gap: 20px;
    }

        #page-title {
            text-align: left;
        }

        #page-title-container-and-description p {
            font-size: medium;
        }

#smbuttons {
    display: flex;
    flex-wrap: wrap;
    gap: 2vh;
    padding: 0;
    align-items: center;
    justify-content: center;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

    #smbuttons a {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background-color: khaki;
        border: 2px solid;
        border-radius: 18px;
        border-color: darkkhaki;
        padding: 14px 18px;
        gap: 10px;
        color: var(--text);
        font-size: x-large;
        box-shadow: inset 0 0 8px 1px rgba(195, 195, 195, 0.2);
        transition: background-color 0.2s, color 0.2s;
    }

        /*If you use Safari, you can activate 'corner-shape: squircle' in Feature Flags in Settings*/
        @supports (corner-shape: squircle) {
            #smbuttons a {
                corner-shape: squircle;
                border-radius: 32px;
            }

            header {
                corner-shape: squircle;
                border-radius: 32px;
            }

                #pfp {
                    corner-shape: squircle;
                    border-radius: 32px;
                }

                nav {
                    corner-shape: squircle;
                    border-radius: 32px;
                }

                    nav a {
                        corner-shape: squircle;
                        border-radius: inherit;
                    }

            #quote-container {
                corner-shape: squircle;
                border-radius: 32px;
            }
        }

        #smbuttons img {
            user-select: none;
            width: 26px;
            filter: invert(0);
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
        }

        #smbuttons .decolorize {
            filter: brightness(0);
        }

        #smbuttons span {
            font-family: 'Funnel Sans';
            font-weight: 550;
            color: black;
            white-space: nowrap;
        }

        #smbuttons a:hover {
            background-color: rgb(225, 215, 130);
            box-shadow: inset 0 0px 8px 0 rgba(125, 125, 125, 0.5);
        }

    #links-buttons-line {
        border-bottom: 1px solid rgb(255, 240, 120, 0.5);
    }

    #links-container {
        padding: 2% 0;
    }

    #links-buttons-title-container h2 {
        padding: 0 2% 0 2%;
    }

    #links-buttons-container {
        padding: 4% 0 2% 0;
    }

footer {
    display: grid;
    background-color: mediumseagreen;
    padding: 4vh 4vw 10vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    clear: both;
    align-items: center;
    bottom: 0;
    user-select: none;
}

    footer span, footer a, footer p {
        color: white;
        font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    #footer-content-container {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

        #footer-content-one, #footer-content-two, #footer-content-three, #footer-content-left-container, #footer-content-right-container {
            display: flex;
            height: auto;
            width: auto;
        }

        #footer-content-left, #footer-content-right {
            display: flex;
            flex-direction: row;
            gap: 1.25rem;
        }

        #footer-content-left {
            float: left;
            margin-left: 0;
        }

        #footer-content-right {
            float: right;
            margin-right: 0;
        }

        #footer-content-one {
            margin-left: 0;
        }

            #footer-content-one-container {
                display: flex;
                flex-direction: column;
            }

        #footer-content-three {
            margin-right: 0;
        }

            #footer-content-two-container, #footer-content-three-container {
                display: flex;
            }

            #footer-content-two-list, #footer-content-three-list {
                display: flex;
                flex-direction: column;
                gap: 10%;
            }

            #footer-content-right a span:hover {
                color: lightgray;
                transition: 0.2s;
            }

/* Responsiveness */
@media only screen and (min-width: 768px) {
    #mobile-nav {     
        display: none;
    }

    nav {
        display: inherit ; /* Show desktop menu */
    }
}

@media only screen and (max-width: 767px) {
    #pfp {
        box-shadow: rgb(0, 0, 0, 0.25) 0 0 8px 0px;
    }

    nav {
        display: none; /* Hide desktop menu */
    }

    #mobile-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: lemonchiffon;
        border-radius: 14px;
        width: auto;
        gap: 1px;
        flex-wrap: nowrap;
        margin-left: auto;
        position: relative;
        z-index: 10;
        margin-bottom: 4vh;
        box-shadow: rgb(0, 0, 0, 0.25) 0 0 12px 0px;
    }

        #mobile-nav a{
            padding: 2.5vh 3vw;
            background-color: lemonchiffon;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            color: black;
            transition: background-color 0.2s, color 0.2s;
            font-family: 'Figtree', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            user-select: none;
        }

    #page-title-and-description-container {
        display: block;
        align-items: baseline;
    }

    #links-container {
        padding: 6% 0;
    }
}

@media only screen and (max-width: 480px) {
    main {
        margin: 1vh 5vw 12vh; /* top and bottom | right and left */
    }

    #mobile-nav {
        gap: 0;
    }

        #mobile-nav a{
            padding: 2vh 2vw;
        }

    header {
        margin: 4vh 5vw; /* top and right | bottom and left */
        padding: 10px 15px;
    }

    #smbuttons {
        gap: 0.75vh;
    }

        #smbuttons a {
            padding: 12px 14px;
        }

        #smbuttons img {
            width: 22px;
        }
    
    footer {
        padding: 2vh 6vw 6vh;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    main {
        margin: 1vh 6vw 12vh; /* top and bottom | right and left */
    }

    header {
        margin: 4vh 6vw; /* top and right | bottom and left */
    }

        nav a {
            padding: 14px 16px;
        }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    main {
        margin: 1vh 8vw 12vh; /* top and bottom | right and left */
    }

    header {
        margin: 4vh 8vw; /* top and right | bottom and left */
    }

        nav a {
            padding: 14px 12px;
        }
}
