/* Vanilla rebuild of the original Webflow site (no Webflow runtime/CSS) */

/* Base */
:root{
  --bg: #16a085;
  --card-bg: rgba(255,255,255,0.71);
  --text-dark: #333;
  --shadow: 1px 1px 3px rgba(0,0,0,0.23);
  --shadow-strong: 1px 1px 3px rgba(0,0,0,0.7);
  --nav-shadow: 1px 1px 13px rgba(0,0,0,0.3);
  --accent: #16a085;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  font-family: Ubuntu, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Navbar */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  height: 70px;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#fff;
  box-shadow: var(--nav-shadow);
  z-index: 1000;
}
.nav-inner{
  width: min(1000px, 100%);
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 16px;
}
.brand{
  display:block;
  height: 60px;
}
.brand img{
  height:100%;
  width:auto;
  object-fit:contain;
  display:block;
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 24px;
  height:100%;
}
.nav-links a{
  display:flex;
  align-items:center;
  height:100%;
  padding: 0 20px;
  font-family: Lemonada, sans-serif;
  font-size:16px;
  line-height:26px;
  font-weight:500;
  letter-spacing:0.3px;
  color: var(--text-dark);
  text-decoration:none;
  cursor:pointer;
}
.nav-links a:hover{ color: var(--accent); }

/* Mobile menu button */
.menu-button{
  display:none;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border:0;
  background:transparent;
  cursor:pointer;
}
.menu-button .bars{
  width:26px;
  height:18px;
  position:relative;
}
.menu-button .bars span{
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:#333;
  border-radius:2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.menu-button .bars span:nth-child(1){ top:0; }
.menu-button .bars span:nth-child(2){ top:8px; }
.menu-button .bars span:nth-child(3){ top:16px; }

.menu-open .menu-button .bars span:nth-child(1){ top:8px; transform: rotate(45deg); }
.menu-open .menu-button .bars span:nth-child(2){ opacity:0; }
.menu-open .menu-button .bars span:nth-child(3){ top:8px; transform: rotate(-45deg); }

/* Main layout */
.main-content-holder{
  margin-top: 150px; /* matches original spacing under fixed nav */
}
.inner-content{
  max-width: 550px;
  margin: 0 auto;
  padding: 0 16px;
  text-align:center;
}
.text-block{
  font-family: Lemonada, sans-serif;
  color:#fff;
  font-size:25px;
  line-height:42px;
  text-align:left;
}
.main-image{
  margin-top:75px;
  border: 1px solid #8a7d7d;
  border-radius:4px;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.38);
  display:block;
  max-width: 439px;
  width: 100%;
  height:auto;
  margin-left:auto;
  margin-right:auto;
}

/* Projects */
.projects-holder{
  margin-top:75px;
  width: min(940px, 100%);
  margin-left:auto;
  margin-right:auto;
  padding: 0 16px 60px;
}
.projects-title{
  margin: 0 0 40px;
  font-family: Lemonada, sans-serif;
  color:#fff;
  font-size:30px;
  text-align:center;
}
.projects-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom:50px;
}
.card{
  padding:20px;
  border:1px solid rgba(0,0,0,0.32);
  border-radius:4px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}
.card img{
  width:100%;
  height:auto;
  border-radius:4px;
  box-shadow: var(--shadow-strong);
  display:block;
}
.card iframe{
  width:100%;
  aspect-ratio: 16 / 9;
  height:auto;
  border-radius:4px;
  display:block;
}
.card-text{
  margin-top:35px;
  font-family: Lemonada, sans-serif;
  color: var(--text-dark);
  font-size:16px;
  line-height:30px;
  font-weight:400;
  text-align:left;
}
.card-text a{
  text-decoration:none;
}
.card-text strong{
  color: var(--accent);
  font-weight:700;
}

/* Contact */
.contact-main{
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
}
.contact-section{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 80px;
  text-align: center;
  width: 100%;
}
.contact-blurb{
  font-family: Lemonada, sans-serif;
  color: #fff;
  font-size: 22px;
  line-height: 38px;
  max-width: 700px;
  margin: 0 0 40px;
}
.contact-buttons{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 300px;
}
.contact-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: Lemonada, sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  color: var(--accent);
  box-shadow: var(--shadow-strong);
  transition: opacity .15s ease;
}
.contact-btn:hover{ opacity: .85; }
.contact-btn--outline{
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: none;
}
.contact-btn--outline:hover{ background: rgba(255,255,255,0.15); }

/* Responsive tweaks matching original behavior */
@media (max-width: 767px){
  .main-content-holder{ padding: 0 30px; }
  .projects-grid{
    grid-template-columns: 1fr;
    padding: 0 30px;
    text-align:center;
  }
  .card-text{
    margin-top:30px;
    margin-bottom:30px;
  }

  .menu-button{ display:flex; }
  .nav-links{
    position: absolute;
    top:70px;
    left:0;
    right:0;
    height:auto;
    display:none;
    flex-direction:column;
    gap:0;
    background:#fff;
    box-shadow: var(--nav-shadow);
    padding: 8px 0;
  }
  .nav-links a{
    height:auto;
    width:100%;
    padding: 14px 20px;
    justify-content:center;
  }
  .menu-open .nav-links{ display:flex; }
}

@media (max-width: 479px){
  .projects-holder{ padding-left: 0; padding-right: 0; }
  .projects-grid{ padding-left: 0; padding-right: 0; }
  .text-block{ font-size: 22px; line-height: 38px; }
}

/* Accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:12px;
  top:12px;
  width:auto;
  height:auto;
  padding:8px 10px;
  background:#fff;
  color:#000;
  border-radius:6px;
  z-index:2000;
}