 /* layout  temp */

 #temp-container {
  min-height: 100vh;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }
 #temp-container img {
  width: 90%;
  max-width: 1000px;
  padding: 0 0 var(--space-32) 0;
  ;
 }
 #temp-container p {
  font-size: var(--space-32);
 }
 #temp-container a {
  color: #333;
  font-size: var(--space-20);
 }
 /*--------------------------
layout 
----------------------------*/

 #container {}
 #contact {
  max-width: 1000px;
 }
 /* layout  home */

 #home-page #container {
  width: 100%;
  display: flex;
  flex-direction: column;

 }
 #project-single section, .home-page section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-content: center;
  justify-content: center;
  flex: 0;
  background: #f7f8f3 url('../img/backgrounds/pattern-white-01.jpg') top center;
  background-size: 50%;
  background-attachment: fixed;
  padding: 4rem 0;
 }
 
.parallax {
    background-size: cover;
    background-attachment: fixed; /* optional, for classic parallax */
    background-repeat: no-repeat;
    background-position: center center;
}

 #home-page #container section:nth-child(even) {}
 .home-page .section-content {
  background: rgb(255, 255, 255, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
  align-self: center;
  max-width: 1000px;
  padding: clamp(1rem, 3vw + 20rem, 4rem) clamp(1rem, 3vw, 4rem);
 }
 section#section-logo {
  padding: 0;
 }


 /*--------
Footer*/
  .fb-logo{
    width: 60px;
  }
 .width-constraints{
  width: 90%;
  
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
 footer#footer-container {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  flex: 0;
  background: #f7f8f3 url('../img/backgrounds/pattern-white-01.jpg') top center;
  background: var(--blue);
  background-size: 50%;
  background-attachment: fixed;
  padding: 0.5rem 0 1rem 0;
 }
footer#footer-container p{
color: #fff;
padding: 0 0 0.5rem 0;
margin: 0;
 }

 footer #footer-content {
  background: rgb(255, 255, 255, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
  align-self: center;
  max-width: 1000px;
  position: relative;
  padding: clamp(1rem, 3vw + 20rem, 4rem) clamp(1rem, 3vw, 4rem);
 }


 #footer-icons{
 
  display: flex;
  flex-direction: row;
  gap: 10px;
 }

.footer-icon{


 }
 /*--------
single project page*/

 #single-project-wrap {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 200px;
  width: 100%;
  background: #f7f8f3 url('../img/backgrounds/pattern-white-01.jpg') top center;
 }
 .single-project-wrap {
  width: 90%;
  max-width: var(--max-width);
  background: #fff;
  padding: clamp(1rem, 3vw + 20rem, 4rem) clamp(1rem, 3vw, 4rem);
  height: auto;
  padding: 2rem;
 }
 #project-contact-wrapper {
  background: #fff;
  width: 90%;
  max-width: var(--max-width);
  margin: 2rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 1rem;
 }
 /* ===========================
   Sticky Header
   =========================== */

 #sticky-header {
  position: fixed;
  /* or fixed if you want it always on top */
  top: 0;
  width: 100%;
  background: #fff;
  /* or your site background */
  z-index: 997;
  border-bottom: solid 2px var(--blue);
  padding: 0.75rem 1rem;
  /* vertical + horizontal padding defines height */
  box-sizing: border-box;
  display: flex;
  align-items: center;
  /* vertically center content */
  justify-content: center;
  opacity: 0;
  /* start hidden for home page fade-in */
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  /* vertically center logo + nav */
  padding: 0.5rem 1rem;
  /* optional spacing around logo */
  height: auto;
 }
 .inner-width-constraint {
  width: 100%;
  max-width: 1100px;
  position: relative;
 }
 #sticky-header img.logo {
  display: block;
  max-height: 60px;
  /* constrain if needed */
  width: auto;
  /* maintain aspect ratio */
  max-height: clamp(40px, 10vw, 80px);
  padding-left: 10%;
  /* min 40px, scales with viewport, max 80px */
 }
 /* Show after fade-in trigger */

 #sticky-header.visible {
  opacity: 1;
 }
 }
 #sticky-header nav a {
  display: inline-block;
  padding: 0.5rem 1rem;
  line-height: 1.5rem;
  text-decoration: none;
  color: #333;
 }
 /* Responsive adjustments */

 @media (max-width: 768px) {
  #sticky-header {
    padding: 0.5rem 0.75rem;
  }
  #sticky-header nav a {
    padding: 0.25rem 0.5rem;
  }
 }