@font-face {
    font-family: "Anonymous Pro";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/anonymous-pro-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Anonymous Pro";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/anonymous-pro-700.woff2") format("woff2");
}

@font-face {
    font-family: "Anonymous Pro";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/anonymous-pro-italic.woff2") format("woff2");
}

@font-face {
    font-family: "Anonymous Pro";
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/anonymous-pro-700italic.woff2") format("woff2");
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: "Anonymous Pro", monospace;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url("../img/base/spaper-homepage.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#standard-banner {
    position: relative;
    padding-top: 75px;
    padding-bottom: 75px;
    text-align: center;
    color: white;
}

#standard-background {
    width: 1400px;
    margin: auto;
    background-color: white;
    border-radius: 10px 10px 0 0;
    padding: 50px;
    flex: 1;
}

.dropdown {
  position: relative;
}

.dropbtn {
    cursor: pointer;
    color: var(--header-fg);
    text-decoration: none;
    background-color: var(--header-bg);
    padding: 10px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 100;
  width: max-content;
  box-shadow: 0px 6px 12px 0px rgba(0,0,0,0.175);
}

#site-header .nav-links .dropdown-content a {
  color: black;
  padding: 5px;
  text-decoration: none;
  display: block;
}

#site-header .nav-links .dropdown-content a:hover {
  background-color: #f2f2f2
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropbtn:hover {
  background-color: color-mix(in srgb, var(--header-fg), transparent 90%);
}

#site-header {
    --header-fg: #fff;
    --header-bg: rgba(255, 255, 255, 0);
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
    color: var(--header-fg);
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0px 0px 15px;
}

#site-header * {
    transition: color 0.3s ease;
}

#site-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;       
    margin: 0 auto;          
    padding: 0.75rem 15px;   
}

#site-header .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--header-fg);
    text-decoration: none;
}

#site-header .brand-logo {
    height: 44px;
    width: auto;
    display: block;
}

#site-header .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

#site-header .brand-title {
    font-weight: bold;
    font-size: 1.25rem;
}

#site-header .brand-tagline {
    font-size: 0.75rem;
    color: color-mix(in srgb, var(--header-fg) 70%, transparent);
}

#site-header .nav-links {
    align-items: center;
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
}

#site-header .nav-links a {
    color: var(--header-fg);
    text-decoration: none;
    padding: 5px;
}

#site-header .nav-links a:hover {
    text-decoration: underline;
}

#site-header.scrolled {
    --header-fg: #111;
    --header-bg: rgba(255, 255, 255, 1);
}

#site-footer {
    background: #323437;
    color: #999;
    text-align: center;
    padding: 1rem 1.5rem;
}

#site-footer p {
    margin: 0;
}

#banner h1 {
    color: white;
    text-align: center;
    font-size: 40px;
}

