/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Noto+Sans+Tamil:wght@400;700&family=Noto+Serif+Sinhala:wght@400;700&display=swap");

body,
html {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(
    to right,
    #e5efff,
    #dee9ff
  ); /* Change colors as needed */
}

/* Header Bar */
.header-bar {
  background-image: url(../images/IMG_002.jpg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #2c3e50; */
  color: #ffffff;
  padding: 10px 20px;
}

.header-bar .logo {
  height: 40px;
  width: auto;
}

.header-bar .website-name {
  font-family: "Noto Serif Sinhala", serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.header-bar .home-button {
  text-decoration: none;
  background-color: #03263e;
  color: #fff;
  padding: 8px 12px;
  border-radius: 0;
  border: 2px solid #a4dbff;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.header-bar .home-button:hover {
  background-color: #ffffff;
  color: #03263e;
  border-color: #03263e; /* Change the border color on hover */
}

/* Banner Styling */
.banner {
  background-image: url("../../images/bg/Untitled-22.jpg"); /* Path to banner image */
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  color: #f0ff1d;
}

.banner-text {
  font-size: 2rem;
  font-family: "Noto Serif Sinhala", serif;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Basic banner styling */
.banner {
  text-align: center;
}

.banner-text span {
  display: inline-block;
  opacity: 0;
  transform: rotate(-90deg);
  animation: rotate-in 0.5s forwards;
}

/* Rotate-in animation */
@keyframes rotate-in {
  0% {
    opacity: 0;
    transform: rotate(-90deg);
  }
  100% {
    opacity: 1;
    transform: rotate(0);
  }
}

/* Gallery Selection Section */
.gallery-selection {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  flex-wrap: wrap;
  padding-bottom: 70px;
}

.year-box {
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  width: 250px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: "Noto Serif Sinhala", serif;
  transition: transform 0.3s ease;
}

.year-box:hover {
  transform: translateY(-5px);
}

.year-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.year-title {
  font-size: 1.5rem;
  color: #07385c;
  margin: 10px 0;
}

.year-description {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 15px;
}

.year-link {
  text-decoration: none;
  color: #03263e;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.year-link:hover {
  color: #d81b60;
}

/* Fixed Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 10px;
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 0;
}

footer p {
  margin: 0;
}

footer a {
  color: #ddd;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}
