.fullscreen-photo-section {
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.logo-text {
    font-family: serif;         /* or your .intro-big-title font-family */
    font-size: 2.5rem;          /* adjust as needed */
    font-weight: bold;
    color: #fff;                /* or your preferred color */
    letter-spacing: 2px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
    display: inline-block;
}

.intro-bg {
  background-image: url('../images/koerner-far.JPG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;           /* Use height instead of min-height */
  max-height: 100vh;       /* Prevents overflow on tall images */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;        /* Ensures nothing spills out */
  
}

.intro-bottom-text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 3vw 3vw 2vw 3vw;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    box-sizing: border-box;
    z-index: 2;
}

.intro-big-title {
    font-size: vw;
    color: #e8e8e8;
    font-family: serif;
    font-weight: bold;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
    animation-delay: 1s;
}

.intro-links {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    font-size: 1.7vw;
    color: #fff;
    transition: color 0.2s;
    text-decoration: none;
    text-align: right;
    margin-bottom: 0.5vw;
    animation-delay: 1s;    
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(30px);}
    to { opacity: 1; transform: translateY(0);}
}

.intro-big-title,
.intro-links {
    opacity: 0;
    animation: fade-in 1.2s ease-out forwards;
    animation-delay: 0.6s;

}

.intro-links a:hover {
    color: hsla(0, 0%, 100%, 0.7);
}


.intro-links a {
    color: #fff;
    transition: color 0.2s, background-color 0.2s, font-size 0.2s;
    text-decoration: none;
    padding: 2px 8px;
    border-radius: 4px;
}

.intro-links a:hover {
    background-color: rgb(213, 213, 213);
    color: #222;
    font-size: 25px;
}

/* Increase menu text size on mobile */
@media screen and (max-width: 800px) {
    .intro-links {
        font-size: 6vw;
    }
    .intro-links a {
        font-size: 6vw;
    }
}

.intro-description {
    position: absolute;
    right: 3vw;
    bottom: 1vw;
    color: #fff;
    font-size: 1.1vw;
    max-width: 350px;
    text-align: right;
    opacity: 0.9;
}

.intro-description a {
    color: #fff;
    text-decoration: underline;
}


/* Reduce space below the section header */
.section-header.grid-section-split__header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove space above the main content */
.s-about__content-main.grid-section-split__primary {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove space above the paragraph itself */
.attention-getter {
    margin-top: 0 !important;
        margin-bottom: 0.5rem; /* Reduce space below the paragraph */
    padding-top: 0 !important;
}

.grid-section-split {
    column-gap: 1vw !important;   /* or try 0, or a smaller value */
    gap: 1vw !important;          /* for flexbox/grid gap */
}

.s-about__content-btn.grid-section-split__bottom {
    margin-top: -15rem; /* Remove space above the button section */
}


.icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    width: auto;
    margin-bottom: 2vw; /* Match the bottom padding of .intro-bottom-text */
}

.intro-social-icons {
    opacity: 0;
    animation: fade-in 1.2s ease-out forwards;
    animation-delay: 0.6s;
}
.intro-social-icons {
    display: flex;
    gap: 1rem;
}

.intro-social-icons a {
    color: #fff;
    transition: color 0.2s;
}

.intro-social-icons a:hover {
    color: #97b34a; /* Adjust hover color as needed */
}