/* Alapbeállítások */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Hero */
.hero {
  background-image: url('https://colorlib.com/wp/wp-content/uploads/sites/2/hairsal-free-template.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  color: #fff;
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  background: rgba(0, 0, 0, 0.4);
}

.logo {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}

.logo span {
  color: #e5c16f;
}

.nav-items {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-items li span {
  color: #fff;
  font-weight: 600;
  cursor: default;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.btn {
  padding: 12px 30px;
  background-color: #e5c16f;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #d4ad50;
}

/* Szekciók */
section {
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Rólunk */
.about p {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 18px;
}

/* Szolgáltatások */
.services {
  background-color: #f7f7f7;
}

.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.card {
  background-color: white;
  border: 1px solid #ddd;
  padding: 30px;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: 15px;
  color: #e5c16f;
}

/* CTA */
.cta {
  background-color: #000;
  color: #fff;
}

.cta h2 {
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
}

