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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background: #FFCCFF;
  padding: 1em 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1em;
}

.logo {
  height: 100px;
  margin-bottom: 0.5em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

nav a {
  text-decoration: none;
  color: #b03a64;
  font-weight: bold;
}

.hero {
  background: url('fotki/salon.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 0 0 10px #000;
}

.hero-text {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1em 2em;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3em;
}


.motto {
  background-color: #FFCCFF;
  text-align: center;
  padding: 2em;
  font-style: italic;
  font-size: 1.5em;
}


.services {
  padding: 3em 1em;
  background: #FFCCFF;
  text-align: center;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  align-items: stretch;
}

.service {
  width: 300px;
  min-height: 200px;
  padding: 1.5em;
  border: 1px solid #eee;
  border-radius: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.service img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1em;
}

.price {
  font-weight: bold;
  color: #b03a64;
}


.contact {
  background: #FFCCFF;
  padding: 3em 1em;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}

form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

form input, form textarea {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #b03a64;
  color: white;
  border: none;
  padding: 0.8em;
  border-radius: 5px;
  cursor: pointer;
}

.contact-info {
  flex: 1 1 300px;
  font-size: 1.1em;
}

footer {
  background: #b03a64;
  color: white;
  text-align: center;
  padding: 1em 0;
}


@media (max-width: 768px) {
  .columns, .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 {
    font-size: 2em;
  }
}
