/* Settings */

@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Finlandica:ital,wght@0,400..700;1,400..700&display=swap');

:root {
    --white: #ffffff;
    --black: #000000;
    --beige: #e5dfcf;
    --beige-light: #fcf9f1;
    --beige-hover: #f0ede5;
    --blue: #253785;
    --blue-dark: #1e2d6b;
    --red: #d21036;
    --red-dark: #b01030;
    --base-font-size: 16px;
}

html {
    font-size: var(--base-font-size);
}

.finlandica-bold {
    font-family: "Finlandica", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.finlandica-regular {
    font-family: "Finlandica", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.figtree-bold {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
  
.figtree-regular {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html, body{
    font-family: 'Figtree', Arial, sans-serif;
    font-size: 1rem;
    background-color: var(--white);
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

p, div{
    font-size: 1.25rem;
}

.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background-color: var(--white);
}

.mobile-only {
    display: none;
}

.nav-menu-mobile {
    display: none;
}
/* END Settings */




/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5.625rem;
    background-color: var(--beige);
    z-index: 100;
}

.logo-container {
    position: absolute;
    /* top: 0rem; */
    top: -1rem;
    left: 2.6875rem;
    width: 16.5rem;
    height: 15.25rem;
}

.logo-container:hover {
    cursor: pointer;
}

.logo-bg {
    position: absolute;
    /* top: 0rem; */
    top: -1rem;
    left: 0;
    width: 16.5rem;
    height: 15.25rem;
}

.logo {
    position: absolute;
    /* top: 1.8125rem; */
    /* top: 0.8125rem; */
    top: 1.8125rem;
    left: 3.125rem;
    /* left: 2.5rem; */
    width: 11.875rem;
    height: 10.375rem;
}

.nav-menu {
    position: absolute;
    top: 1.8125rem;
    right: 3.1875rem;
    display: flex;
    align-items: center;
    gap: 2.3125rem;
}

.nav-item {
    font-size: 1.25rem;
    font-family: 'Figtree', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5rem;
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--blue);
}

.nav-item.active {
    color: var(--blue);
    font-weight: 700;
}

.donate-btn {
    background-color: var(--red);
    color: var(--white);
    padding: 0.375rem 1.0625rem;
    border-radius: 0.4375rem;
    text-decoration: none;
    font-size: 1.25rem;
    font-family: 'Figtree', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.donate-btn::after {
    content: '♥';
    position: absolute;
    color: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background-color: var(--red-dark);
}

.donate-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.donate-btn:hover {
    color: transparent;
}


.hero-text {
    text-shadow: 0 2px 8px rgba(5, 8, 19, 0.88);
}
/* END Header */






/* Footer */
.footer {
    width: 100%;
    background-color: var(--beige);
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.footer-logo {
    width: 15.5625rem;
    height: auto;
    object-fit: contain;
}

.footer-links,
.footer-contact {
    font-size: 1.5rem;
    font-family: 'Figtree', Arial, sans-serif;
    font-weight: 600;
    line-height: 2rem;
    color: var(--black);
    white-space: pre-line;
    max-width: 300px;
}

.footer-links {
    line-height: 2.9375rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    flex-grow: 1;
}

.footer-link {
    text-decoration: none;
    color: var(--black);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--blue);
}

.footer-contact {
    text-align: left;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.footer-address a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease; 
}


.footer-bottom {
    width: 100%;
    max-width: 1200px;
    text-align: left;
    font-size: 1.5rem;
    font-family: 'Figtree', Arial, sans-serif;
    font-weight: 400;
    color: var(--black);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

/* END Footer */


/* Responsive Styles */
/* Tablet und kleinere Desktops */
@media (max-width: 1200px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    max-width: 100%;
  }

    .mobile-only {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .burger-menu {
        display: block;
        cursor: pointer;
        right: 20px;
        top: 20px;
        position: absolute;
    }
}

/* Smartphones und kleinere Tablets */
@media (max-width: 768px) {

    .logo-container {
        position: absolute;
        top: 0;
        left: 1.34375rem;
        width: 8.25rem;
        height: 7.625rem;
    }

    .hero-section {
        margin-bottom: 2rem;
    }

    .logo-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 8.25rem;
        height: 7.625rem;
    }

    .logo {
        position: absolute;
        top: 0.90625rem;
        left: 1.5625rem;
        width: 5.9375rem;
        height: 5.1875rem;
    }

    .footer-address {
        font-size: 1rem;
        text-align: center;
    }

    .footer-links {
        font-size: 1.25rem;
        justify-content: center;
        align-items: center;
        line-height: 2rem;
    }

    p, div{
    font-size: 1rem;
    }

}
/* END Responsive Styles */


/* Mobile Menu */
/* Grundlayout für das Menü */
.nav-menu-mobile {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 999;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: top 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sichtbar machen */
.nav-menu-mobile.active {
  top: 0;
}

/* Nav-Items */
.nav-menu-mobile .nav-item,
.nav-menu-mobile .donate-btn {
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  padding: 0.5rem;
  text-align: center;
}

/* Spenden-Button extra hervorheben */
.nav-menu-mobile .donate-btn {
  background-color: #e63946;
  color: white;
  border-radius: 5px;
}

/* Burger-Button */
.burger {
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  position: fixed;
  top: 0.5rem;
  right: 1rem;
  z-index: 1000;
}


