/* 
    Theme name: DAVA Cleaning s.r.o.
    Author: Petr Svoboda
    Version: 0.1
    Description: Šablona pro web Dava Cleaning s.r.o.
    Customer: Vitalii Pozniakov
    Date: October 2025
    Website: davacleaning.cz
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    font-family: 'SF UI Display', sans-serif;
    font-weight: 300;
    /* font-size: 1.6rem; */
}

:root {
    --blue-primary: #2463EB;
    --green-secondary: #16A249;
    --dark-blue: #1D283A;
    --white: #F1F5F9;
    --gray: #65758B;
    --gray-text: #75758B;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-timeline: ease-in-out;
}

body {
    min-height: 100svh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}


:focus {
    outline: 2px solid var(--blue-primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 8px;
    font-size: 2rem;
    z-index: 10000;
}

.skip-link:focus {
    top: 20px;
}

a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--blue-primary);
    outline-offset: 2px;
}

.text-gradient {
    max-width: max-content;
    background: linear-gradient(130deg, var(--blue-primary), var(--green-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


header {

    nav {
        /* position: fixed !important; */

        height: 65px;
        width: 100%;
        max-width: 2000px;
        margin: 0 auto;

        display: grid;
        grid-template-columns: 260px 1fr 260px;
        align-items: center;
        gap: 20px;
        padding: 0 40px;

        box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.05);
        position: relative;
        z-index: 1000;

        #nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;

            img {
                width: 50px;
            }

            span#name {
                font-size: 2rem;
                font-weight: bold;
                color: #333;
            }
        }

        >ul {
            display: flex;
            align-items: center;
            height: 100%;
            gap: 30px;
            justify-self: center;
            z-index: 1;

            li {
                list-style: none;
                height: 100%;
                display: flex;
                align-items: center;
                position: relative;

                a {
                    text-decoration: none;
                    color: #333;
                    font-size: 1.6rem;
                    display: flex;
                    align-items: center;
                    padding: 0 5px;
                    font-weight: 500;
                    position: relative;

                    &::after {
                        content: "";
                        position: absolute;
                        bottom: -3px;
                        left: 0;
                        height: 2px;
                        width: 100%;
                        background: linear-gradient(to right, var(--blue-primary), var(--green-secondary));
                        transform: scaleX(0);
                        transform-origin: left;
                        transition: transform 0.4s ease-in-out;
                    }

                    &:hover::after {
                        transform: scaleX(1);
                    }
                }

                ul {
                    display: none;
                    position: absolute;
                    top: 65px;
                    height: auto;
                    width: max-content;
                    flex-direction: column;
                    gap: 20px;
                    padding: 10px;
                    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                    background-color: white;
                    border-top: 2px solid var(--blue-primary);
                }

                &:hover {
                    ul {
                        display: flex;
                        top: 100%;
                        left: 0;
                    }
                }
            }
        }

        >a#contact-desktop {
            width: max-content;
            justify-self: end;
            background: var(--blue-primary);
            padding: 10px 25px;
            border-radius: 5px;
            color: white;
            font-size: 1.6rem;
            font-weight: 500;
            text-decoration: none;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: color 0.2s;

            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border-radius: 5px;
                background: linear-gradient(130deg, var(--blue-primary), var(--green-secondary));
                opacity: 0;
                transition: opacity 0.2s;
                z-index: -1;
            }

            &:hover::before {
                opacity: 1;
            }
        }

    }

    section {
        width: 100%;
        max-width: 2000px;
        margin: 0 auto;
        padding: 100px 50px;
        background: linear-gradient(130deg, rgba(36, 99, 235, 0.7), rgba(22, 162, 73, 0.7));
        position: relative;
        overflow: hidden;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            z-index: -1;
        }

        .container {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 1400px;
            position: relative;
            z-index: 1;

            h1 {
                font-size: clamp(3rem, 6vw, 6rem);
                font-weight: 700;
                margin-bottom: 10px;
                width: max-content;
            }

            h2 {
                font-size: clamp(2.5rem, 5vw, 5rem);
                font-weight: 600;
                margin-bottom: 20px;
            }

            p {
                font-size: clamp(1.6rem, 2vw, 2.4rem);
                font-weight: 300;
                max-width: 700px;
            }

            div {
                display: flex;
                gap: 20px;
                margin-top: 30px;
                z-index: 1;
                position: relative;

                a {
                    width: max-content;
                    justify-self: end;
                    background: var(--blue-primary);
                    padding: 10px 25px;
                    border-radius: 5px;
                    color: white;
                    font-size: 1.6rem;
                    font-weight: 400;
                    text-decoration: none;
                    position: relative;
                    z-index: 1;
                    overflow: hidden;
                    transition: color 0.4s;

                    &:nth-child(2) {
                        background: var(--green-secondary);
                    }

                    &::before {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        border-radius: 5px;
                        background: linear-gradient(130deg, var(--blue-primary), var(--green-secondary));
                        opacity: 0;
                        transition: opacity 0.4s;
                        z-index: -1;
                    }

                    &:nth-child(2)::before {
                        background: linear-gradient(-130deg, var(--blue-primary), var(--green-secondary));
                    }

                    &:hover::before {
                        opacity: 1;
                    }
                }
            }

            article {
                display: flex;
                gap: 15px;

                div {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                    text-align: center;

                    .icon {
                        font-size: 2rem;
                        color: var(--green-secondary);
                        text-shadow: 2px 2px 3px rgba(0, 0, 0, .8);
                    }

                    .text {
                        font-size: 1.4rem;
                        font-weight: 300;
                        text-shadow: 2px 2px 3px rgba(0, 0, 0, 1.8);
                    }
                }
            }


            @media screen and (max-width: 630px) {
                >div {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 10px;
                }

                article {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 5px;

                    padding: 20px 0 0 0;

                    div {
                        margin: 0;

                    }
                }
            }
        }
    }
}



