html, body {
font-family: Helvetica, Arial, sans-serif;
background: #ffffff;
margin: 0px;
overflow-x: hidden;
}

.image-slideshow {
    max-width:100%;
    height: 75vh;
}

.slides {
width: 100%;
height: 75vh;
object-fit: cover;
object-position: center;
}

.slide {
    position: relative;       /* already needed for captions */
  width: 100%;
  height: 75vh;
  opacity: 0;               /* hidden by default */
  transition: opacity 1s ease-in-out;  /* fade duration */
  position: absolute;       /* stack slides on top of each other */
  top: 0;
  left: 0;
}

.slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 75vh;
    opacity: 75%;

    /* Black → Transparent vertical gradient */
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65) 0%,   /* bottom (strongest) */
        rgba(0,0,0,0) 70%      /* top (transparent) */
    );

    pointer-events: none;  /* so links still work */
    z-index: 5;            /* sits above image, below captions */
}

.slide::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 75vh;
    opacity: 5%;

    /* Transparent → Black vertical gradient from top */
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65) 0%,   /* top (strongest) */
        rgba(0,0,0,0) 70%      /* fade to transparent */
    );

    pointer-events: none;
    z-index: 5; /* same as ::after */
}

.slide.active {
  opacity: 1;               /* visible slide */
  z-index: 1;               /* ensure visible slide is on top */
}

.caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 10;
}

.caption h2 {
font-weight: 100;
font-size: 42px;
}

.caption p {
font-weight: 100;
font-size: 18px;
}

.caption h2,
.caption p {
    margin: 0;
}

.header {
position: static;
background-color: #fff;
padding-top: 0px;
padding-bottom: 0px;

}

.logo {
position: relative;
top: 40px;
left: 40px;
z-index: 10;
display: inline-block;    
}

.logo img {
    width: 150px;
    height: auto;
}

.nav-list {
top: 30px;
padding-right: 40px;
z-index: 9999;
text-align: right;
color: #808080;    
}

.nav-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-decoration: underline;
    text-underline-offset: 6px;
    
}

.nav-list ul li {
    line-height: 1.5;
    display: block;
    margin: 0;
    padding: 0;
    font-weight: medium;
    font-size: 18px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #dfdfdf;   /* optional hover color */
}

.desc-paragraph {
    display: flex;
    align-items: top;   /* vertical centering */
    justify-content: space-between;  /* push text left + nav right */
    min-height: 15vh;
    padding: 40px 40px;        /* 40px left and right */
    background-color: #fff;
}

.desc-paragraph p {
    margin: 0;
    max-width: 600px;       /* optional: control line length */
    font-size: 20px;
    color: #242424;
}

.desc-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.desc-nav ul li {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}

.desc-nav a {
    color: #808080;
    text-decoration: none;
    text-underline-offset: 6px;
    font-size: 28px;
}

.footer-bottom p{
  padding-left: 40px;
  padding-right: 40px;
  margin: 0;
}

.footer-bottom {
  text-align: left;
  font-size: 0.8rem;
  color: #54595a;
  background: #ededee;
  font-weight: light;
  margin-left: 0px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.prev, .next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0,0,0,0);
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 0px;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover { background: rgba(0,0,0,0.7); }

.image-grid-container {

        padding-top: 10px;
        padding-bottom: 40px;

}

