/* RESET + BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', sans-serif; background: #fafafa; color: #333; }

/* HEADER - NAV BUTTONS */
.site-header { background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 100; }
.nav-buttons { display: flex; justify-content: flex-start; padding: 1rem 2rem; gap: 1rem; }
.button {
  background: #fff; color: #333; padding: 0.75rem 1.5rem; border: 2px solid #333; border-radius: 4px; text-decoration: none; font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}
/* Highlight color changed to teal (#008080) */
.button:hover, .button.active {
  background: #008080; color: #fff; border-color: #008080;
}
.button.active { background: #008080; color: #fff; }

/* PADDING TOP TO ACCOUNT FOR FIXED HEADER */
main, .about-content, .hero-create {
  padding-top: 100px;
}

/* HERO LIGHT (Home) */
.hero-light {
  display: flex; justify-content: center; align-items: center; height: calc(100vh - 100px);
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  position: relative;
}
.hero-light::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(250,250,250,0.65);
}
.hero-content-light { position: relative; text-align: center; z-index: 1; }
.hero-content-light h2 { font-size: 3.5rem; margin-bottom: 1rem; }
.hero-content-light p { font-size: 1.5rem; margin-bottom: 2rem; }

/* ANIMATED BUTTON */
.btn-animate {
  background: #008080; color: #fff; padding: 1rem 2rem; border-radius: 4px; font-size: 1.1rem; text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-animate:hover { transform: translateY(-3px); box-shadow: 0 8px 16px rgba(0,0,0,0.2); }

/* ABOUT/CONTACT CONTENT BOX */
.about-content { background: #f2f2f2; padding: 2rem; min-height: calc(100vh - 100px); display: flex; justify-content: center; align-items: center; }
.about-box {
  background: #fff; width: 70%; padding: 2rem; box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.about-box:hover { transform: translateY(-10px); }
.about-box h2 { font-size: 2.5rem; margin-bottom: 1.5rem; text-align: center; }
.quote-section p { font-size: 1.2rem; opacity: 0.8; line-height: 1.6; margin-bottom: 2rem; text-align: center; }
.signature { display: block; margin-top: 1rem; font-style: italic; font-size: 1rem; opacity: 0.6; text-align: right; }

/* BIG BUTTON USED IN ABOUT & CONTACT */
.big-button {
  display: block; width: 100%; padding: 1.5rem 0; background: #008080; color: #fff; text-align: center; font-size: 1.3rem;
  border-radius: 4px; text-decoration: none; transition: background 0.3s, transform 0.3s;
}
.big-button:hover {
  background: #006666; transform: translateY(-3px);
}

/* CREATE PAGE */
.hero-create {
  display: flex; justify-content: center; align-items: center; height: calc(100vh - 100px);
  background: url('https://images.unsplash.com/photo-1526045612212-70caf35c14df?auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  position: relative;
}
.hero-create::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.7);
}
.coming-content {
  position: relative; text-align: center; z-index: 1;
}
.coming-content h2 { font-size: 3rem; color: #333; }

/* FOOTER */
.site-footer-light { background: #fff; text-align: center; padding: 2rem 0; border-top: 1px solid #eee; }
.site-footer-light p { color: #777; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-box { width: 90%; }
  .hero-content-light h2 { font-size: 2.5rem; }
  .hero-content-light p { font-size: 1.2rem; }
  .coming-content h2 { font-size: 2rem; }
}