/* ? MOBILE NAV */


header nav #mobile-nav {
    display: none;

    position: absolute;

    top: 65px;
    left: 0;
    width: 100svw;
    height: auto;
    background-color: rgba(255, 255, 255, 1);

    /* display: flex; */
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px 20px 40px;


    z-index: 1000;

    >ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;

        li {
            list-style: none;

            a {
                width: 100%;
                display: block;

                font-size: 1.8rem;
                font-weight: 500;
                color: #333;
                text-decoration: none;

                text-align: center;
            }
        }
    }

    >a {
        width: max-content;
        margin: 0 auto;
        /* margin: 20px auto 0 auto; */

        color: var(--blue-primary);
        font-size: 1.8rem;
        font-weight: 500;
        text-decoration: none;

        position: relative;
        z-index: 1;
        overflow: hidden;

        transition: color 0.2s;
    }

}

header nav .menu-btn,
.menu-icon {
    display: none !important;
}

@media screen and (max-width: 1200px) {
    .mobile {
        display: block !important;
    }

    .menu-icon {
        height: 100%;
        width: 40px;
        display: flex !important;
        align-items: center;
        justify-content: center;

        margin-left: 20px;
        margin-right: 10px;

        /* grid-column: 3; */
    }

    header nav {
        grid-template-columns: auto 60px;
        padding: 0 20px;
    }

    #menu-desktop,
    #contact-desktop {
        display: none !important;
    }



    /* MOBILE MENU ICON LINES */

    header .menu-icon .nav-icon {
        background-color: var(--blue-primary);
        display: block;
        height: 2.5px;
        width: 15px;
        position: relative;
        transition: background .2s ease-out;
        border-radius: 2px;

        display: flex;
        justify-content: flex-end;
    }

    header .menu-icon .nav-icon:before {
        background-color: var(--blue-primary);
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 150%;
        top: 5px;
        border-radius: 2px;

    }

    header .menu-icon .nav-icon:after {
        background-color: var(--blue-primary);
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        width: 150%;
        transition: all .2s ease-out;
        top: -5px;
        border-radius: 2px;

    }

    /* DISPLAING MOBILE MENU */

    header .menu-btn:checked~#mobile-nav {
        display: flex !important;
        transition: 0.5s;
        max-width: 100%;
    }

    /* MOBILE MENU ICON NAVIGATION */

    header .menu-btn:checked~.menu-icon .nav-icon {
        background-color: transparent;
    }

    header .menu-btn:checked~.menu-icon .nav-icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    header .menu-btn:checked~.menu-icon .nav-icon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}