.image-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0px;
    }

    .image-grid a {
        position: relative;
        display: block;
        overflow: hidden;
    }

    .image-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        display: block;
        transition: transform 0.4s ease, filter 0.4s ease;
    }

    .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
        color: white;
        transition: opacity 0.4s ease;
        opacity: 0;
        pointer-events: none;
    }

    .overlay h3 {
        margin: 0;
        font-weight: 400;
        font-size: 18px;
    }

    .overlay p {
        margin: 4px 0 0;
        font-weight: 400;
        font-size: 12px;
        color: #ffffff;
        text-align: left;
    }

    .image-grid a:hover img {
        filter: brightness(95%);
        transform: scale(1.025);
    }

    .image-grid a:hover .overlay {
        opacity: 1;
        pointer-events: auto;
    }

    @media screen and (max-width: 600px) {

html, body {
font-family: Helvetica, Arial, sans-serif;
background: #ffffff;
margin: 0px;
overflow-x: hidden;
}

.image-slideshow {
    max-width:100%;
    height: 75vh;
}

.slides {
width: 100%;
height: 75vh;
object-fit: cover;
object-position: center;
}

.slide {
    position: relative;       /* already needed for captions */
  width: 100%;
  height: 75vh;
  opacity: 0;               /* hidden by default */
  transition: opacity 1s ease-in-out;  /* fade duration */
  position: absolute;       /* stack slides on top of each other */
  top: 0;
  left: 0;
}

.slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 75vh;
    opacity: 75%;

    /* Black → Transparent vertical gradient */
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65) 0%,   /* bottom (strongest) */
        rgba(0,0,0,0) 70%      /* top (transparent) */
    );

    pointer-events: none;  /* so links still work */
    z-index: 5;            /* sits above image, below captions */
}

.slide::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 75vh;
    opacity: 5%;

    /* Transparent → Black vertical gradient from top */
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.65) 0%,   /* top (strongest) */
        rgba(0,0,0,0) 70%      /* fade to transparent */
    );

    pointer-events: none;
    z-index: 5; /* same as ::after */
}

.slide.active {
  opacity: 1;               /* visible slide */
  z-index: 1;               /* ensure visible slide is on top */
}

.caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: white;
    z-index: 10;
}

.caption h2 {
font-weight: 100;
font-size: 42px;
}

.caption p {
font-weight: 100;
font-size: 18px;
}

.caption h2,
.caption p {
    margin: 0;
}

.header {
position: static;
background-color: #fff;
padding-top: 0px;
padding-bottom: 0px;

}

.logo {
position: relative;
top: 30px;
left: 20px;
z-index: 10;
display: inline-block;    
}

.logo img {
    width: 120px;
    height: auto;
}

.nav-list {
position: absolute;
right: 0;
padding-right: 25px;
max-width: 100vw;
z-index: 9999;
text-align: right;
color: #808080;    
}

.nav-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-decoration: underline;
    text-underline-offset: 6px;
    
}

.nav-list ul li {
    line-height: 1.5;
    display: block;
    margin: 0;
    padding: 0;
    font-weight: medium;
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #dfdfdf;   /* optional hover color */
}

.desc-paragraph {
    display: flex;
    align-items: top;   /* vertical centering */
    justify-content: space-between;  /* push text left + nav right */
    min-height: 15vh;
    padding: 25px 25px;        /* 40px left and right */
    background-color: #fff;
}

.desc-paragraph p {
    margin: 0;
    max-width: 600px;       /* optional: control line length */
    font-size: 12px;
    color: #242424;
}

.desc-nav ul {
    list-style: none;
    margin: 0;
    padding-right: 0;
    text-align: right;
}

.desc-nav ul li {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}

.desc-nav a {
    color: #808080;
    text-decoration: none;
    text-underline-offset: 6px;
    font-size: 24px;
}

.footer-bottom p{
  margin: 0;
  height: 40px;
}

.footer-bottom {
  text-align: center;
  font-size: 10px;
  color: #54595a;
  background: #ededee;
  font-weight: light;
  margin-left: 0px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.prev, .next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0,0,0,0);
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 0px;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover { background: rgba(0,0,0,0.7); }

.image-grid-container {

        padding-top: 10px;
        padding-bottom: 40px;

}

.image-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
    }

    .image-grid a {
        position: relative;
        display: block;
        overflow: hidden;
    }

    .image-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
        display: block;
        transition: transform 0.4s ease, filter 0.4s ease;
    }

    .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
        color: white;
        transition: opacity 0.4s ease;
        opacity: 1;
        pointer-events: none;
    }

    .overlay h3 {
        margin: 0;
        font-weight: 400;
        font-size: 14px;
    }

    .overlay p {
        margin: 4px 0 0;
        font-weight: 400;
        font-size: 10px;
        color: #ffffff;
        text-align: left;
    }
    }
