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

@font-face {
  font-family: "saldo-regular";
  src: url("../fonts/saldo-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Amsterdam";
  src: url("../fonts/Amsterdam.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "satoshi-regular";
  src: url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --primary-col: #bf4b26;
  --secondary-col: #f7f6e4;
  --tertiary-col: #024f6e;
  --font1: "saldo-regular";
  --font2: "Amsterdam";
  --font3: "satoshi-regular";
}

body {
  font-family: "saldo-regular", serif;
  background: var(--primary-col);
  color: var(--secondary-col);
}

#fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  background-color: rgba(247, 246, 228, 0.8);
  z-index: 3;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: #ddd;
}

#fixed-header span {
  font-weight: 500;
  font-size: clamp(18px, 2vw, 25px);
  text-decoration: none;
  color: var(--tertiary-col);
}

.right-header img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.left-header {
  display: flex;
  justify-content: center;
  gap: 25px;
  align-items: center;
}

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

.right-logo img {
  height: 60px;
  width: 150px;
}

#contact-us {
  background: var(--tertiary-col);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: medium;
  cursor: pointer;
  transition: 0.3s ease;
  color: var(--secondary-col);
}

#contact-us:hover {
  background: var(--primary-col);
}

/* ===== TABLET & DESKTOP BREAKPOINT (1200px) ===== */
@media (max-width: 1200px) {
  #fixed-header {
    padding: 12px 24px;
  }

  #fixed-header span {
    font-size: clamp(16px, 1.8vw, 22px);
  }

  .header-logo {
    height: 55px;
  }

  .left-header {
    gap: 15px;
  }
  #contact-us {
    padding: 8px 16px; /* Reduced padding */
    font-size: 0.85rem;
    min-width: auto; /* Remove minimum width */
  }
}

/* ===== TABLET BREAKPOINT (900px) ===== */
@media (max-width: 900px) {
  #fixed-header {
    padding: 10px 20px;
  }

  #fixed-header span {
    font-size: clamp(14px, 1.5vw, 18px);
  }

  .header-logo {
    height: 55px;
  }

  .left-header {
    gap: 10px;
  }

  #contact-us {
    padding: 5px 12px;
    font-size: 0.8rem;
    order: 3;
  }
}

/* ===== MOBILE BREAKPOINT (520px) ===== */
@media (max-width: 520px) {
  #fixed-header {
    padding: 4px 8px;
  }

  #fixed-header span {
    font-size: 10px;
  }

   .right-header img {
    height: 45px;
    width: auto;
  }

  body {
    font-size: 14px;
  }

  .left-header {
    gap: 10px;
  }

  .right-logo img {
    width: 60px;
    height: 40px;
  }

  #contact-us {
    padding: 3px 8px;
    font-size: 0.65rem;
  }
}

/* ===== SMALL MOBILE BREAKPOINT (375px) ===== */
@media (max-width: 375px) {
  #fixed-header {
    padding: 6px 12px;
  }

  #fixed-header span {
    font-size: 11px;
  }

  #fixed-header img {
    height: 24px;
  }

  body {
    font-size: 13px;
  }
}