main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;


    .page-title {
        display: flex;
        flex-direction: column;
        gap: 10px;
        /* margin-bottom: 30px; */
        padding-bottom: 0px !important;

        h1 {
            font-size: 4rem;
            font-weight: 700;
            color: var(--dark-blue);
        }

        nav a {
            text-decoration: none;
            color: #333;
            font-size: 1.4rem;
            padding: 0 5px;
            position: relative;

            &::after {
                content: "";
                position: absolute;
                bottom: -2px;
                left: 0;
                height: 1px;
                width: 100%;
                background: linear-gradient(to right, var(--blue-primary), var(--green-secondary));

                transform: scaleX(0);
                /* startovní stav */
                transform-origin: left;
                /* odleva doprava */
                transition: transform 0.3s ease-in-out;
                /* animace zobrazení a skrytí */
            }

            &:hover::after {
                transform: scaleX(1);
                /* rozvine čáru při hoveru */
            }
        }

        nav span {
            font-size: 1.4rem;
            color: var(--gray-text);
            text-decoration: none;
        }
    }

    section {
        width: 100%;
        max-width: 1400px;
        padding: 60px 20px;

        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;

        &:not(:has(*)) {
            display: none;
        }
    }

    p {
        font-size: 1.8rem;
        font-weight: 300;
    }

    h2 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 10px;
        margin-top: 15px;
        color: var(--dark-blue);
    }

    h3 {
        font-size: 2.4rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--dark-blue);
    }

    h4 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--dark-blue);
    }

    h5,
    h6 {
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 5px;
        color: var(--dark-blue);
    }

    ul,
    ol {
        font-size: 1.8rem;
        list-style-position: inside;
        margin-left: 20px;

        li {
            font-weight: 300;
        }
    }

    a {
        color: var(--blue-primary);
        text-decoration: none;

        transition: color 0.2s;

        &:hover {
            color: var(--green-secondary);
            text-decoration: underline;
        }
    }


    .services-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;

        @media screen and (max-width: 1300px) {
            & {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media screen and (max-width: 800px) {
            & {
                grid-template-columns: 1fr;
            }
        }


        .service-item {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.15);
            text-align: center;

            display: flex;
            align-items: flex-start;
            flex-direction: column;
            gap: 20px;

            text-decoration: none;

            transition: box-shadow .4s;


            .icon {
                font-size: 3rem;
                color: var(--blue-primary);

                padding: 10px;
                border-radius: 5px;
                background-color: rgba(36, 99, 235, 0.1);
            }

            h3 {
                font-size: 2rem;
                font-weight: 600;
                color: var(--dark-blue);
            }

            p {
                font-size: 1.5rem;
                font-weight: 300;
                color: var(--gray-text);
                text-align: left;
            }

            &:hover {
                box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.2);
            }
        }
    }
	
	&.page .services-list .service-item {
		box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.15);
	}


    section.contact-form-section {
        padding: 60px 20px;

        max-width: 100%;

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


        .wp-block-group__inner-container {
            display: flex;
            flex-direction: column;
            /* gap: 20px; */
            align-items: stretch;
            width: 100%;
            max-width: 1200px;
        }

        &.gray {
            background-color: #F1F5F9;
        }

        h2 {
            text-align: center;
        }

        h2+h3 {
            align-self: center;

            max-width: 600px;

            font-size: 1.8rem;
            font-weight: 300;
            text-align: center;
            color: var(--gray-text);
        }


        .contact-form {
            display: grid;
            gap: 50px;

            margin-top: 20px;

            &.info-shown {
                grid-template-columns: 1fr 2fr;
            }

            &.info-hidden {
                grid-template-columns: 1fr;
                place-items: center;
            }

            @media screen and (max-width: 1150px) {

                &.info-shown,
                &.info-hidden {
                    grid-template-columns: 1fr;
                    place-items: center;

                    aside,
                    .form {
                        width: 100%;
                    }

                }
            }

            aside {
                display: flex;
                flex-direction: column;
                gap: 20px;


                > div {
                    display: grid;
                    grid-template-columns: 55px 1fr;
                    grid-template-rows: 1fr auto;
                    gap: 10px;
                    background-color: white;
                    padding: 15px;
                    border-radius: 10px;
                    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);

                    span {
                        grid-row: span 2;
                        place-items: center;

                        width: max-content;
						height: max-content;

                        font-size: 2.5rem;
                        color: var(--blue-primary);
                        padding: 10px;
                        border-radius: 5px;
                        background-color: rgba(36, 99, 235, 0.1);
                    }

                    h3 {
                        font-size: 1.6rem;
                        font-weight: 600;
                        color: var(--dark-blue);
                        margin-bottom: 0 !important;
                    }

                    p,
                    a {
                        font-size: 1.4rem;
                        font-weight: 300;
                        color: var(--gray-text);
                        margin: 0 !important;
                    }
                }
            }


            @media screen and (max-width: 1150px) {


                aside {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 20px;
                }
            }

            @media screen and (max-width: 700px) {
                aside {
                    display: flex;
                }
            }

            .form {
                display: flex;
                flex-direction: column;
                gap: 10px;

                background-color: white;
                box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
                padding: 20px 35px;
                border-radius: 10px;

                h3 {
                    font-size: 2.4rem;
                    font-weight: 600;
                    color: var(--dark-blue);
                    margin: 0 !important;
                }

                p {
                    font-size: 1.4rem;
                    font-weight: 300;
                    color: var(--gray-text);
                    margin-bottom: 20px;
                }

                .form-message {
                    font-size: 1.4rem;
                    font-weight: 500;
                    padding: 10px;
                    border-radius: 5px;
                    margin-top: -10px;
                    margin-bottom: 20px;

                    &.success {
                        background-color: #D1F2E5;
                        color: #196F3D;
                        border: 1px solid #196F3D;
                    }

                    &.error {
                        background-color: #FADBD8;
                        color: #C0392B;
                        border: 1px solid #C0392B;
                    }
                }



                form {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 20px;

                    div {
                        display: flex;
                        flex-direction: column;
                        gap: 5px;

                        label {
                            font-size: 1.4rem;
                            font-weight: 500;
                            color: var(--dark-blue);
                        }

                        input,
                        textarea {
                            font-size: 1.4rem;
                            padding: 10px;
                            border: 1px solid #ccc;
                            border-radius: 5px;

                            &::placeholder {
                                color: #999;
                            }
                        }

                        select {
                            outline: none;
                            border: none;
                            appearance: none;

                            font-size: 1.4rem;
                            padding: 10px;
                            border: 1px solid #ccc;
                            border-radius: 5px;
                            background-color: white;

                            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10'%3E%3Cpath fill='gray' d='M7 10L0 0h14z'/%3E%3C/svg%3E");
                            /* vlastní šipka */
                            background-repeat: no-repeat;
                            background-position: right 10px center;
                            background-size: 12px;
                            padding-right: 35px;
                            /* místo pro šipku */
                            cursor: pointer;

                            &:not(:valid) {
                                color: #999;
                            }
                        }

                        &.textarea {
                            grid-column: span 2 !important;
                        }

                        textarea {
                            width: 100%;
                            min-height: 100px;
                            resize: vertical;
                        }
                    }

                    button {
                        grid-column: span 2;
                        width: max-content;
                        background: var(--blue-primary);
                        padding: 10px 25px;
                        border: none;
                        border-radius: 10px;

                        color: white;
                        font-size: 1.6rem;
                        font-weight: 400;
                        text-decoration: none;

                        position: relative;
                        z-index: 1;
                        overflow: hidden;

                        cursor: pointer;

                        transition: color 0.4s;

                        &::before {
                            content: "";
                            position: absolute;
                            top: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            border-radius: 5px;
                            background: linear-gradient(130deg, var(--blue-primary), var(--green-secondary));
                            opacity: 0;
                            transition: opacity 0.4s;
                            z-index: -1;
                        }

                        &:hover::before {
                            opacity: 1;
                        }
                    }

                }
            }

            @media screen and (max-width: 900px) {
                form {
                    display: flex !important;
                    flex-direction: column;
                    gap: 20px;
                }
            }
        }
    }
}

