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

:root {
  --primary-col: #b08d57; /* Color used for the font through out the site */
  --seconday-col: #052c2e;
  --tertiary-col: #a19d94;
}

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

@font-face {
  font-family: "Cera Godrej Interio";
  src: url("../fonts/CeraGodrejInterio-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Cera Godrej Interio";
  src: url("../fonts/CeraGodrejInterio-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

body {
  font-family: "Cera Godrej Interio", Arial, sans-serif;
  color: var(--primary-col);
  background: var(--seconday-col);
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

#fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  background-color: rgba(5, 44, 46, 0.5);
  z-index: 3;
  padding: 15px 30px;
  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;
}

#fixed-header img {
  height: 40px;
  width: auto;
}

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

#contact-us {
  background: var(--tertiary-col);
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  color: var(--seconday-col);
  transition: 0.3s ease;
  white-space: nowrap;
}

#contact-us:hover {
  transform: translateY(-2px);
}

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

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

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

  .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);
  }

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

  .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: 8px 16px;
  }

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

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

  body {
    font-size: 14px;
  }

  .left-header {
    gap: 10px;
  }

  #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;
  }

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