/* General Reset & Base Styles */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--backgroundColor);
}

h1 {
  font-size: 3em;
}

strong {
  font-weight: 550;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

a {
  color: white;
  text-decoration: underline;
}

/* Layout & Structure */
.big-wrapper {
  position: relative;
  padding: 1.7rem 0 2rem;
  width: 100%;
  min-height: 90vh;
  overflow: hidden;
  background-color: var(--backgroundColor);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  position: relative;
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  z-index: 10;
}

/* Animation */
.copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  animation: appear 1s 1 both;
}

@keyframes appear {
  0% {
    clip-path: circle(30% at -25% -25%);
  }
  100% {
    clip-path: circle(150% at 0 0);
  }
}

/* Footer Styles */
.site-footer {
    background-color: var(--footerBackground);
    color: #fff;
    padding: 0.6rem 0;
    margin-top: auto;
    border-top: 4px solid var(--footerSeparator);
}

.site-footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    color: #516f85;
    line-height: 1.6;
}

/* Footer Row Layout */
.footer-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-bible {
    width: 60px;
    height: 60px;
}

.footer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.footer-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: underline;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--mainColor);
}

.footer-links-right {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    width: 100%;
}

.footer-links-right a {
    display: inline-block;
    margin: 0;
}

.footer-row-right {
    flex-direction: row-reverse;
    justify-content: flex-end;
    text-align: right;
}

.footer-row-right .footer-text-block {
    align-items: flex-end;
}

.footer-row-middle {
    justify-content: flex-end;
    text-align: right;
}

.footer-row-middle .footer-text-block {
    align-items: flex-end;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-footer .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-column {
        width: 100%;
    }
    .footer-row {
        flex-direction: row;
        align-items: flex-start;
    }
    .footer-avatar {
        width: 44px;
        height: 44px;
    }
    .footer-links {
        margin-top: 0.5rem;
    }
    .footer-links-right {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .footer-links-right a {
        margin: 0 auto;
    }
    .footer-logo-small {
        margin: 0 auto 0.1em auto;
    }
    .footer-row-right {
        flex-direction: row-reverse;
        justify-content: center;
        text-align: center;
    }
    .footer-row-right .footer-text-block {
        align-items: center;
    }
    .footer-row-middle {
        justify-content: center;
        text-align: center;
    }
    .footer-row-middle .footer-text-block {
        align-items: center;
    }
}

.footer-separator {
    color: #fff;
    opacity: 0.5;
    margin: 0 0.5em;
    font-weight: 400;
}

.footer-logo-small {
    width: 105px;
    height: auto;
    display: block;
    margin: 0 0 0.1em 0;
    filter: drop-shadow(0 1px 4px rgba(0,0,0,0.12));
}
