html {
  background-color: white;
  font-size: 20px;
  font-family: "Chewy", system-ui;
   box-sizing: border-box;
  /* Add this to prevent potential horizontal scrolling if anything still overflows */
}
*, *::before, *::after {
  box-sizing: inherit;
  }


body {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.header::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 20px;
  background: radial-gradient(
    circle at 15px 0px,
    #1bfc54 13px,     /* Purple center */
    #A50cf8 16px,       /* Black border ring */
    white 14.5px      /* White background outside the scallop */
  );
  background-size: 30px 30px;
  background-repeat: repeat-x;
  z-index: 0;
}

.header {
  z-index: 2;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.headerContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  width: 1150px;
  background-color: white;
  gap: 10px;
}

.shrink {
  display: flex;
  align-items: center;
  transition: 0.3s;
  margin-right: auto;
}

.shrink img {
  width: clamp(275px, calc(275px + (225 * ((100vw - 500px) / 400))), 500px);  
}

.shrink:hover {
  transform: scale(0.95);
  cursor: pointer;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(10px, calc(10px + (40 * ((100vw - 500px) / 680))), 50px);  
  margin-left: auto;
  margin-top: 0;
}

.menu h1 {
  font-size: clamp(18px, calc(18px + (12 * ((100vw - 500px) / 400))), 30px);
  font-weight: normal;
  letter-spacing: 3px;
  color: #A50cf8;
  -webkit-text-stroke: 1px black; /* Outline width and color */
  margin: 0px;
}

.menu img {
  width: clamp(20px, calc(20px + (20 * ((100vw - 500px) / 400))), 40px);
}

.home, .flavorMenu, .contactInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.home:hover h1, .flavorMenu:hover h1, .contactInfo:hover h1{
  color: #1bfc54;
}

.homeIconHover, .menuIconHover, .contactIconHover {
  display: none;
}

.home:hover .homeIconDefault, .flavorMenu:hover:hover .menuIconDefault, .contactInfo:hover .contactIconDefault {
  opacity: 0;
  display: none;
}

.home:hover .homeIconHover, .flavorMenu:hover .menuIconHover, .contactInfo:hover .contactIconHover{
  opacity: 1;
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  .headerContainer {
    width: 100%; /* Change from 97vw */
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media screen and (max-width: 900px) {
  .shrink {
    margin: 0;
  }
}

@media screen and (max-width: 500px) {
  .headerContainer {
    flex-direction: column;
  }
  
  .menu {
    margin: 0;
    gap: 10px;

  }
  .menu img {
    width: 20px;
  }
  .menu h1 {
    font-size: 18px;
  }

  .shrink img {
    width: 275px;
  }
  
}


