/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lora', serif;
  background-color: #ffffff;
  color: #111;
  line-height: 1.7;
  font-size: 17px;
}

/* Hero Banner */
.hero {
  background-image: linear-gradient(to bottom right, #000000, #1a1a1a);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5em;
  letter-spacing: 1px;
  color: #bfa24d;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
  color: #e0e0e0;
}

/* Main Content */
.content {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Contact Box */
.contact-box {
  background-color: #fdfdfd;
  border-left: 6px solid #bfa24d;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  padding: 30px;
  animation: fadeIn 1s ease-in-out;
}

.contact-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  color: #000;
  margin-bottom: 20px;
  border-bottom: 2px solid #bfa24d;
  padding-bottom: 10px;
}

.contact-box ul {
  list-style: none;
}

.contact-box li {
  margin-bottom: 15px;
  font-size: 1.05em;
}

/* Footer */
.footer-line {
  height: 2px;
  background-color: #bfa24d;
  width: 100px;
  margin: 0 auto 10px auto;
}

footer {
  text-align: center;
  padding: 30px 0;
  color: #555;
  font-size: 0.95em;
  border-top: 1px solid #eee;
  margin-top: 60px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-box {
  background-color: #ffffff;
  color: #000;
  border-left: 6px solid gold;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 800px;
  font-family: 'Lora', serif;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.about-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: black;
  border-bottom: 2px solid gold;
  display: inline-block;
}

.about-box h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  color: #333;
  font-family: 'Playfair Display', serif;
}

.about-box ul {
  padding-left: 1.2rem;
  list-style: square;
  margin-top: 0.5rem;
}

.about-box ul li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}
