
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Great+Vibes&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Tourney:ital,wght@0,600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap');


/* Navigation logo styles */
.navbar {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  margin-bottom: 40px; /* adds spacing below logo */
}

.logo-link {
  display: inline-block;
  padding: 5px;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Base Page Styling */
body {
  background-color: black;
  color: white;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Main Title */
.site-title {
  text-align: center;
  font-family: 'Cinzel Decorative', serif;
  font-size: 56px;
  font-style: italic;
  background: linear-gradient(90deg, #ff4e50, #f9d423, #4dd0e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  transform: skewX(-5deg);
  margin-top: 80px;
  margin-bottom: 10px;
  animation: shine 3s ease-in-out infinite alternate;
}

/* Shiny animation on the main title */
@keyframes shine {
  from {
    text-shadow: 0 0 10px #f9d423, 0 0 20px #f9d423;
  }
  to {
    text-shadow: 0 0 20px #ff4e50, 0 0 30px #4dd0e1;
  }
}

/* Tagline style */
.house-tagline {
  text-align: center;
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  font-style: italic;
  color: black;
  -webkit-text-stroke: 1px white;
  letter-spacing: 1px;
  transform: skewX(-5deg);
  margin-top: -15px;
  margin-bottom: 30px;
}

/* Animation spans */
.house-tagline span {
  display: inline-block;
  animation: flyLoop 35s ease-in-out infinite;
  animation-fill-mode: both;
}

/* Animate each letter in sequence */
.house-tagline span:nth-child(1) { animation-delay: 0s; }
.house-tagline span:nth-child(2) { animation-delay: 0.2s; }
.house-tagline span:nth-child(3) { animation-delay: 0.4s; }
.house-tagline span:nth-child(4) { animation-delay: 0.6s; }
.house-tagline span:nth-child(5) { animation-delay: 0.8s; }
.house-tagline span:nth-child(6) { animation-delay: 1.0s; }
.house-tagline span:nth-child(7) { animation-delay: 1.2s; }
.house-tagline span:nth-child(8) { animation-delay: 1.4s; }
.house-tagline span:nth-child(9) { animation-delay: 1.6s; }
.house-tagline span:nth-child(10) { animation-delay: 1.8s; }
.house-tagline span:nth-child(11) { animation-delay: 2.0s; }
.house-tagline span:nth-child(12) { animation-delay: 2.2s; }
.house-tagline span:nth-child(13) { animation-delay: 2.4s; }
.house-tagline span:nth-child(14) { animation-delay: 2.6s; }
.house-tagline span:nth-child(15) { animation-delay: 2.8s; }
.house-tagline span:nth-child(16) { animation-delay: 3.0s; }
.house-tagline span:nth-child(17) { animation-delay: 3.2s; }
.house-tagline span:nth-child(18) { animation-delay: 3.4s; }
.house-tagline span:nth-child(19) { animation-delay: 3.6s; }

/* Animation keyframes */
@keyframes flyLoop {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  10% {
    opacity: 1;
    transform: translateX(0);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  40% {
    opacity: 0;
    transform: translateX(40px);
  }
  50% {
    opacity: 0;
    transform: translateX(-40px);
  }
  60% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Section title bar below animation */
.section-menu {
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  color: white;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.section-menu a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-menu a:hover {
  color: #f9d423;
}
/* Update section nav menu with Tourney Condensed font and gradient text */
.section-menu {
  font-family: 'Tourney', sans-serif;
  font-size: 28px;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.section-menu a {
  text-decoration: none;
  background: linear-gradient(90deg, red, blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: white; /* fallback */
  transition: opacity 0.3s ease;
}

.section-menu a:hover {
  opacity: 0.8;
}

/* Horizontal line under nav */
.section-line {
  width: 80%;
  margin: 0 auto 20px auto;
  border: 1px solid #ffffff88;
}

/* Background image placement */
.squale-background {
  display: block;
  margin: 0 auto 40px auto;
  max-width: 90%;
  height: auto;
}
"""
.guestbook-footer {
  margin-top: 40px;
  text-align: center;
  color: white;
}

.guestbook-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 18pt;
  font-style: italic;
  margin-bottom: 10px;
}

.bitmoji-footer {
  height: 80px;
  margin-bottom: 10px;
}

.footer-links {
  font-size: 12px;
  color: white;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  font-size: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}


.guestbook-footer {
  margin-top: 40px;
  text-align: center;
  color: yellow;
}

.guestbook-title {
  font-family: 'UnifrakturCook', cursive;
  font-size: 18pt;
  font-style: normal;
  margin-bottom: 10px;
  color: yellow;
}

.bitmoji-footer {
  height: 80px;
  margin-bottom: 10px;
}

.footer-links {
  font-size: 12px;
  color: yellow;
}

.footer-links a {
  color: yellow;
  text-decoration: none;
  margin: 0 5px;
  font-size: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}
