:root {
  
    --accent: #00ced1;        /* DarkTurquoise */
    --accent-hover: #002f2f;  /* DarkCyan - głębszy odcień przy najechaniu */
    --text-light: #ffffff;
    --bg-dark: rgba(10, 10, 10, 0.7);
    --nav-bg: rgba(0, 0, 0, 0.85);
}

body, html { 
    margin: 0; 
    padding: 0; 
    font-family: 'Inter', sans-serif; 
    color: var(--text-light); 
    min-height: 100vh;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p,  {
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
/* Styl dla kontenera details */
details {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
	margin:10px;
    transition: background 0.3s ease;
}

details[open] {
    background: rgba(0, 206, 209, 0.05); /* Delikatny turkusowy blask po otwarciu */
}


summary {
    padding: 10px 8px;
    color: var(--accent);
    font-weight: bold;
    cursor: pointer;
    list-style: none; 
    display: flex;
    align-items: center;
    transition: color 0.4s ease;
}

summary:hover {
    color: var(--accent-hover);
}

summary::before {
    content: '▶';
    display: inline-block;
    margin-right: 10px;
    font-size: 0.8rem;
    transition: transform 0.8s ease;
}

details[open] summary::before {
    transform: rotate(90deg); 
}

details div {
    padding: 10px;
    margin-top: 5px;
    border-top: 1px solid rgba(0, 206, 209, 0.2);
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    
   
    animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

details[open] div {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0, 206, 209, 0.2);
}
img.ff {
    max-height: 250px;
    border-radius: 120px;
}
@media (max-width: 768px) {
    .content-container {
        margin-top: 100px;
        padding: 30px 20px;
		max-height:fit-content;
    }
}

@media (max-width: 768px) {
    .content-containeroff {
        margin-top: 100px;
        padding: 30px 20px !important;
		max-height:fit-content;
    }
}

.main-wrapper {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2)), 
                url('images/bcg.jpg') no-repeat fixed;
				
    background-size: cover;
    display: flex;
    flex-direction: column;
}

/* --- NAWIGACJA (NAVBAR) --- */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 30px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { 
    color: var(--accent); 
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

.content-container {
    max-width: 800px;
    width: 90%;
    margin: 120px auto 50px auto; 
    padding: 50px;
    background: var(--bg-dark);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    flex-grow: 1;
}
.content-containeroff {
    max-width: 800px;
    width: 90%;
    margin: 120px auto 50px auto; 
    padding: 50px;
    text-align: center;
    flex-grow: 1;
}

.content-container h1 { font-size: 3rem; margin-top: 0; text-transform: uppercase; letter-spacing: 4px; }
.content-container h2 { color: var(--accent); text-transform: uppercase; }
.content-container p { font-size: 1.1rem; line-height: 1.6; }


.offer-card {
    background: var(--bg-dark);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: 0.3s;
}

.offer-card:hover { 
    transform: translateY(-5px); 
    border-color: var(--accent); 
    background: rgba(255, 255, 255, 0.08);
}

input[type="text"], input[type="email"], select, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    box-sizing: border-box;
    border-radius: 4px;
}

.submit-btn, button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    width: 100%;
}

.submit-btn:hover, button:hover { 
    background: var(--accent-hover); 
    transform: scale(1.02); 
}


.site-footer {
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
 
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo-text { font-size: 1.5rem; font-weight: 900; letter-spacing: 2px; }
.logo-text span { color: var(--accent); }

.footer-left p { font-size: 0.8rem; color: #888; margin: 5px 0 0 0; }

.footer-right a {
    color: #fff;
    font-size: 1.6rem;
    margin-left: 20px;
    transition: 0.3s ease;
    display: inline-block;
}
.footer-left a {
    color: #fff;
    font-size: 1.0rem;
    margin-left: 20px;
    transition: 0.3s ease;
    display: inline;
	text-decoration:none;
}


.footer-right a:hover { color: var(--accent); transform: translateY(-3px); }

img.logo {
	height:90px;
}

/* --- RESPONSYWNOŚĆ (MEDIA QUERIES) --- */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease-in-out;
    }

    .nav-links.open { right: 0; }

    .nav-links a {
        margin: 20px 0;
        font-size: 1.4rem;
        margin-left: 0;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .content-container { padding: 30px 20px; margin-top: 100px; }
    .content-container h1 { font-size: 2rem; }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-right a { margin: 0 10px; }
}