:root {
  --font-color: rgb(27, 168, 86);
  --font: 'Custom', monospace;
  --link-color: rgb(43, 153, 226);
  --outline: #333;
}

@font-face {
    font-family: 'Custom';
    src: url('../data/fredoka-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

a:hover { color: blue; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  min-height: 100%;
}

body {
  background: linear-gradient(135deg, #fbc7b8, #b2b3ff);
  color: var(--font-color);
  font-family: var(--font);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#maintenance-overlay {
  padding: 50px;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  color: white;
  background: black;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 2rem;
  opacity: 0.8;
}
.maintenance-box {
  padding: 40px;
  background: black;
  box-shadow: 0 0 13px var(--shadow);
}

a {
  color: var(--link-color);
}

header,
footer {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

footer {
  flex-shrink: 0;
  margin-top: auto;
}

header {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

#header-icon {
  width: 280px;
  height: auto;
  position: absolute;
  top: 0px;
  left: -5px;
}

#contact-line {
  font-size: 0.6rem;
}

#menu-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--font-color);
  font-family: var(--font);
  border-radius: 5%;
  padding: 10px;
  box-shadow: 1px 5px 10px var(--outline);
}

nav {
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: var(--outline);
  padding: 10px;
  border-radius: 8px;
  font-family: 'Segoe UI', sans-serif;
}

nav.hidden {
  display: none;
}

nav ul {
  list-style: none;
}

nav li {
  margin-bottom: 8px;
  
}

nav a,
nav button {
  text-decoration: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--font-color);
  font-family: var(--font);
}

nav a:hover,
nav button:hover {
  text-decoration: underline;
}

main {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  overflow: hidden;
}

#catImage {
  max-height: 720px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 8px 40px 8px var(--outline);
    transition: 
    transform 0.2s cubic-bezier(.4,2,.6,1), 
    box-shadow 0.2s cubic-bezier(.4,2,.6,1);
}

#catImage:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 80px 8px var(--outline);
}

footer {
  flex: 0 0 auto;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
}

.desc {
  margin-top: 15px;
}
