/* -----------------------------------------
   BASE
----------------------------------------- */
body {
  margin: 0;
  background: #fff;
  color: #222;
  overflow-x: hidden;
  font-family: "Cormorant Garamond", serif;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

p {
  font-size: 1.15rem;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* -----------------------------------------
   HEADER
----------------------------------------- */
header {
  padding: 20px 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  animation: fadeIn 1.2s ease forwards;
}

nav a {
  margin-right: 20px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #c9a14a;
}

/* -----------------------------------------
   HERO PARALLAX
----------------------------------------- */
.hero {
  height: 90vh;
  background: url("../img/hero-piano.webp") center/cover no-repeat fixed;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  animation: fadeIn 1.5s ease forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 40px;
  animation: slideUp 1.2s ease forwards;
}

.hero h1 {
  font-size: 3.4rem;
  margin-bottom: 20px;
}

/* -----------------------------------------
   BUTTONS
----------------------------------------- */
.btn-primary {
  background: #c9a14a;
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 15px;
  transition: 0.3s;
  display: inline-block;
}

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

/* -----------------------------------------
   SECTIONS
----------------------------------------- */
.section {
  padding: 80px 0;
  animation: fadeIn 1.2s ease forwards;
}

.section-alt {
  background: #faf7f2;
  padding: 80px 0;
  animation: fadeIn 1.2s ease forwards;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-block {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1.4s ease forwards;
}

.image-block img {
  width: 100%;
  display: block;
}

/* -----------------------------------------
   FOOTER
----------------------------------------- */
footer {
  padding: 40px 0;
  background: #111;
  color: #eee;
  text-align: center;
  font-size: 0.9rem;
  animation: fadeIn 1.2s ease forwards;
}

footer a {
  color: #c9a14a;
  text-decoration: none;
  margin: 0 10px;
}

/* -----------------------------------------
   ANIMATIONS
----------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
