/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    margin: 0;
    padding: 0;
    background: #f5f7fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    padding: 15px 30px;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Logo */
header .logo {
    font-size: 26px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%; 
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
    justify-content: flex-end;
}

.nav-links li {
    margin-left: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-links li a:hover {
    color: #007BFF;
    background: rgba(0, 123, 255, 0.1);
}

/* Contact Button */
#contact-button {
    padding: 8px 16px;
    background: #007BFF;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-left: 20px;
}

#contact-button:hover {
    background: #0056b3;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.3s;
}

/* Responsive Navigation */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 250px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 100px;
        transition: right 0.3s ease;
        border-left: 1px solid #e0e0e0;
    }

    nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 15px 20px;
        width: 100%;
        display: block;
    }

    #contact-button {
        margin: 20px;
        width: calc(100% - 40px);
    }
}

/* Main Content */
.main-container {
    padding-top: 80px;
    padding-bottom: 60px;
}

/* Sections */
.section {
    padding: 60px 0;
}

.home-section {
    text-align: center;
    background: #fff;
}

.home-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.home-section p {
    font-size: 18px;
    margin-bottom: 10px;
}

.home-section button {
    padding: 12px 24px;
    font-size: 16px;
    background: #000;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.home-section button:hover {
    background: #333;
}

.tools-section {
    background: #f9f9f9;
}

.tools-section h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tool-card {
    background: #fff;
    padding: 20px;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tool-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.tool-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.tool-card button {
    padding: 10px 20px;
    font-size: 14px;
    background: #000;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tool-card button:hover {
    background: #333;
}

.kontakt-section {
    background: #fff;
    text-align: center;
}

.kontakt-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.kontakt-section p {
    font-size: 16px;
    margin-bottom: 30px;
}

.kontakt-section button {
    padding: 12px 24px;
    font-size: 16px;
    background: #000;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.kontakt-section button:hover {
    background: #333;
}

/* Footer */
footer {
    background: #f5f7fa;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    position: relative;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 14px;
}

footer a {
    color: #000;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .tools-grid {
        flex-direction: column;
        align-items: center;
    }

    .tool-card {
        width: 100%;
    }
}

/* Ensure content doesn't overlap the fixed header */
section {
    margin-top: 20px;
}
