/* FULL REBUILT style.css – synchronised with index.html */

:root{
  --teal:#2ec7c0;--aquamarine:#77e0d8;--navy:#02203c;--bg:#a0a0a0;
  --text:#152028;--muted:#66757a;
  --heading-font:'Calibri', 'Helvetica Neue', Helvetica, Arial, sans-serif; 
  --body-font:   'Calibri', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
*{box-sizing:border-box}
body{margin:0;font-family:var(--body-font);background:var(--bg);color:var(--text);line-height:1.6;-webkit-font-smoothing:antialiased}

/* HEADER */
.site-header{text-align:center;padding:3.2rem 1rem 2.2rem;color:white;
  background:linear-gradient(135deg,var(--aquamarine)0%,var(--navy)100%);
  position:relative}
.logo{width:120px;margin:0 auto .8rem;display:block;border-radius:8px}
.site-title{margin:0;font-size:2rem;font-weight:700}
.site-tag{font-size:1rem;margin-top:.4rem;opacity:.95}

/* NAV */
/* Hamburger icon: hidden on desktop, shown on small screens */
.hamburger {
  display: none; /* hidden by default */
  position: absolute;
  top: 14px;
  right: 14px;
  background: 0;
  border: 0;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1000;
}

/* Primary nav: desktop layout */
.primary-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  font-size: 1.2rem; /* increased font size */
}

.primary-nav a {
  color: white;
  text-decoration: none;
  padding: .4rem .8rem;
  font-weight: 700;
  border-radius: 6px;
  font-size: 1.2rem;
}

.primary-nav a:hover {
  background: rgba(255, 255, 255, .1);
}

/* Mobile layout: hide desktop nav and show hamburger */
@media (max-width: 768px) {
  .hamburger {
    display: block; /* show hamburger */
  }

  .primary-nav {
    display: none; /* hide desktop nav */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    padding-top: 5rem;
    background: var(--navy);
    box-shadow: -8px 0 30px rgba(0, 0, 0, .25);
    z-index: 999;
  }

  .primary-nav.mobile {
    display: flex !important; /* show when hamburger clicked */
  }

  .primary-nav.mobile a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 1.2rem;
  }
}

/* MAIN */
main{max-width:900px;margin:1.6rem auto;padding:0 1rem 3rem}
.section{background:white;margin:1.4rem 0;padding:1.4rem;border-radius:10px;box-shadow:0 6px 18px rgba(0,0,0,.06);scroll-margin-top:120px}
.section h2 {
  margin-top:0;
  font-family:var(--heading-font);
  font-size:1.5rem;
  /* remove color property */
}
.compact,.bullets{padding-left:1.1rem}

/* FORM */
.contact-form{display:flex;flex-direction:column;gap:1rem}
.form-row{display:flex;gap:1rem}
.field{flex:1}
label{font-weight:700;margin-bottom:.35rem;display:block}
input,select,textarea{width:100%;padding:.75rem;border-radius:8px;border:1px solid #d7eaea;font-size:1rem;background:white}
input:focus,textarea:focus,select:focus{outline:3px solid rgba(0,122,122,.15)}
#submit-btn{padding:.9rem 1.2rem;border-radius:8px;border:0;background:var(--navy);color:white;font-weight:700;cursor:pointer}
#submit-btn:disabled{background:#7a8b92;cursor:not-allowed}

/* STATUS */
.status{margin-top:.8rem;padding:.8rem;border-radius:8px;font-weight:700;opacity:0;transition:.45s}
.status.visible{opacity:1}
.status.success{background:#d7f5e9;color:#0a613a;border:1px solid #9de3c5}
.status.error{background:#fbe4e4;color:#7a1c1c;border:1px solid #e2a8a8}
.spinner{width:16px;height:16px;border:3px solid rgba(255,255,255,.3);border-top-color:white;border-radius:50%;animation:spin .8s linear infinite;display:inline-block;margin-left:8px}
@keyframes spin{to{transform:rotate(360deg)}}
.error-msg{color:#7a1c1c;font-size:.9rem;display:none;margin-top:.35rem}

/* BUTTONS */
.cv-button{background:var(--teal);color:white;padding:.8rem 1.1rem;border-radius:8px;text-decoration:none;font-weight:700}
.cv-button:hover{background:var(--aquamarine);color:#012}

/* FOOTER */
.site-footer{text-align:center;padding:1.6rem;background:var(--navy);color:white;margin-top:2rem}

/* RESPONSIVE */
@media(max-width:899px){.hamburger{display:block}.primary-nav{display:none}.form-row{flex-direction:column}.logo{width:100px}}
@media(min-width:900px){.section{scroll-margin-top:100px}} style.css */

h2 {
  color: var(--navy) !important;
  font-family: var(--heading-font);
}
