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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 100;
}

nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 14px;
  flex-wrap: wrap;
}

.nav-btn {
  border: 1px solid #c8a36a;
  padding: 10px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #000;
}

.book-btn {
  background: #c8a36a;
  color: #000;
}

.hero {
  background: url("images/background-salon.jpg") center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 60px;
}

.hero-content.center {
  text-align: center;
  margin: auto;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.center-title {
  text-align: center;
  margin-bottom: 40px;
}

p {
  font-size: 20px;
  line-height: 1.7;
}

.cta {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 40px;
  background: #c8a36a;
  color: #000;
  text-decoration: none;
  font-size: 18px;
}

.cta:hover {
  background: #000;
  color: #fff;
}

.section {
  padding: 120px 8%;
}

.dark {
  background: #111;
}

.services div {
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  padding: 16px 0;
  border-bottom: 1px solid #333;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.contact-info {
  font-size: 20px;
  margin-bottom: 20px;
}

iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 20px;
}

.socials {
  margin-top: 30px;
}

.socials i {
  font-size: 26px;
  margin-right: 20px;
  color: #c8a36a;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input, select, button {
  padding: 14px;
  font-size: 16px;
}

button {
  background: #c8a36a;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #000;
  color: #fff;
}

footer {
  background: #000;
  text-align: center;
  padding: 30px;
  font-size: 14px;
}

#scissor {
  position: fixed;
  width: 48px;
  pointer-events: none;
  z-index: 999;
}

@media (max-width: 768px) {
  h1, h2 {
    font-size: 36px;
  }

  .hero-content {
    padding: 40px 20px;
  }
}
