/* General body style */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background: white;
    color: rgba(0,59,64,1);
    margin: 0;
    padding: 0;
}

.container {
    padding-left: 40px;  /* oder mehr, z. B. 60px je nach Wunsch */
}

.navbar {
    margin-bottom: 0; /* Remove gap below navbar on index page */
}

/* Hide the hard-coded line break after the navbar for this page */
.navbar-container + br {
    display: none;
}

/* Hero Section */
.new-box h1 {
    font-size: 2rem;
    font-family: 'Comfortaa', sans-serif;
    color: black;
}

.new-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Comfortaa', sans-serif;
}

.btn-feedback {
    background-color: aqua;
    color: rgba(0,59,64,1);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-right: 0.5rem;
}

.btn-feedback:hover {
    background-color: rgba(0,59,64,1);
    color: aqua;
    transition: all 0.3s ease;
}

.audit-list {
    font-size: 11px;
    line-height: 1.5;
    text-align: left;
}
/* Module Grid */
.module-box {
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 12px;
    background-color: #f9f9f9;
}

.module-box:hover {
    background-color: #e0f7fa;
    transform: scale(1.05);
    cursor: pointer;
}

/* Info Tiles */
.custom-link {
    text-decoration: none;
}

.custom-link:hover .overlay {
    background: rgba(255,255,255,0.3);
    transition: background 0.3s;
}

.new-box2 h1 {
    font-size: 1.5rem;
    font-family: 'Comfortaa', sans-serif;
    color: white;
}

.new-box2 p {
    font-size: 1.1rem;
    color: white;
    font-family: 'Comfortaa', sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
    .new-box h1 {
        font-size: 1.8rem;
    }
    .btn-feedback {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .new-box h1 {
        font-size: 1.6rem;
    }
    .new-box p {
        font-size: 1rem;
    }
    .btn-feedback {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .new-box h1 {
        font-size: 1.4rem;
    }
    .new-box p {
        font-size: 0.95rem;
    }
    .custom-box {
        height: auto;
        min-height: 300px;
    }
}
