/* Reset i podstawy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-light: #f1d592;
    --dark: #0a0a0a;
}

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Tło z delikatnym efektem głębi */
body {
    background-image: 
        radial-gradient(circle at center, rgba(40, 40, 40, 1) 0%, rgba(10, 10, 10, 1) 100%);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-leather.png'); /* Subtelna tekstura */
    opacity: 0.3;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 2s ease-in-out;
}

/* Animacja Logo */
.logo-container {
    margin-bottom: 30px;
}

.main-logo {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
    animation: pulse 4s infinite ease-in-out;
}

.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
}

/* Typografia */
h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

h1 span {
    color: var(--gold);
    font-size: 1.8rem;
    display: block;
    margin-top: 10px;
}

.tagline {
    font-size: 1.1rem;
    color: #999;
    max-width: 500px;
    margin: 0 auto 40px;
    font-style: italic;
    font-weight: 300;
}

/* Pasek postępu */
.progress-wrapper {
    margin-bottom: 50px;
}

.progress-bar {
    width: 250px;
    height: 2px;
    background: #222;
    margin: 10px auto;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    height: 100%;
    width: 70%; /* Stan zaawansowania */
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
    animation: progressAnim 3s infinite alternate;
}

.progress-wrapper span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

/* Stopka z kontaktem */
.contact-footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    font-size: 0.9rem;
}

.label {
    display: block;
    color: var(--gold);
    font-weight: bold;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-footer a:hover {
    color: var(--gold-light);
}

/* Animacje */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2)); }
    50% { transform: scale(1.02); filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4)); }
}

@keyframes progressAnim {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Mobile */
@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
    h1 span { font-size: 1.3rem; }
    .main-logo { max-width: 80%; }
    .contact-footer { flex-direction: column; gap: 20px; }
}