style.css
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #222222;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

a {
  text-decoration: none;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px 32px;
}

.site-header {
  position: relative;
  padding-top: 12px;
}

.header-image {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.lang-switch {
  position: absolute;
  top: 20px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  margin-top: 28px;
  align-items: start;
}

.sidebar {
  width: 100%;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-group {
  margin-top: 6px;
}

.menu-label,
.menu-item img {
  display: block;
  width: auto;
  max-width: 130px;
}

.menu-item {
  display: inline-block;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.menu-item:hover {
  transform: translateX(4px);
  opacity: 0.9;
}

.content {
  min-width: 0;
}

.intro-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 28px 24px;
  background: #fafafa;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.intro-card h1 {
  margin: 0 0 20px;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.4px;
}

.intro-card p {
  margin: 0 0 14px;
  font-size: 18px;
}

.intro-card hr {
  width: 90px;
  margin: 20px auto;
  border: 0;
  border-top: 1px solid #999999;
}

.signature {
  margin-top: 22px;
  font-style: italic;
  color: #555555;
}

.social-section {
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.facebook-link img {
  width: 120px;
  height: auto;
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sidebar {
    display: flex;
    justify-content: center;
  }

  .menu {
    align-items: center;
  }

  .social-section {
    justify-content: center;
  }

  .lang-switch {
    top: 10px;
    right: 0;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 0 12px 24px;
  }

  .intro-card {
    padding: 20px 16px;
  }

  .intro-card h1 {
    font-size: 22px;
  }

  .intro-card p {
    font-size: 16px;
  }
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f5fff2, #fffbea);
  font-family: Arial, sans-serif;
}

.card {
  max-width: 800px;
  margin: 20px;
  padding: 40px 30px;
  background: #ffffff;
  border: 3px solid #b7d88a;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
}

h1 {
  font-size: 21px;
  font-weight: bold;
  color: green;
  line-height: 1.6;
  margin: 20px 0;
}

.signature {
  margin-top: 20px;
  font-size: 18px;
  color: #4f7f2b;
  font-style: italic;
}

.decor {
  font-size: 28px;
  letter-spacing: 8px;
}

.decor-top {
  margin-bottom: 15px;
}

.decor-bottom {
  margin-top: 20px;
}
.easter-card {
  max-width: 620px;
  margin: 0 auto 24px;
  padding: 24px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f5fff2, #fffbea);
  border: 2px solid #b7d88a;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
   animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.easter-text {
  margin: 14px 0;
  font-size: 21px;
  font-weight: bold;
  color: green;
  line-height: 1.6;
}