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

/* ANIMATIONS */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
} 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, serif;
  color: #222;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 20px 40px;
  position: sticky;
  top: 0;
}

.logo {
  color: #df9712;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #df9712;
}

/* HERO */
.hero {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 100px 40px;
}

.hero h1 {
  font-size: 56px;
  color: #df9712;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease forwards;
}

.hero p {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 40px;
  animation:fadeInUp 1s ease 1s ease 0.3s forwards;
  opacity: 0;
}

.cta-btn {
  background-color: #df9712;
  color: #111;
  border: none;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #b8934e;
}

/* ABOUT */
.about {
  padding: 80px 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #111;
}

.about p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

/* SERVICES */
.services {
  background-color: #f5f5f5;
  padding: 80px 40px;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #111;
}

.services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background-color: white;
  padding: 40px 30px;
  width: 220px;
  border-bottom: 4px solid #df9712;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

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

.price {
  font-size: 28px !important;
  color: #df9712 !important;
  font-weight: bold;
  margin-top: 15px;
}

/* CONTACT */
.contact {
  padding: 80px 40px;
  text-align: center;
  background-color: #111;
  color: white;
}

.contact h2 {
  font-size: 36px;
  color: #df9712;
  margin-bottom: 30px;
}

.contact p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ccc;
}

/* FOOTER */
footer {
  background-color: #000;
  color: #666;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c8a96e;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}
