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

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  padding: 15px 0;
  z-index: 1000;
}

.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 40px;
}

.navbar a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #888;
}

.navbar .logo a {
  font-family: 'Nanum Brush Script', cursive;
  font-size: 32px;
  letter-spacing: 2px;
}

/* HERO */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
}

.overlay {
  background: rgba(255,255,255,0.7);
  padding: 40px;
  border-radius: 8px;
}

.hero-title {
  font-family: 'Nanum Brush Script', cursive;
  font-size: 72px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.hero-slogan {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn {
  background: #000;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s, transform 0.3s;
  font-weight: 600;
}

.btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn.spotify img {
  width: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

/* SECTIONS */
section {
  padding: 80px 20px;
  text-align: center;
}

.about, .socials, .gallery, .contact {
  max-width: 900px;
  margin: auto;
}

/* SOCIALS */
.socials .icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.socials img {
  width: 30px;
  height: 30px;
  filter: invert(0);
  transition: opacity 0.3s;
}

.socials img:hover {
  opacity: 0.6;
}

/* GALLERY */
.gallery .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* CONTACT */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}

/* SUBPAGES */
.subpage-header {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.subpage-header .logo {
  font-family: 'Nanum Brush Script', cursive;
  font-size: 36px;
  text-decoration: none;
  color: #000;
}

.subpage-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  text-align: left;
}

.subpage-content h1 {
  text-align: center;
  margin-bottom: 30px;
}

.media iframe {
  display: block;
  margin: 20px auto;
  max-width: 100%;
}

audio {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.consulting-services {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
}

/* FOOTER */
footer {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #eee;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
  .navbar ul {
    gap: 20px;
  }
}
