body, h1, h2, h3, h4, h5 {
  font-family: "Raleway", sans-serif;
}

body {
  background: linear-gradient(to bottom, #2b2b2b, #101010);
  color: #e0e0e0;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px;
  background: rgba(50, 50, 50, 0.85);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(255, 215, 186, 0.1);
  border: 1px solid rgba(255, 215, 186, 0.15);
  animation: fadeIn 1.5s ease-out;
}

.parallax {
  position: relative;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/5b/Michelangelo_-_Creation_of_Adam_%28cropped%29.jpg');
  height: 70vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 5em;
  color: #e6d8a8;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

.header {
  text-align: center;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5em;
  letter-spacing: 2px;
  color: #e6d8a8;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  margin-bottom: 15px;
  padding-bottom: 10px;
}

.header p {
  font-family: "Lora", serif;
  color: #e8dbc0;
  font-size: 1.5em;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.card {
  background-color: #333;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 186, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  color: #ffda79;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 186, 0.3);
  background-color: #444;
}

button.read-more {
  background-color: #5a5a5a;
  color: #ffffff;
  border: 1px solid #444;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

button.read-more:hover {
  background-color: #777;
  transform: scale(1.08);
}

footer {
  background-color: #1a1a1a;
  color: #cccccc;
  text-align: center;
  padding: 30px 0;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.5);
}

a {
  color: #ffda79;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #e6d8a8;
  text-decoration: underline;
}

.nav-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  margin-bottom: 30px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-bar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 50px;
}

.nav-link {
  font-family: "Raleway", sans-serif;
  font-size: 1.5em;
  color: #e0e0e0;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 10px;
  transition: background-color 0.4s ease, color 0.3s ease, transform 0.3s;
  position: relative;
}

.nav-link:hover {
  background-color: #ffda79;
  color: #333;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 215, 186, 0.3);
}

.nav-link.active {
  background-color: #ffda79;
  color: #333;
  box-shadow: 0 4px 10px rgba(255, 215, 186, 0.3);
}

@media (max-width: 768px) {
  .parallax-text {
    font-size: 3em;
  }

  .header h1 {
    font-size: 3em;
  }

  .header p {
    font-size: 1.2em;
  }

  .container {
    padding: 20px;
  }

  .card {
    padding: 15px;
  }

  .nav-bar ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-link {
    font-size: 1.2em;
    padding: 10px 15px;
  }
}
