/**
 * Main CSS-Datei für den Web Text Generator
 */

/* Textinhalte Anzeige */
.content-text {
    line-height: 1.5;
}

.nav-item-section {
    border-left: 4px solid #f0f0f0;
    padding-left: 15px;
    margin-bottom: 30px;
}

.nav-item-title h5, .header-section h5, .body-section h5 {
    font-size: 1.1rem;
    color: #374248;
}

.nav-item-content {
    color: #333;
    line-height: 1.6;
}

/* Allgemeine Styles */

/* Alert Styles */
.alert {
    border-radius: 10px;
    border-left: 4px solid;
    padding: 15px 20px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
    color: #8b5cf6;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #f87171;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.15);
    border-color: #f59e0b;
    color: #fbbf24;
}

.alert-info {
    background: rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
    color: #8b5cf6;
}
body {
    font-family: 'Inter', sans-serif;
    font-weight: 300 !important;
    height: 100vh;
    background: #f8f9fa;
    color: #212529;
    overflow-x: hidden;
}

/*Badge Styles*/
.badge{
	font-weight: 400 !important;
}
/*th Styles */
th{
	font-weight: bold !important;

}

.container {
    padding: 50px 30px;
    max-width: 1200px;
    background: transparent;
}

.messages-container.container {
    padding: 10px 30px;
    max-width: 1200px;
}

/* Login-Seite */
.login-container {
    display: flex;
    overflow: hidden;
}

@media (min-width: 992px) {
    .login-logo {
        margin-top: 120px;
        margin-bottom: 185px;
    }
}

@media (max-width: 992px) {
    .login-logo {
        margin-top: 60px;
        margin-bottom: 95px;
    }
}

.login-logo img {
    max-width: 350px;
    width: 100%;
    height: auto;
}

.form-label{
    font-weight: 400 !important;
}

.form-control {
    border-radius: 10px;
    background: #ffffff;
    border: 2px solid #dee2e6;
    color: #212529;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    background: #ffffff;
    border-color: #6366f1;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    color: #212529;
}

.form-control::placeholder {
    color: #6c757d;
}
.btn{
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}
/* Header und Navigation */
.navbar {
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
}

.card{
    border-radius: 15px;
    border-top: 3px solid #6366f1;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid #dee2e6;
}
  
.nav-link {
    color: rgba(33, 37, 41, 0.8) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #6366f1 !important;
}

.nav-item {
    margin: 0 25px;
}

.navbar .nav-link {
    position: relative;
    padding: 32px;
    color: #212529;
    text-decoration: none;
}

.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
}
.border-success {
    border-color: #6366f1 !important;
}

/* Buttons */
.btn-success {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border: none;
}

/* Formulare */
.form-label.required::after {
    content: "*";
    color: red;
    margin-left: 3px;
}

/* Project Cards */
.project-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid #dee2e6;
    font-size: 0.9rem;
    z-index: 1000;
}


/* Responsive Design */
@media (max-width: 768px) {
    .btn-group {
        display: flex;
        flex-direction: column;
    }
    
    .btn-group .btn {
        margin-bottom: 5px;
    }
    
    .card-columns {
        column-count: 1;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
    

}
#language-tabs .nav-link {
    color: rgba(0, 0, 0, 0.8) !important;
}

#language-tabs .nav-link:hover {
    color: #43a232 !important;
}
.mb-4.px-5.form-section{
    margin-bottom: 0 !important;
}
.form-section:nth-of-type(even) {
    background-color: #eef2f6;
}
.form-control {
    box-shadow: inset 5px 5px 5px #dedede;
}
.btn-sm {
    margin-right: 5px;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    box-shadow: 0 0 0.25rem rgba(99, 102, 241, 0.5);
}
.accordion-item {
    border-radius: 10px !important;
    background: #ffffff;
    border: 1px solid #dee2e6;
}
.accordion-header {
    border-radius: 10px !important;
}
.accordion-button {
    border-radius: 10px !important;
    background: #ffffff;
    color: #212529;
    border: none;
}
.navbar-toggler {
    margin-left: auto !important;
}
.navbar-toggler-icon {
    filter: invert(0%);
  }