@charset "utf-8";
/* CSS Document */
  /* ==========================
     BASIC RESET
  ========================== */
  * { box-sizing: border-box; }
  body { margin: 0; font-family: Josefin-Light, Arial, sans-serif; }

  /* ==========================
     STICKY TRANSPARENT NAV
  ========================== */
  .sd-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 0 16px;
    background: rgba(0, 0, 0, 0.4); /* .4 tint */
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
  }

  .sd-nav-left {
    flex: 0 0 auto;
  }

  .sd-phone-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 20px;
    color: #ffffff;
  }

  .sd-nav-center {
    flex: 1 1 auto;
    text-align: center;
  }

  .sd-nav-logo img {
    max-height: 44px;
    width: auto;
    vertical-align: middle;
  }

  .sd-nav-right {
    flex: 0 0 auto;
  }

  .sd-menu-btn {
    width: 18px;
    height: 14px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .sd-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffffff;
  }

  /* one unified layout for all sizes, just slightly larger on big screens */
  @media screen and (min-width: 768px) {
    .sd-nav {
      height: 70px;
      padding: 0 32px;
    }

    .sd-phone-link {
      width: 44px;
      height: 44px;
      font-size: 22px;
    }

    .sd-nav-logo img {
      max-height: 48px;
    }

    .sd-menu-btn {
      width: 40px;
      height: 30px;
    }
  }

  /* ==========================
     SLIDE-IN RIGHT PANEL MENU
  ========================== */
  .sd-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* full height, no vh */
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9990;
  }

  .sd-side-panel {
    position: fixed;
    top: 0;
    right: -260px;   /* hidden off-screen by default */
    width: 260px;
    height: 100%;    /* full height, no vh */
    background: #161d26;
    color: #ffffff;
    box-shadow: -4px 0 10px rgba(0,0,0,0.4);
    padding: 20px;
    z-index: 10000;
    transition: right 0.3s ease;
  }

  .sd-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .sd-panel-title {
    font-size: 18px;
    font-weight: bold;
  }

  .sd-panel-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
  }

  .sd-panel-nav {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sd-panel-nav li {
    margin-bottom: 12px;
  }

  .sd-panel-nav a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .sd-panel-nav a:hover {
    color: #439af5;
  }

  body.sd-menu-open .sd-side-panel {
    right: 0;
  }

  body.sd-menu-open .sd-menu-overlay {
    display: block;
  }

  /* optional: freeze background scroll when menu is open */
  body.sd-menu-open {
    overflow: hidden;
  }

  /* ==========================
     BACK TO TOP BUTTON
  ========================== */
  .sd-back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(12, 73, 133, 0.9); /* matches your blue tone */
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: none; /* shown via JS */
    z-index: 10001;
  }

  .sd-back-top:hover {
    background: rgba(67, 154, 245, 1);
  }

