body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.site-header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-height: 60px;
}

.navbar a {
  text-decoration: none;
  color: #555;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #d64550;
}

.hero {
  background: url('../images/wedding1.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  text-align: center;
}

.hero-text h1 {
  font-size: 3em;
  margin: 0;
}

.hero-text p {
  font-size: 1.2em;
}

.about {
  padding: 60px 0;
  text-align: center;
}

.about h2 {
  color: #d64550;
  margin-bottom: 20px;
}

.cta {
  background: #d64550;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.cta .btn {
  background: #fff;
  color: #d64550;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: 0.3s ease;
}

.cta .btn:hover {
  background: #f5f5f5;
}

.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}
