/* Reset podstawowy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff8e1;
    color: #3e2c00;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffecb3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #5d4300;
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #d17b00;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeb99 100%);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffb300;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #6c4f00;
}

/* Button */
.przycisk {
    background-color: #ffca28;
    color: #3e2c00;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.przycisk:hover {
    background-color: #f4b400;
    transform: scale(1.05);
}