@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #151618;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

/* Modernized Navbar Styles */
.navbar {
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: linear-gradient(135deg, #00aa25 0%, #007619 100%);
}

.navbar-brand {
    font-size: 30px;
    margin-right: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: #bfbfbf;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.0);
    color: #ffffff;
}

/* Navbar Dropdown Styling */
.navbar-nav .dropdown-menu {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar-nav .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.navbar-nav .dropdown-item {
    color: #f1f1f1;
    padding: 10px 20px;
    margin: 5px 0;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: rgba(0, 170, 37, 0.2);
    color: #00aa25;
}

/* Styling für "More" Dropdown ohne Zahnrad */
.nav-item.dropdown .nav-link {
    display: flex;
    align-items: center;
    color: #bfbfbf;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Entferne den Bootstrap-Standardpfeil */
.nav-item.dropdown .nav-link::after {
    display: none !important;
    visibility: hidden !important;
    content: '' !important;
}

/* Stelle sicher, dass der animierte Pfeil funktioniert */
.nav-item.dropdown .nav-link .fa-angle-down {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown.show .nav-link .fa-angle-down {
    transform: rotate(180deg);
}

/* Immer grüne Icons im Dropdown */
.navbar-nav .dropdown-item i {
    color: #00aa25;
}

.navbar-nav .dropdown-item:hover i {
    color: #00aa25;
}

/* General Styling */
.bg-discord {
    background-color: #00aa25;
}

.container-1 {
    margin-bottom: 50px;
}

.bg-grey {
    background-color: #111111;
}

/* Card Styles */
.card {
    border-width: 0px;
    border-radius: 10px;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 0 20px 5px rgba(0, 170, 37, 0.6); /* Green glow for all cards */
}

/* Feature Card Styles */
.feature-card {
    box-shadow: 0 0 20px 5px rgba(0, 170, 37, 0.6); /* Glow effect */
    border-radius: 15px;
    background-color: #111111;
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 0 25px 10px rgba(0, 170, 37, 0.8); /* Stronger glow on hover */
}

.brand-line {
    margin-top: 40px;
    margin-left: 15px;
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 50px;
    color: white;
}

hr {
    border-color: white;
}

p {
    line-height: 30px;
}

.title-line {
    padding-top: 25px;
    color: #ffffff;
    margin-left: 40px;
}

.card-img-top {
    padding: 0px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.btn-discord {
    color: #ffffff;
    background-color: #00aa25;
    border-color: #00aa25;
}

.btn-discord:hover {
    color: #ffffff;
    background-color: #007619;
    border-color: #007619;
}

.big-text {
    font-size: 36px;
}

.card-text {
    font-size: 16px;
}

input {
    margin: 25px;
    border-color: #00aa25;
    border-width: 5px;
    color: #00aa25;
}

.form-control {
    border-color: #00aa25;
    border-width: 2px;
    border-radius: 10px;
    color: #00aa25;
    margin-left: 40px;
    margin-right: 40px;
}

.form-control:focus {
    border-color: #00aa25;
    box-shadow: 0 0 5px #00aa25;
}

.list-group {
    list-style: none;
    background-color: #15161800;
}

.list-group-item {
    list-style: none;
    background-color: #15161800;
    border-width: 0px;
}

.date {
    font-size: 12px;
}

.link {
    font-weight: bold;
    color: white;
    text-decoration: none;
    position: relative;
}

.link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.5s ease;
}

.link:hover {
    text-decoration: none;
    color: white;
}

.link:hover::before {
    width: 100%;
}

/* Tabs Styling */
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #00aa25;
    color: #fff;
    border-color: #00aa25;
    border-radius: 8px 8px 0 0;
}

.nav-tabs .nav-link {
    color: #ffffff;
    margin-right: 5px;
    border-radius: 8px 8px 0 0;
    background-color: #1a1a1a;
    border-color: #00aa25;
    padding: 10px 20px;
    font-size: 16px;
}

.nav-tabs .nav-link:hover {
    color: #00aa25;
}

/* Docs and Partner Pages */
.docs-content, .partners-content {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    background: rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: white;
    margin-top: 20px;
}

.docs-content h3, .partners-content h3 {
    color: #00aa25;
}

.docs-content p, .partners-content p {
    color: #bfbfbf;
}

/* Partner Profiles */
.partner-profile {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    background: rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: white;
    margin-top: 20px;
    text-align: center;
    border: dotted 2px #00aa25;
}

.partner-profile h3 {
    color: #00aa25;
}

.partner-profile p {
    color: #bfbfbf;
}

.partner-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#loading-overlay img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

#loading-overlay p {
    margin-top: 10px;
    color: #ffffff;
    font-size: 1.2rem;
}

/* Button Styles */
.blurred {
    filter: blur(5px);
    cursor: pointer;
}

.blurred:hover {
    filter: none;
}

.btn-secondary {
    margin-bottom: 10px;
}

.btn-secondary, .btn-danger {
    padding-left: 15px;
    padding-right: 15px;
}

.btn-group {
    display: flex;
    gap: 5px;
}

.btn-sm {
    padding: 4px 8px;
    font-size: 12px;
}

.code-response-yes {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    color: #00ff00; /* Grün */
    background-color: #1a1a1a; /* Dunkler Hintergrund */
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
}

.code-response-no {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    color: #ff0000; /* Rot */
    background-color: #1a1a1a; /* Dunkler Hintergrund */
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
}
