/* GLOBAL */
body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(180deg, #000000 0%, #111111 40%, #1a1a1a 100%);
  color: #ffffff;
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 42px;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 2px solid #ffcc00;
}

.logo-img {
  height: 130px;
  filter: drop-shadow(0 0 12px rgba(255,204,0,0.45));
}

.nav a {
  color: #ffffff;
  margin-left: 24px;
  font-size: 21px;
  text-decoration: none;
  letter-spacing: 0.035em;
  font-weight: 400;
  transition: 0.3s;
}

.nav a:hover {
  color: #ffcc00;
  text-shadow: 0 0 10px #ffcc00;
}

/* HERO */
.hero {
  text-align: center;
  padding: 160px 20px;
  background: transparent;
}

.hero-title {
  display: inline-block;
  background: #ffcc00;
  color: #000000;
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(255,204,0,0.45);
}

.hero-subtitle {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  font-size: 24px;
  font-weight: 400;
  padding: 8px 24px;
  border-radius: 6px;
  margin-top: 20px;
}

/* BUTTONS */
.btn {
  background: #ffcc00;
  color: #000000;
  padding: 13px 32px;
  border-radius: 6px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(255,204,0,0.45);
}

.btn:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 18px rgba(255,204,0,0.65);
}

/* SECTIONS */
section {
  padding: 60px 42px;
  background: transparent;
  margin: 45px auto;
  max-width: 1200px;
}

h2 {
  display: inline-block;
  background: #ffcc00;
  color: #000000;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  padding: 8px 28px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(255,204,0,0.45);
}

/* SERVICE GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 40px;
}

.service-card {
  background: rgba(0, 0, 0, 0.85);
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #ffcc00;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 0 14px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(255,204,0,0.45);
}

.service-card h3 {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  font-size: 24px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
}

/* ABOUT */
.about-text {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

/* CONTACT FORM */
input, textarea, select {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ffcc00;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 19px;
  font-weight: 300;
}

textarea {
  resize: none;
}

input::placeholder, textarea::placeholder {
  color: #cccccc;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: rgba(0, 0, 0, 0.9);
  border-top: 2px solid #ffcc00;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.02em;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: 400;
}

footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #ffcc00;
}
