/* Zmienne kolorystyczne i typografia */
:root {
    --bg-start: #2a2623; /* Ciepły, głęboki brąz w centrum (spotlight) */
    --bg-end: #0a0908;   /* Głęboka czerń na krawędziach */
    --text-primary: #e6e6e6; /* Złamana biel */
    --text-accent: #d4af67;  /* Eleganckie złoto */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

/* Reset CSS i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Przesunięty środek gradientu nieco w górę, a sam gradient znacznie rozciągnięty (do 120%)
       dla ultra-gładkiego przejścia bez widocznych krawędzi */
    background-color: var(--bg-end);
    background-image: radial-gradient(ellipse at 50% 30%, var(--bg-start) 0%, var(--bg-end) 120%);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Dodanie warstwy "Noise" (Ziarna) - kluczowe dla usunięcia bandingu (pasków) na gradiencie.
   Nadaje tłu analogową, matową fakturę. */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Generowany szum w SVG (bardzo lekki) */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03; /* 3% widoczności - wystarczy, by wygładzić gradient, ale nie widać "śnieżenia" */
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

/* Główny kontener */
.main-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1; /* Treść musi być nad warstwą szumu */
}

/* Wrapper treści */
.content-wrapper {
    max-width: 1200px; 
    width: 100%;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    position: relative;
}

.main-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    
    /* Głęboki, miękki cień "odklejający" logo od tła */
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.7));
    
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* Subtelny efekt interakcji */
.logo-container:hover .main-logo {
    transform: translateY(-5px);
    filter: drop-shadow(0 35px 50px rgba(0,0,0,0.8));
}

/* Teksty */
.text-content {
    margin-top: 1rem;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px; /* Zwiększony spacing dla elegancji */
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    text-transform: uppercase; /* Bardziej dostojnie */
}

/* Separator ozdobny */
.separator {
    width: 40px; /* Krótszy */
    height: 1px; /* Cieńszy */
    background-color: var(--text-accent);
    margin: 0 auto 2.5rem auto;
    opacity: 0.7;
}

/* Kontakt */
.contact-info {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    color: #888;
}

.contact-info a {
    color: var(--text-accent);
    text-decoration: none;
    transition: all 0.3s ease;
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    font-weight: 400;
}

.contact-info a:hover {
    color: #fff;
    border-bottom-color: var(--text-accent);
}

/* Stopka */
.site-footer {
    padding: 30px;
    text-align: center;
    font-size: 0.7rem;
    color: #444; /* Ciemniejszy kolor stopki, żeby nie rzucała się w oczy */
    width: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1; /* Stopka nad warstwą szumu */
}

/* Responsywność (RWD) */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .main-logo {
        max-width: 90%; 
    }

    .main-container {
        padding: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}
