/* --- GLOBAL STYLES --- */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}
body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    background-color: #000000; 
    color: #ffffff; 
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    padding-top: 0;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

/* --- LOGO SECTION (No Animation) --- */
.main-logo {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto 20px auto;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a; 
    object-fit: contain;
    box-sizing: border-box; 
    vertical-align: top;
    -webkit-user-drag: none; 
    user-select: none;
}

@media (min-width: 1024px) { .main-logo { height: 350px; padding: 0; } }
@media (max-width: 1023px) { .main-logo { height: 180px; padding: 0; } }

/* --- SECTION LABELS --- */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff; /* Text into White */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-label .material-symbols-outlined { 
    color: #FF0000; /* Icon into Red */
    font-size: 30px; 
}

/* --- GRID SYSTEM --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* --- CARDS & HOVER LOGIC --- */
.tool-card {
    background: #111111; 
    padding: 24px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    border: 1px solid #333333; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2);
    -webkit-tap-highlight-color: transparent;
}

/* Tool Card Hover: White Color */
.tool-card:hover {
    transform: translateY(-5px);
    border-color: #ffffff; 
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.special-tool {
    background: #f2f2f2f2; 
    border: 2px solid #FF0000; 
}

/* Special Tool Hover: White Color */
.special-tool:hover {
    background: #ffffff;
    border-color: #ffffff !important; /* Force to White on hover */
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.special-tool .icon-wrap {
    background: ##1a1a1a !important; 
}

.special-tool .icon-wrap .material-symbols-outlined {
    color: #ffffff !important; 
}

.icon-wrap {
    width: 56px;
    height: 56px;
    background: #222222; 
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrap .material-symbols-outlined { 
    font-size: 32px; 
    color: #FF0000; 
}

.icon-wrap img { 
    width: 42px; 
    height: 42px; 
    object-fit: contain; 
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 1023px) {
    body { margin-top: 0 !important; padding-top: 0 !important; }
    .container { padding-top: 0 !important; }
    header { margin-top: 0 !important; margin-bottom: 30px; }
    .main-logo { margin-top: 0 !important; }
    
    .tool-card:hover, .special-tool:hover {
        transform: none !important;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.2) !important;
        border-color: #333333;
    }
    .special-tool:hover {
        border-color: #FF0000 !important;
        background: #1a0000 !important;
    }
}

@media (max-width: 900px) {
    .special-grid { grid-template-columns: 1fr; gap: 15px; }
}

@media (max-width: 600px) {
    .grid { grid-template-columns: 1fr; gap: 15px; }
    .main-logo { max-width: 280px; height: auto; }
    .container { padding: 0 15px 20px 15px; }
    .tool-card { padding: 18px; }
    .section-label { font-size: 1.1rem; margin-bottom: 20px; }
}
.heading2 {
  color: red;
}
#titel-line2 {
    display: block;
    color: black;
    font-size: 12px;
}

@media (max-width: 768px) {
    #titel-line2 {
        display: none;
    }
}

