/* TotaalCyber - Minimal Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.8;
    color: #000;
    background: #fff;
}

/* Header */
.site-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 150px;
    width: auto;
}

.logo a {
    text-decoration: none;
}

.branding {
    flex: 1;
    text-align: center;
}

.branding a:hover {
    color: #ff6600;
}


.branding a {
    font-size: 1.1rem;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.brand-highlight {
    color: #ff6600;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    flex-shrink: 0;
}

.tagline-text{
    font-size: 0.75rem !important;
    color: #999 !important; 
    letter-spacing: 0.05em;
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: 1;
    font-weight: 400;
    text-decoration: none;
    display: block;
}

.tagline-text:hover {
    color: #ff6600 !important;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #ff6600;
}

/* Main Content */
main {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 2rem;
}

main h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

main h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

main h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
}
main h4 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
}

main p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

main ul,
main ol {
    margin: 1rem 0 1rem 2rem;
}

main li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

main a {
    color: #ff6600;
    text-decoration: none;
}

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

/* Images */
main img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

.profile-image {
    max-width: 250px;
    border-radius: 8px;
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .branding {
        order: -1;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    main {
        padding: 0 1rem;
    }
}