body.home main {
    display: flex;
    flex-direction: column;
    width: 100%;

    section {
        padding: 60px 20px;

        max-width: 100%;

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


        .wp-block-group__inner-container {
            display: flex;
            flex-direction: column;
            /* gap: 20px; */
            align-items: stretch;
            width: 100%;
            max-width: 1200px;
        }

        &.gray {
            background-color: #F1F5F9;
        }

        h2 {
            text-align: center;
        }

        h2+h3 {
            align-self: center;

            max-width: 600px;

            font-size: 1.8rem;
            font-weight: 300;
            text-align: center;
            color: var(--gray-text);
        }
    }
}

body.page-template-template-services main,
body.page-template-template-side-menu main {
    .page-content {
        display: grid;
        grid-template-columns: 5fr 2fr;
        gap: 40px;

        @media screen and (max-width: 1100px) {
            & {
                grid-template-columns: 1fr;
            }
        }

        article {
            .page-title {
                display: flex;
                flex-direction: column;
                gap: 10px;
                margin-bottom: 30px;

                h1 {
                    font-size: 4rem;
                    font-weight: 700;
                    color: var(--dark-blue);
                }

                nav a {
                    text-decoration: none;
                    color: #333;
                    font-size: 1.4rem;
                    padding: 0 5px;
                    position: relative;

                    &::after {
                        content: "";
                        position: absolute;
                        bottom: -2px;
                        left: 0;
                        height: 1px;
                        width: 100%;
                        background: linear-gradient(to right, var(--blue-primary), var(--green-secondary));

                        transform: scaleX(0);
                        /* startovní stav */
                        transform-origin: left;
                        /* odleva doprava */
                        transition: transform 0.3s ease-in-out;
                        /* animace zobrazení a skrytí */
                    }

                    &:hover::after {
                        transform: scaleX(1);
                        /* rozvine čáru při hoveru */
                    }
                }

                nav span {
                    font-size: 1.4rem;
                    color: var(--gray-text);
                    text-decoration: none;
                }
            }


            .content {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
        }

        aside.sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
            /* position: sticky; */
            top: 80px;
            align-self: start;



            .subpages-list {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
                background-color: #F1F5F9;

                padding: 15px;
                border-radius: 10px;


                li {
                    display: block;
                    list-style: none;
                    width: 100%;

                    a {
                        display: block;
                        width: 100%;
                        padding: 15px 10px;
                        border-radius: 5px;

                        text-decoration: none;
                        background-color: white;
                        color: var(--dark-blue);
                        font-size: 1.7rem;
                        font-weight: 500;

                        cursor: pointer !important;

                        transition: color 0.2s;

                        &:hover {
                            text-decoration: underline;
                        }
                    }

                    &.current_page_item a {
                        color: var(--blue-primary) !important;
                        text-decoration: underline !important;
                    }
                }
            }
        }
    }
}

