/* ===========================
   Base Styles 
=========================== */

html,
body {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
}

body {
    display: block;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.812);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    justify-content: center;
    z-index: 3000;
    transition: transform .5s ease-in-out;
    will-change: transform;
}

.navbar.scrolled {
    transform: translateY(-20%);
}

.nav-links {
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: center;
    gap: 20px;
    top: 0;
    left: 0;
}

.nav-links a {
    text-decoration: none;
    color: rgb(25, 25, 25);
    font-family: 'Galada', cursive;
    font-size: 28px;
    letter-spacing: -0.3px;
    transition: color .25s ease-in-out;
}

.nav-links a:hover {
    color: rgba(255, 0, 225, 0.19);
}

#logo-holder {
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in-out;
}

#logo-holder.scrolled {
    transform: translateY(20%);
}

#logo-holder .image {
    width: 250px;
    height: 250px;
    transform: scale(1);
    transition: transform 0.5s ease-in-out;
}

#logo-holder.scrolled .image {
    width: 150px;
    height: 150px;
    transform: scale(0.6);
}

.pane {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 0, 225, 0.19) 100%);
    background-repeat: no-repeat;
    display: flex;
    flex: 1;
    margin: 0;
    font-size: 48px;
}

.footer {
  margin-top: auto;   /* sticks footer to bottom if content is short */
  background: linear-gradient(180deg,rgba(255, 0, 225, 0.19) 0%, rgb(22, 0, 20) 100%);
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  box-sizing: border-box;
}

.footer-info {
    
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.footer-links a {
  text-decoration: none;
  font-size: clamp(12px, 3vw, 20px);
  color: rgb(255, 255, 255);
  transition: color .5s ease-in-out;
}

.footer-links a:hover {
  color: rgb(255, 0, 0);
}

/* ===========================
   Main Page
=========================== */

/* ===========================
   Menu
=========================== */

/* ===========================
   Photos
=========================== */

/* ===========================
   About
=========================== */