* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

.top-header {
  background: #58d4e8;
  position: relative;
  overflow: visible;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  min-height: 215px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* LEFT SIDE */
.left-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.desktop-nav ul {
  list-style: none;
}

.desktop-nav li {
  margin-bottom: 10px;
}

.desktop-nav a {
  text-decoration: none;
  font-size: 28px;
  color: #fa7db1;
  font-weight: 500;
  line-height: 1.1;
}

/* CENTER LOGO */
.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrap img {
  width: 230px;
  max-width: 100%;
  display: block;
}

/* RIGHT SIDE */
.right-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* CLICKABLE PHONE */
.call-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #84a80b;
  color: #fff;
  text-decoration: none;
  padding: 18px 24px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  min-width: 345px;
  line-height: 1.1;
  transition: 0.2s ease;
}

.call-box:hover {
  transform: translateY(-1px);
}

.call-box span {
  font-size: 24px;
}

.call-box strong {
  font-size: 28px;
  font-weight: 400;
  margin-top: 4px;
}

/* HOURS SVG */
.hours-wrap img {
  width: 240px;
  max-width: 100%;
  display: block;
}



/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 75px;
  height: 8px;
  background: #ff00cc;
  margin: 11px 0;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  background: #58d4e8;
  padding: 10px 20px 20px;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin: 12px 0;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 24px;
  color: #ff00cc;
  font-weight: 600;
}

/* TABLET / MOBILE */
@media (max-width: 900px) {
  .header-inner {
    min-height: 165px;
    padding: 0 18px;
    grid-template-columns: 1fr auto 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo-wrap img {
    width: 150px;
  }

  .call-box {
    min-width: 0;
    width: 200px;
    padding: 14px 12px;
  }

  .call-box span {
    font-size: 17px;
  }

  .call-box strong {
    font-size: 20px;
  }

  .hours-wrap img {
    width: 170px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    min-height: 150px;
    padding: 0 14px;
  }

  .hamburger span {
    width: 58px;
    height: 7px;
    margin: 9px 0;
  }

  .logo-wrap img {
    width: 135px;
  }

  .call-box {
    width: 170px;
    padding: 12px 8px;
  }

  .call-box span {
    font-size: 14px;
  }

  .call-box strong {
    font-size: 17px;
  }

  .hours-wrap img {
    width: 155px;
  }

  .bottom-pink-bar {
    height: 42px;
  }
}