
/* Load custom cursive font for header */
@font-face {
  font-family: "CursiveHeader";
  src: url("cursive.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #222;
  overflow: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(90deg, #aa07f5, #1963db);
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}

.header-title {
  margin: 0;
  font-size: 4.8rem;
  font-family: "CursiveHeader", cursive, Arial, sans-serif;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

/* Navigation */
.nav-bar {
  width: 100%;
  background-color: #1b1fe3;
}

.nav-bar ul {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-bar a {
  text-decoration: none;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav-bar a:hover {
  background-color: #333;
  box-shadow: 0 0 10px #61a2ed;
}

/* Content */
.content {
  position: absolute;
  top: 120px;
  bottom: 90px;
  left: 0;
  right: 0;
  overflow-y: auto;
  padding: 20px 10px;
  background-color: #d28cf7; /* lighter purple for readability */
}

/* Section cards */
.section-card {
  max-width: 1000px;
  margin: 0 auto 20px;
  background-color: #89c0f0;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Gallery */
.simple-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.gallery-image-area {
  flex: 3 1 60%;
  background-color: #5a96db;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 260px;
  max-height: 320px;
}

.gallery-image-area img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-description {
  flex: 1 1 35%;
  background-color: #5a96db;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Buttons */
.gallery-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.gallery-buttons button {
  flex: 1;
  padding: 10px;
  background: linear-gradient(90deg, #333, #555);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.2s, box-shadow 0.3s;
}

.gallery-buttons button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background-color: #222;
  color: #6fb0e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-bottom: 4px;
}

.footer-socials img {
  width: 28px;
  height: 28px;
  transition: opacity 0.3s, transform 0.3s;
}

.footer-socials img:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.tiny-print a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
}

.tiny-print a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 700px) {
  .header {
    height: 140px;
  }
  .content {
    top: 140px;
  }
  .nav-bar ul {
    flex-wrap: wrap;
    gap: 10px;
  }
  .simple-gallery {
    flex-direction: column;
  }
  .gallery-image-area {
    min-height: 220px;
    max-height: 260px;
  }
}