body.error404 main section {
    padding: 100px 20px;
    text-align: center;

    h1 {
        font-size: 8rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--dark-blue);
    }

    h2 {
        font-size: 3.6rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--dark-blue);
    }

    p {
        font-size: 1.8rem;
        font-weight: 300;
        color: var(--gray-text);
    }
}


footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 40px 40px 40px;


    #info {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 0 auto 60px auto;

        max-width: 1400px;
        width: 100%;

        @media screen and (max-width: 1200px) {
            grid-template-columns: repeat(2, 1fr);
            row-gap: 60px;
        }

        @media screen and (max-width: 600px) {
            grid-template-columns: 1fr;
            row-gap: 40px;
        }


        article {
            display: flex;
            flex-direction: column;
            gap: 10px;


            h2 {
                font-size: 2.4rem;
                font-weight: 700;
            }

            h3 {
                font-size: 1.6rem;
                font-weight: 600;
            }

            p,
            a {
                font-size: 1.4rem;
                color: rgb(255, 255, 255, 0.8);
                text-decoration: none;
                font-weight: 300;
            }

            #short-about {
                max-width: 80%;
            }

            ul {
                display: flex;
                flex-direction: column;
                gap: 10px;

                li {
                    list-style: none;
                }
            }

            a:hover {
                text-decoration: underline;
            }


            &#contact div {
                display: flex;
                align-items: center;
                gap: 10px;

                span {
                    font-size: 1.6rem;
                    color: rgba(255, 255, 255, 0.8);
                }

                a,
                p {
                    font-size: 1.4rem;
                    font-weight: 300;
                    text-decoration: none;
                }

                a:hover {
                    text-decoration: underline;
                }
            }
        }
    }

    hr {
        display: block;
        width: 90%;
        max-width: 1400px;
        height: 1px;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.8);
        margin: 0 auto;

    }

    #copyright {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        width: 100%;
        max-width: 1400px;
        margin: 20px auto 0px auto;

        font-size: 1.2rem;

        ul {
            width: 100%;
            display: flex;
            align-items: flex-end;
            gap: 20px;

            /* margin-left: auto; */

            li {
                list-style: none;
            }
        }

        a,
        p {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.6);
        }

        a:hover {
            text-decoration: underline;
        }
    }
}