@import "index_colors.css";

body {
    font-family: "Verdana", "Arial", "Tahoma", sans-serif;
    background-color: var(--bg);
    color: #ffffff;
    margin: 0;
}

header {
    color: #fff;
    position: fixed;
    width: 100%;
    z-index: 9999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--index-navbar-bg);
    padding: 10px 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 2px 4px;

    .area-container {
        display: flex;
        width: 100%;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 130px;
}

.navbar-links-right {
    margin-left: auto;
}

.navbar-menu {
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar-link {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", ui-system, sans-serif;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-wrap: nowrap;
    display: block;
    width: fit-content;
    color: var(--quick-access-btn-color);
    cursor: pointer;
}

.navbar-link:hover {
    text-wrap: nowrap;
    display: block;
    width: fit-content;
    background-color: var(--quick-access-btn-hover-bg);
    cursor: pointer;
}

.navbar-btn {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", ui-system, sans-serif;
    border-radius: 25px;
    padding: 6px 16px;
    font-weight: 600;
    text-decoration: none;
    text-wrap: nowrap;
    display: block;
    width: fit-content;
    color: var(--app-manage-btn-color);
    background-color: var(--accounda-green);
    cursor: pointer;

    &:hover {
        background-color: var(--app-manage-btn-hover-bg);
    }
}

.navbar-btn i {
    color: #ffffff;
}

.navbar-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    flex-direction: column;
    background: #1c1c1c;
    padding: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 4px 16px;
    z-index: 1000;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-menu a {
    color: #58f397; /* Markenfarbe für Dropdown-Links */
    font-size: 14px;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover {
    color: #45d885; /* Hover-Effekt für Dropdown-Links */
}

/* Footer container */
#footer {
    background-color: #111317;
    color: #fff;
    padding: 40px 20px;
}

.footer {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-logo-social {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center the logo and social icons */
    margin-bottom: 20px;
    margin-top: 26px;
    padding: 0 32px;
}

.footer-logo-social a {
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #58f397; /* Brand green for social icons */
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.1); /* Subtle hover effect */
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex: 2;
    max-width: 800px;
}

.footer-links .column {
    margin-right: 20px;
}

.footer-links h4 {
    font-size: 1.2rem;
    color: #58f397; /* Brand green for headings */
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #58f397; /* Hover effect */
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 842px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .footer-links .column {
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-links .column {
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-social {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .footer-links h4 {
        font-size: 1rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-social a {
        font-size: 1.3rem;
    }
}

@media (max-width: 695px) {
    .navbar-link:nth-child(3) {
        display: none;
    }
}

@media (max-width: 555px) {
    .navbar-link:nth-child(1), .navbar-link:nth-child(2) {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        width: 100px;
    }

    .navbar-btn {
        font-size: 14px;
        padding: 6px 16px;
    }
}
