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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
}

header {
    background: #f5e1f7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    height: 60px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.main {
    background: url('images/salon.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.8em;
    text-shadow: 1px 1px 5px black;
}

.motto {
    background-color: #fff0f5;
    text-align: center;
    padding: 20px;
    font-style: italic;
    font-size: 1.2em;
}

.onas {
    padding: 30px;
    background-color: #fff8fc;
    text-align: center;
}

.onas h2 {
    margin-bottom: 15px;
    font-size: 1.6em;
}

.onas p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05em;
}

.uslugi {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background: #fefefe;
}

.kolumna {
    flex: 1 1 300px;
    margin: 10px;
    text-align: center;
}

.kolumna img {
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.kolumna h2 {
    margin-top: 10px;
    color: #d48fbf;
}

.umow {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #d48fbf;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.umow:hover {
    background-color: #c078aa;
}

.kontakt {
    padding: 30px;
    background: #f5f5f5;
    text-align: center;
}

.kontakt h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
}

.kontakt form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.kontakt input,
.kontakt textarea {
    width: 80%;
    max-width: 400px;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.kontakt button {
    padding: 10px 20px;
    background-color: #d48fbf;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.kontakt button:hover {
    background-color: #c078aa;
}

.dane-kontaktowe {
    margin-top: 20px;
    font-size: 1em;
    color: #333;
}

footer {
    background: #eee;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    color: #555;
}
