@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol&display=swap');

	* {
    box-sizing: border-box;
}

.nav-links a,
.menu-button,
h1,
h2,
h3 {
  font-family: "Kaisei Decol", serif;
  font-weight: 400;
  font-style: normal;
}

body.site-loading .container,
body.site-loading #footer-container {
    opacity: 0;
}

body.site-ready .container,
body.site-ready #footer-container {
    opacity: 1;
    transition: opacity 1s ease;
}

html, body {
    margin: 0;
    min-height: 100%;
}

#navbar-container {
    margin-top: 30px;
    min-height: 40px;
    width: 100%;
}

#footer-container {
    min-height: 30px;
}

.main-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
	
	table {
      border-collapse: collapse;
      width: 100%;
    }
	.logo {
      display: block;
      margin: 0 auto;
      max-width: 100%;
    }
  .logo-link {
    display: block;
    width: fit-content;
    margin: 0 auto;
}
    
  @media (max-width: 800px) {
    .logo {
        margin-top: 40px;
    }
}
	
    th, td {
      padding: 8px;
      text-align: center;
    }
    .row-link {
      text-decoration: none;
      color: #f0f;
    }
body {
    color: #eee;
font-family: "Kaisei Decol", serif;
  font-weight: 400;
  font-style: normal;

    padding: 20px;
    margin: 0;

    min-height: 100vh;
    display: flex;
    flex-direction: column;

    position: relative;
    background-color: #292a33;
}

/* Background image */
body::before {
    content: "";
    position: fixed;
    inset: -20px;

    background-image: url('/images/cityscape.png');
    background-size: auto 100%;
    background-repeat: repeat-x;
    background-position: center bottom;
    z-index: -1;
    filter: blur(2px);

    
}
	body a {
    color: #f0ffcc;
	}
	.container {
      display: flex;
      flex: 1;
      gap: 20px;
    }
.navbar {
    width: 160px;
    flex-shrink: 0;
        position: sticky;
    top: 20px;

    align-self: flex-start;
}

.sidebar {
    width: 160px;
    flex-shrink: 0;

    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.menu-button {
    display: none;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    width: 100%;
    
}

.nav-links a {
    width: 200px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    text-decoration: none;

    font-size: 18px;
    padding: 12px 25px;

    background-color: rgba(0, 0, 0, 1);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-links a:hover {
    background-color: rgba(114, 114, 114, 1);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px;

    background-color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);

    transition: all 0.2s ease;
}

.social-links a:hover {
    background-color: rgba(114, 114, 114, 1);
}

.social-links img {
    width: 30px;
    height: 30px;
    display: block;
}
@media (min-width: 1026px) {

    .sidebar {
        width: 200px;
    }

    #navbar-container {
        width: 200px;
    }

    .navbar {
        width: 200px;
    }

    .nav-menu {
        width: 200px;
    }

    .nav-links {
        width: 200px;
    }

  .nav-links a {
    width: 100%;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    text-decoration: none;

    font-size: 18px;
    padding: 12px 25px;

    background-color: rgba(0, 0, 0, 1);

    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

    .logo-link {
        width: 200px;
    }

    .logo {
        width: 200px;
        max-width: 200px;
        height: auto;
    }

}
@media (max-width: 1025px) {

    .container {
        display: flex;
        flex-direction: column;
    }


    .sidebar {
        order: -1;
        width: 100%;
        height: 60px;

        display: flex;
        justify-content: space-between;
        align-items: center;

        margin-bottom: 20px;
    }
    #logo-container {
    flex: 0 0 auto;
    margin-left: 51px; /* moves logo to the right */
}
#navbar-container {
    margin-top: 0;
    margin-left: auto;
    margin-right: 51px;
    width: auto;
}

    #logo-container,
    #navbar-container {
        position: static;
    }
    .logo-link {
        display: block;
        width: fit-content;
        margin: 0;
    }

    .logo {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0;
    }

    .navbar {
        width: 100%;
    }

.menu-button {
    display: block;
    width: 56px;
    height: 56px;

    padding: 0;

    font-size: 36px;
    line-height: 1;

    color: white;
    background-color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);

    cursor: pointer;
    transition: all 0.2s ease;
}
    .menu-button:hover {
    background-color: rgba(114, 114, 114, 1);
}
    .social-links {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 10px;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 65px;
        right: 0;
        padding: 10px;
        background-color: rgba(0, 0, 0, 1);
        border: 1px solid rgba(255, 255, 255, 0.5);
        align-items: stretch;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-links {
        width: 200px;
    }

    /* Main content */
    .content {
        width: 100%;
        padding: 30px 20px;
    }

    .copyright {
        width: 100%;
        margin: 0;
    }
}

.content {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('/images/content.jpg');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}
	.content h1,
	.content p {
    color: #eee;
	}
.copyright {
    margin-top: 10px;
    margin-bottom: 0;
    text-align: right;
    color: #FF67BB;
}

.header {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 20px 10px;
  z-index: 1001;
}

.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}