/* =========================
   GLOBAL
========================= */

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #0f0f0f;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

/* =========================
   HEADER
========================= */

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

nav a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  opacity: 0.75;
  transition: 0.3s ease;
}

nav a:hover {
  opacity: 1;
}

/* =========================
   HERO (FIXED VERSION)
========================= */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;

  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)),
    url("images/hero.jpg") center/cover no-repeat;

}

/* smooth text only animation (NO IMAGE ANIMATION) */

.hero h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 12px;
  animation: fadeUp 1.2s ease forwards;
}

.hero p {
  opacity: 0.85;
  animation: fadeUp 1.6s ease forwards;
}

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

/* =========================
   SECTIONS
========================= */

.section {
  padding: 110px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.dark {
  background: #181818;
}

.section p {
  margin: 20px auto;
  max-width: 680px;
  font-weight: 300;
}

/* =========================
   SERVICES
========================= */

.service-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}

.service-card {
  background: #1c1c1c;
  padding: 35px;
  border-radius: 14px;
  max-width: 320px;
  text-align: left;
  transition: transform 0.35s ease, background 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: #242424;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  opacity: 0.9;
}

/* =========================
   CONTACT
========================= */

#contact {
  text-align: center;
}