@font-face {
  font-family: "Cinzel";
  src: url("fonts/Cinzel/Cinzel-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Merriweather";
  src: url("fonts/Merriweather/Merriweather-VariableFont_opsz,wdth,wght.ttf")
    format("truetype");
  font-weight: 200 900;
  font-style: normal;
}

body {
  margin: 0;
  font-family: "Merriweather", serif;
  background-color: #1a6bac;
  color: #e6c35c;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background: #3a7d4e;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

nav .logo,
nav .nav-links {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  margin-right: 40px;
}

.nav-links a {
  margin: 0 40px;
  text-decoration: none;
  color: #e6c35c;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: "Cinzel", serif;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #4ac7d4;
  transform: scale(1.1);
}

.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("images/bg.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  margin-top: 120px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 107, 172, 0.45);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  max-width: 900px;
}

.hero h1 {
  font-size: 3.5rem;
  color: #e6c35c;
  text-shadow: 0 0 12px rgba(230, 195, 92, 0.7);
  margin-bottom: 20px;
  font-family: "Cinzel", serif;
}

.hero h2 {
  font-size: 1.7rem;
  font-weight: normal;
  color: #1a6bac;
  margin-bottom: 30px;
  text-shadow: 0 0 6px rgba(26, 107, 172, 0.7);
  font-family: "Cinzel", serif;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.65;
  background: rgba(26, 107, 172, 0.75);
  padding: 25px 35px;
  border-radius: 10px;
  color: #e6c35c;
}

.image-section {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background-color: #3a7d4e;
}

.image-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.image-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.side-image {
  width: 470px;
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

.image-title {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  color: #4ac7d4;
  margin-bottom: 10px;
  text-align: center;
}

.image-button {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.4rem;
  font-family: "Cinzel", serif;
  font-weight: bold;
  color: #1a6bac;
  background: #e6c35c;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

.image-button:hover {
  background: #4ac7d4;
  color: #1a6bac;
  transform: scale(1.05);
}

footer {
  width: 100%;
  background-color: #3a7d4e;
  color: #e6c35c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
  font-family: "Merriweather", serif;
  font-size: 0.95rem;
}

footer a {
  color: #e6c35c;
  text-decoration: none;
}

footer a:hover {
  color: #4ac7d4;
}

footer .footer-logo img {
  height: 40px;
  width: auto;
}

@media (max-width: 900px) {
  .side-image {
    width: 90%;
  }
  .image-container {
    gap: 30px;
  }
}
/* Page 2 Tears of the Kingdom CSS */
.content {
  max-width: 1920px;
}
#page2-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url("images/botw.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  margin-top: 120px;
}

.page2-hero-content {
  font-size: 3.5rem;
  color: #8b7e57;
  text-shadow: 0 0 12px rgba(230, 195, 92, 0.7);
  margin-bottom: 20px;
  font-family: "Cinzel", serif;
  max-width: 800px;
}

.content_img {
  object-fit: cover;
}

#page2 h1 {
  margin-right: 150px;
  margin-left: 50px;
  font-family: "Cinzel", serif;
}
#page2 .info {
  display: flex;
  margin: 80px;
}
#page2 .inner_content {
  display: flex;
  flex-direction: column;
  margin-left: 100px;
}

/* Page 3 Tears of the Kingdom CSS */
.content {
  max-width: 1440px;
  margin: 0 auto;
}
#page3-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("images/tears_bg.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.page3-hero-content {
  font-size: 3.5rem;
  color: #e6c35c;
  text-shadow: 0 0 12px rgba(230, 195, 92, 0.7);
  margin-bottom: 20px;
  font-family: "Cinzel", serif;
  max-width: 800px;
}

.info {
  display: flex;
  margin: 50px;
}

.info img {
  width: 50%;
  object-fit: contain;
}

.img-content h1 {
  text-align: center;
  font-weight: 2.5em;
}
