body {
  background: #f6f5f2;
  color: #232323;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */

.wf-navbar{
    background:#f4f4f4;
    position:relative;
    width:100%;
}

.wf-container{
    max-width:1200px;
    margin:auto;

    height:95px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 20px;
}

/* LOGO */

.wf-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.wf-logo img{
    width:55px;
}

.wf-text{
    font-size:46px;
    font-weight:700;
    color:#111;
}

/* RIGHT */

.wf-right{
    display:flex;
    align-items:center;
}

/* SOCIAL */

.wf-social{
    display:flex;
}

.wf-social a{
    width:50px;
    height:50px;
    background:#000;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

/* DONATE */

.wf-donate{
    height:50px;
    padding:0 26px;

    display:flex;
    align-items:center;

    background:#21b7c4;
    color:#fff;

    font-weight:700;
    text-decoration:none;
}

/* MENU BUTTON (hidden on desktop) */

.wf-menu-btn{
    display:none;
}

/* ================= MOBILE MENU (FULL WIDTH PANEL) ================= */

.wf-nav-links{
    width:100%;
    background:#000;

    position:relative;

    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
}

.wf-nav-links.active{
    max-height:700px;
}

.wf-nav-links a,
.wf-dropdown-toggle{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 40px;

    color:#fff;
    text-decoration:none;

    font-size:14px;
    letter-spacing:1px;

    border-bottom:1px solid rgba(255,255,255,0.08);
    cursor:pointer;
}

/* SUBMENU */

.wf-submenu{
    background:#111;
    max-height:0;
    overflow:hidden;
    transition:0.3s ease;
}

.wf-submenu a{
    padding-left:70px;
    color:#ccc;
    border:none;
}

.wf-submenu.active{
    max-height:150px;
}

/* PLUS */

.wf-plus{
    transition:0.3s;
}

.wf-plus.rotate{
    transform:rotate(45deg);
}

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

@media(max-width:768px){

    .wf-text{
        display:none;
    }

    .wf-social{
        display:none;
    }

    .wf-menu-btn{
        display:block;

        width:42px;
        height:42px;

        background:#c79b31;
        color:#fff;

        border:none;
        font-size:22px;
    }

    .wf-container{
        height:75px;
        padding:0 15px;
    }

    .wf-logo img{
        width:42px;
    }

    .wf-donate{
        height:42px;
        padding:0 14px;
        font-size:12px;
    }
}

.contact-hero {
  position: relative;
  min-height: 260px;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.58)), url('Kirsten7.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 40px 24px 44px;
}

.hero-copy {
  position: relative;
  max-width: 760px;
  color: #ffffff;
}

.hero-copy span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.95;
}

.hero-copy p {
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
  margin: 0;
}

.contact-main {
  padding: 38px 20px 72px;
}

.contact-container {
  max-width: 1120px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.contact-image-card,
.contact-panel {
  border-radius: 28px;
  overflow: hidden;
}

.contact-image-wrap {
  position: relative;
  min-height: 520px;
  background: #e8e5e2;
}

.contact-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.70);
  color: #ffffff;
  font-size: 13px;
  border-radius: 12px;
}

.contact-panel {
  background: #ece9e5;
  padding: 38px 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.panel-header h2 {
  font-size: 34px;
  margin: 0 0 10px;
  line-height: 1.05;
  color: #1f1f1f;
}

.panel-header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #5c5c5c;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #d4d0cc;
  background: #ffffff;
  padding: 16px 18px;
  font-size: 15px;
  color: #232323;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #a8a39b;
  box-shadow: 0 0 0 5px rgba(36, 36, 36, 0.05);
}

.btn-primary {
  width: 140px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: #101010;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #000000;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-image-wrap {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .contact-hero {
    min-height: 220px;
    padding: 32px 18px 34px;
  }

  .hero-copy p {
    font-size: 28px;
  }

  .contact-panel {
    padding: 28px 22px;
  }
}

@media (max-width: 520px) {
  .contact-hero {
    min-height: 190px;
  }

  .hero-copy p {
    font-size: 24px;
  }

  .contact-image-wrap {
    min-height: 300px;
  }

  .btn-primary {
    width: 100%;
  }
}
