@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}

nav {
    display: flex;
    height: 85px;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: white;
    align-items: center;
    justify-content: space-between;
    /*padding: 20px 0;*/
}

nav .logo img {
    width: 175px;
    filter: invert(0%);
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    text-align: right;
    margin-left: 40px;
    justify-content: center;
}

nav ul li .active {
    color: #843443;
    border-bottom: 1px solid #843443;
}

nav ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: grey;
    font-size: 12.5px;
    text-align: center;
}

nav ul li a:hover {
    color: #843443;
    transition: 0.25s linear;
}

nav .icons img {
    cursor: pointer;
    width: 20px;
    height: 20px;
    margin-right: 90px;
    float: right;
    align-items: center;
    justify-content: center;
}

nav .openMenu {
    font-size: 2rem;
    margin: 25px 100px;
    display: none;
    color: #843443;
    cursor: pointer;
}

nav ul .closeMenu {
    font-size: 2rem;
    display: none;
    margin-right: 10px;
    color: #843443;
    cursor: pointer;
}

@media(max-width: 1200px) {
    nav .logo {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

    nav ul {
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 5;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        background: white;
        display: none;
    }

    nav ul li {
        margin: 20px 0;
    }

    nav ul .closeMenu {
        display: block;
        position: absolute;
        top: 45px;
        right: 40px;
    }

    nav .openMenu {
        top: 15px;
        right: 20px;
        position: absolute;
        display: block;
    }

    nav .icons img {
        margin-right: 120px;
    }
}

.footer {
    background: #000000;
    color: #ffffff;
    padding: 40px 0 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Social Media Section */
.social-section {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
}

/* Links Section */
.links-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Copyright Section */
.copyright-section {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-size: 13px;
    color: #999999;
    line-height: 1.6;
}

.copyright-text a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px 0;
    }

    .links-section {
        gap: 20px;
        text-align: center;
    }

    .footer-link {
        font-size: 13px;
    }

    .social-section {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .links-section {
        flex-direction: column;
        gap: 15px;
    }

    .copyright-text {
        font-size: 12px;
    }
}

.footer {
    background: #000000;
    color: #ffffff;
    padding: 40px 0 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Social Media Section */
.social-section {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
}

/* Links Section */
.links-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Copyright Section */
.copyright-section {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    font-size: 13px;
    color: #999999;
    line-height: 1.6;
}

.copyright-text a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-text a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px 0;
    }

    .links-section {
        gap: 20px;
        text-align: center;
    }

    .footer-link {
        font-size: 13px;
    }

    .social-section {
        gap: 15px;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .links-section {
        flex-direction: column;
        gap: 15px;
    }

    .copyright-text {
        font-size: 12px;
    }
}