:root {
    --bg-dark: #0f172a;
    --bg-light: #1e293b;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #b5952f;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-light) 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

/* Subtelne animowane tło */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 70%);
    z-index: 0;
    animation: pulse 10s ease-in-out infinite alternate;
}
.shape-1 {
    width: 800px;
    height: 800px;
    top: -300px;
    left: -300px;
}
.shape-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.9; }
}

/* Główny kontener z efektem szkła */
.container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem 3.5rem;
    max-width: 650px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.2;
}

.divider {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 0 auto 2.5rem;
}

p.description {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

/* Sekcja kontaktowa */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
    font-style: normal;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    padding: 12px;
    box-sizing: content-box;
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 500;
}

/* Responsywność */
@media (max-width: 600px) {
    .container {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }
    h1 {
        font-size: 2.2rem;
    }
    .logo-text {
        font-size: 1.35rem;
    }
    .contact-item {
        padding: 1rem 1.25rem;
        gap: 1.25rem;
    }
    .contact-icon {
        width: 24px;
        height: 24px;
        padding: 10px;
    }
}
