/* =========*/
/* GLOBAL  */
/* =========*/

h1, h2, h3, h4, h5, h6 {
    font-family: "Bree Serif", serif;
}

/* =========*/
/* BODY  */
/* =========*/

body {
    overflow-x: hidden;   /* prevents horizontal scroll */
    overflow-y: auto;     /* allows vertical scrolling */
    margin: 0;
    padding: 0;
}



/* =========*/
/* NAV      */
/* =========*/

.nav-link {
    color:rgb(0, 0, 0);
}

.nav {
  align-items: center;
  margin-top: 2%;
  margin-bottom: 2%;
  font-family: "Bree Serif", serif;
}

/* =========*/
/* HEADER   */
/* =========*/

  .headercontainer{
    display: flex;
    height: 90px;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    align-content: center;
    margin-left: 3%;
    margin-top: 2%;
    margin-bottom: 2%;
    transition: opacity 0.3s; /* Add a smooth transition effect */
  }

  .logo:hover {
    opacity: 0.01; /* Change the image's opacity when hovered */
  }
  




/* =========*/
/* MAIN CONTENT   */
/* =========*/
.servicesstack {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 10px;
    border-radius: 4px;        /* subtle rounded corners */
    overflow: hidden;           /* keeps images clipped to the rounded edge */
}

/* Modifier classes for background variations */
.stack-light {
    background-color: #f5f5f5;   /* light grey */
}

.stack-dark {
    background-color: #1a1a1a;
    color: #ffffff;              /* flip text to white */
}

.stack-accent {
    background-color: #e8e0d5;   /* warm neutral — nice for photography sites */
}

.stack-dark h1, 
.stack-dark h2, 
.stack-dark p {
    color: #ffffff;
}

/* For full bleed images with no padding */
.stack-flush {
    padding: 0;
}

.servicesrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 5;
    gap: 30px;
    flex-wrap: nowrap;
}

.servicesimage {
    width: 100%;
    max-width: 450px;
    flex-shrink: 0;  
        /* stops images squishing */
    padding: 0px 10px;
}
/* S@ - wider image row variant */
/*

*/
.stack-wide .servicesrow {
    max-width: 1300px;
    gap: 10px
}

.stack-wide .servicesimage {
    max-width: 500px;
}

.servicesimagelandscape {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    width: 100%;
    min-width: 350px;
}

.servicesimage img {
    width: 100%;
    height: auto;
    object-fit: cover;

}

.serviceswords {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    min-width:350px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.service-links {
  color: #000000;
  margin: 0;
  pointer-events: all;
  opacity: 0.8;
 text-decoration: none;
}

.service-links:hover {
    opacity: 0.3;

}


/* =========*/
/* Offering cards   */
/* =========*/

.offerings-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    flex-wrap: nowrap;
}

.offerings-card {
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5; 
    border-radius: 12px;
    padding: 32px;
    flex: 1;                    /* each card takes equal width */
}

.offerings-card h2 {
    margin-bottom: 12px;
}

.offerings-card p {
    margin: 0;
    color: #555;
}

/* Mobile — stack vertically */
@media screen and (max-width: 768px) {
    .offerings-row {
        flex-direction: column;
        align-items: center;
    }

    .offerings-card {
        width: 100%;
    }
}

/* =========*/
/* FOOTER   */
/* =========*/


.footercontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    text-decoration: overline;
    font-style: italic;
  }

/* =========*/
/* MOBILE    */
/* =========*/


  @media screen and (max-width: 800px) {
  .headercontainer {
    height: auto;
    flex-direction: column;
    padding: 10px 0;
  }
  
  .servicesrow {
    flex-direction: column;
  }

  .servicesstack {
    padding: 40px 15px;
  }

   .logo {
    margin: 10px 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 10px 0;
    gap: 4px;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
}



  
