* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Libre Baskerville", serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Fjalla One", sans-serif;
}

.main-header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2c3e50;
  gap: 0.5rem;
}

.logo svg {
  width: 32px;
  height: 32px;
}

.logo span {
  font-family: "Fjalla One", sans-serif;
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-family: "Fjalla One", sans-serif;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #34495e;
}

.hero {
  height: 60vh;
  margin-top: 64px;
  background: url("library.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 2rem;
}

.slide {
  padding: 5rem 2rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.text-content {
  flex: 1;
}

.image-content {
  flex: 1;
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.slide h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.slide h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.slide p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #444;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Fjalla One", sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #34495e;
}

.slide-2 {
  background-color: #f8f9fa;
}

footer {
  background-color: #2c3e50;
  padding: 2rem 0;
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.footer-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-icon:hover {
  transform: translateY(-5px);
}

.footer-icon svg {
  width: 24px;
  height: 24px;
  margin-bottom: 0.5rem;
}

.footer-icon span {
  font-family: "Fjalla One", sans-serif;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero {
    margin-top: 116px;
    height: 50vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.5rem;
  }

  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .slide {
    padding: 3rem 1rem;
  }

  .footer-content {
    gap: 2rem;
  }
}
