:root {
  --sage-green: #b2c3a2;
  --cream-white: #fefaf2;
  --dark: #2f2f2f;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Georgia', serif;
  background-color: var(--cream-white);
  color: var(--dark);
  line-height: 1.6;
}

nav {
  background-color: var(--sage-green);
  display: flex;
  justify-content: center;
  padding: 15px;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  color: white;
  text-decoration: none;
  border: 2px solid white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

nav a:hover,
nav a.active {
  background-color: white;
  color: var(--sage-green);
}

.hero {
  background-image: url('https://i.pinimg.com/736x/3d/38/a9/3d38a9c4ca4914c0600ddb7171674a6e.jpg');
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  color: white;
  text-align: center;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
}

.section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.gallery img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dresscode {
  font-size: 1.2em;
  background: var(--sage-green);
  color: white;
  display: inline-block;
  padding: 15px 25px;
  border-radius: 10px;
  margin-top: 10px;
}

.big-text {
  font-size: 1.3em;
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
  line-height: 1.8;
}
