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

:root {
  --primary-col: #e8e4de;
  --secondary-col: #2f3e46;
  --tertiary-col: #9a8470;
}

@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;
  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(255, 255, 255, 0.8);
  z-index: 3;
  padding: 12px 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);
  color: var(--tertiary-col);
  text-decoration: none;
}

.right-header img {
  height: 30px;
  width: auto;
}
.left-header {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.aveline-logo {
  max-height: 35px;
  border-radius: 8px;
}

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

  #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: 4px 8px;
  }

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