* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #e0e0e0;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow-y: auto;
    height: 100vh;
    scroll-behavior: smooth;
}

/* Ukrycie paska przewijania */
.container::-webkit-scrollbar {
    display: none;
}

header {
    text-align: center;
    padding: 60px 0;
    animation: fadeInDown 1s ease-out, scaleUp 1.5s ease-out;
}

header h1 {
    font-size: 3.5em;
    color: #e0d7af;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

header p {
    font-size: 1.2em;
    color: #bfbfbf;
    margin-top: 10px;
}

nav {
    text-align: center;
    margin: 30px 0;
    animation: fadeInDown 1.2s ease-out;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 20px;
    transition: transform 0.3s ease;
}

nav ul li:hover {
    transform: scale(1.1);
}

nav ul li a {
    color: #e0d7af;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #c99a5d;
}

section {
    padding: 60px 0;
    border-bottom: 1px solid #333;
    opacity: 0;
    animation: fadeIn 1.5s forwards, slideIn 1.5s ease;
}

section h2 {
    font-size: 2.8em;
    color: #e0d7af;
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

section p {
    text-align: center;
    font-size: 1.1em;
    color: #d3d3d3;
    max-width: 800px;
    margin: 0 auto 20px;
}

.services-list {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.service-item {
    max-width: 300px;
    text-align: center;
    background: #282828;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.service-item:hover {
    transform: scale(1.05);
    background: #333333;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6);
}

.service-item h3 {
    font-size: 1.7em;
    color: #c99a5d;
    margin-bottom: 15px;
}

.service-item p {
    color: #bfbfbf;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    animation: fadeIn 2s ease-out;
}

form input, form textarea {
    width: 80%;
    max-width: 500px;
    padding: 15px;
    margin: 10px 0;
    background-color: #333;
    color: #e0e0e0;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    transition: box-shadow 0.3s ease;
}

/* Blokada zmiany rozmiaru pola tekstowego */
form textarea {
    resize: none;
}

form input:focus, form textarea:focus {
    box-shadow: 0px 0px 8px rgba(201, 154, 93, 0.6);
}

form button {
    padding: 12px 25px;
    background-color: #c99a5d;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.3s;
    animation: pulse 1.5s infinite;
}

form button:hover {
    background-color: #b8844d;
    transform: scale(1.05);
}

#formResponse {
    color: #c99a5d;
    font-size: 1.1em;
    text-align: center;
    margin-top: 15px;
    animation: fadeIn 2s ease-out;
}

footer {
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    color: #7a7a7a;
}

/* Animacje */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-30px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.95);
    }
    to {
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
