/*
Theme Name: Asfort Security Theme
Author: Adam Szczypkowski
Description: Autorski, ultra-lekki motyw audytora bezpieczeństwa (v1.2).
Version: 1.2
*/

:root {
    --bg: #0a0b10;
    --neon: #00f2ff;
    --white: #ffffff;
    --gray: rgba(255, 255, 255, 0.6);
}

/* Profesjonalne tło z efektem siatki i blasku */
body {
    background-color: #0a0b10;
    /* Ustawienie Twojej grafiki jako tła całej strony */
    background-image: url('tlo_af.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed; /* Tło stoi w miejscu, gdy przewijasz treść */
    background-repeat: no-repeat;
    color: var(--white);
    margin: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Nagłówek (Menu) */
.site-header {
    background: rgba(10, 11, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.15);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}

.header-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

/* Skalowanie Twojego logo 512px */
.custom-logo-link img {
    max-height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.3));
}

.nav-list {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s ease;
    opacity: 0.8;
}

.nav-list a:hover {
    color: var(--neon);
    opacity: 1;
    text-shadow: 0 0 10px var(--neon);
}

/* Sekcja Hero - Główny napis */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(10, 11, 16, 0.4); /* Delikatna warstwa przyciemniająca */
    padding: 0 20px;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    max-width: 900px;
}

.neon-span {
    color: var(--neon);
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
}

.hero-section p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 650px;
    margin-bottom: 40px;
}

.hero-btn {
    padding: 16px 40px;
    background: var(--neon);
    color: var(--bg);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
    transition: 0.3s;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.6);
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: -100px auto 50px; /* Nakładamy boksy na dół sekcji Hero */
    padding: 0 20px;
    z-index: 10;
    position: relative;
}

.service-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 242, 255, 0.1);
    padding: 40px 20px;
    text-align: center;
    flex: 1;
    border-radius: 4px;
    transition: 0.3s;
}

.service-box:hover {
    border-color: var(--neon);
    background: rgba(0, 242, 255, 0.05);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.site-footer {
    background: rgba(10, 11, 16, 0.9);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 242, 255, 0.1);
    color: var(--gray);
    font-size: 13px;
    margin-top: 50px;
}

/* o mnie */ 
.about-wrapper {
    color: #ffffff;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-grid.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.shadow-neon {
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.role-tag {
    color: #00f2ff;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.detail-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-left: 3px solid #00f2ff;
    border-radius: 4px;
}

.detail-box h3 {
    margin-top: 0;
}

.detail-box ul {
    list-style: none;
    padding: 0;
}

.detail-box li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.detail-box li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #00f2ff;
}

@media (max-width: 768px) {
    .about-grid, .about-grid.reverse, .about-details {
        grid-template-columns: 1fr;
    }
}