/* --- Podstawowe Resetowanie i Typografia --- */
:root {
    --primary-color: #A34A4A; /* Ciemna Czerwień / Bordo (z logo/swetra) */
    --secondary-color: #6A9E9E; /* Ciemny Turkus/Zielony (z logo Vinted) - do akcentów */
    --text-dark: #333;
    --text-light: #fff;
    --background-light: #f9f9f9;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Import czcionek, jeśli są dostępne */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Poppins:wght@600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5em;
    font-weight: 700;
}

h2 {
    font-size: 2em;
    text-align: center;
}

/* --- Nagłówek (Header / Hero Section) --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('ubierz-sie.jpg') no-repeat center center/cover;
    height: 60vh; /* Wystarczająco wysoko, by było widoczne */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    text-align: center;
    position: relative;
    padding: 20px;
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
}

.main-logo {
    height: 50px; /* Rozmiar logo owieczki */
    width: auto;
}

.hero-overlay {
    z-index: 10;
    max-width: 900px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: var(--text-light); /* Biały dla lepszego kontrastu */
}

.hero .slogan {
    font-size: 1.2em;
    margin-bottom: 1.5em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* --- Przyciski CTA --- */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.2s;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: #8c3e3e; /* Lekko ciemniejszy */
    transform: translateY(-2px);
}

.secondary-cta {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.secondary-cta:hover {
    background-color: #5d8a8a;
    border-color: #5d8a8a;
}

/* --- Główna Treść (Main) --- */
main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 40px 0;
    text-align: center;
}

hr {
    border: none;
    height: 1px;
    background-color: #eee;
    margin: 40px 0;
}

/* --- Sekcja Aukcji TILT --- */
.aukcje-tilt {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.platform-info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 30px;
    flex-wrap: wrap;
}

.platform-info p {
    font-size: 1.1em;
    margin-right: 15px;
    font-weight: 600;
}

.tilt-logo {
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.auction-features {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    border-radius: 8px;
    background-color: var(--background-light);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item h3 {
    color: var(--text-dark);
    font-size: 1.2em;
}

/* --- Sekcja Vinted --- */
.vinted-section {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 50px 20px;
    border-radius: 8px;
}

.vinted-section h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.vinted-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vinted-content p {
    font-size: 1.1em;
    margin: 10px 0;
}

.vinted-logo {
    height: 50px;
    margin: 15px 0;
    filter: brightness(1.2); /* Lekko rozjaśniamy dla kontrastu */
}

.vinted-cta {
    background-color: var(--text-light);
    color: var(--secondary-color);
    border-color: var(--text-light);
}

.vinted-cta:hover {
    background-color: #eee;
    color: var(--secondary-color);
    border-color: #eee;
}

/* --- Sekcja Social Media --- */
.social-contact {
    padding: 40px 20px;
}

.social-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    font-size: 2em;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* --- Stopka (Footer) --- */
footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

/* --- Media Queries dla Responsywności --- */
@media (max-