/* html, general settings*/
html {
  font-family: "Courier New", Courier, monospace;
  height: 100vh;
  min-width: 768px;
}

main {
    flex-grow: 1;
    overflow-y: auto;
    margin-top: 50px;
    padding-bottom: 60px;
    margin-bottom: 250px;
    min-width: 1200px; 
    box-sizing: border-box;
    min-height: 100%;
}

/* ---------------------------------------------------------------------- */
/* header, general settings*/
/* ---------------------------------------------------------------------- */
header {
    width: 100%;
    min-width: 768px;
    height: 130px;
    position: fixed; 
    top: 0;
    left: 0;

    /* Use Flexbox to stack the two main children vertically (logo container and nav-bar) */
    display: flex;
    flex-direction: column;

    box-shadow: 0 5px 10px rgba(30, 30, 30, 0.2);
    z-index: 1000;
}

/* ---------------------------------------------------------------------- */
/* header, specific elements*/
/* ---------------------------------------------------------------------- */

/* Logo and Title container (Top Row) */
.header_logo_container {
    height: 75%;
    
    background-color: #f6f5f3;
    color: #000000;

    display: flex;
    align-items: center; 
    justify-content: space-between;
}

.header_left_content {
    display: flex; 
    align-items: center;
    padding-left: 15%; 
    margin-right: 20px;
}

.header_logo-img-container {
    width: 70px;
    height: 70px; 
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.header_logo-text {
    font-size: 1.5em;
    font-weight: 900;
    text-wrap: nowrap;
}

.header_logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    opacity: 1;
    
    transition: transform 0.3s ease;
}

.header_logo-img:hover {
    transform: scale(1.2);
}

/* Social media links container (Top Row) */
.web_logo_container {
    height: 100%;
    padding-right: 15%; 
}

.web_logo_links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 25px;
}

.web_logo_link-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.web_logo_icon {
    width: 30px; 
    height: 30px;
    transition: transform 0.3s ease;
}

.web_logo_icon:hover {
    transform: scale(1.2);
}

/* Nav-bar container (Bottom Row) */
.header_nav-bar {
    width: 100%;
    height: 25%; 
    
    background-color: #93b2b0;
    color: #f6f5f3;

    display: flex;
    align-items: center;
}

.header_links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  padding-left:15%;
  
  display: flex;
  flex-wrap: wrap;
}

.header_link-wrapper {
    width: 10%;
    min-width: 100px; 
    height: 100%;
    
    /* Use Flexbox to center the link text within the block */
    display: flex;
    justify-content: center; 
    align-items: center;

    transition: background-color 0.3s ease;
}

.header_link-wrapper:hover {
    background-color: #c46d75f5;
    transition: background-color 0.3s ease;
}

.header_link {
    color: inherit;
    text-decoration: none;
    padding: 0 5px;
    white-space: nowrap;
}

/* ---------------------------------------------------------------------- */
/* body, general elements*/
/* ---------------------------------------------------------------------- */

body {
    position: relative;

    background-color: #F8FAF9;
    color: #8e7565;

    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;

    /* background image if needed
    background-image: url("assets/bg_main.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-position: center center;
    */
}

/* ---------------------------------------------------------------------- */
/* footer, general elements*/
/* ---------------------------------------------------------------------- */

footer {
    width: 100%;
    min-width: 768px;
    padding: 20px 0;
    background-color: #93b2b0;
    color: #f6f5f3;

    box-shadow: 0 -5px 10px rgba(30, 30, 30, 0.2);
    position: fixed; 
    bottom: 0;
    left: 0;
    z-index: 1000;
}

/* ---------------------------------------------------------------------- */
/* footer, specific elements*/
/* ---------------------------------------------------------------------- */

.footer_main-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    position: relative;
    align-items: center;
}

.footer_main-content::after {
    content: "";
    position: absolute;
    bottom: 0;

    left: 15%;
    right: 15%; 
    
    height: 1px;
    background-color: #F8FAF9;
}

.web_logo_links-footer {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px; 
}

.web_logo_icon-footer {
    width: 35px;
    height: 35px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.web_logo_icon-footer:hover {
    transform: scale(1.2);
}

.footer_credits {
    text-align: center;
    padding-top: 5px;
    margin-top: 5px;
}

