/* Fonts & Colors */
body {
  font-family: 'Open Sans', sans-serif;
  background: linear-gradient(135deg, #fffaf5, #fdf0eb);
  color: #4b4b4b;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #fdf0eb, #fff6f0);
  position: relative;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #b85c38;
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(184,92,56,0.4);
}

header .subtitle {
  font-size: 1.3rem;
  color: #a9735e;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* Navigation Bar */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 15px 0;
  margin: 0;
  background: rgba(31,88,132,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #d4af37;
}

nav ul li a {
  text-decoration: none;
  padding: 12px 25px;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: 0.4s;
}

nav ul li a:hover {
  background: linear-gradient(135deg, #2c7dbb, #1f5884);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* Fancy Sections */
.fancy-section {
  position: relative;
  background: rgba(255, 250, 245, 0.85);
  margin: 50px auto;
  padding: 50px 40px;
  max-width: 900px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 0 20px rgba(212,175,55,0.1) inset;
  transition: transform 0.4s, box-shadow 0.4s;
}

.fancy-section:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 0 30px rgba(212,175,55,0.15) inset;
}

.fancy-section::before {
  content: "❀";
  font-size: 28px;
  color: #d4af37;
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.15;
}

.fancy-section::after {
  content: "❀";
  font-size: 22px;
  color: #d4af37;
  position: absolute;
  bottom: 15px;
  left: 20px;
  opacity: 0.12;
}

.fancy-section h2 {
  font-family: 'Playfair Display', serif;
  color: #b85c38;
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
}

.fancy-section h2::after {
  content: "";
  display: block;
  width: 70px;
  border-bottom: 2px solid #d4af37;
  margin-top: 8px;
}

.fancy-section ul {
  list-style-type: disc;
  padding-left: 25px;
}

.fancy-section ul li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 50px 0;
  background: linear-gradient(135deg, #fdf0eb, #fff6f0);
  color: #b85c38;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 2.4rem;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .fancy-section {
    padding: 35px 25px;
    margin: 35px 15px;
  }
}