:root {
  --image-width: 250px;
  --image-height: 320px;
  --bg: url('https://tennesseestrippers.com/assets/black-bg.webp');
  --primary-color: #aec12aed;
  --secondary-color: rgba(255, 255, 255);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.911);
}

.black-image {
  background-image: url('https://tennesseestrippers.com/assets/black-bg.webp');
  background-size: cover;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--secondary-color);
  height: 900px;
  background-attachment: fixed;
}

.header-text-container {
  margin-right: 50%;
  display: flex;
  flex-direction: column;
  height: 90vh;
  padding: 30px;
}

.header-text-container #tennessee {
  font-size: 40px;
  font-weight: 600;
  font-family: 'Courier New', Courier, monospace;
  margin: 100px auto 0 auto;
  color: white;
}

.header-text-container h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  font-family: 'Courier New', Courier, monospace;
  margin: 100px auto 30px auto;
}

.header-text-container .phone-cards {
  display: flex;
  justify-content: center;
}

.phone-cards a p {
  text-align: center;
}

address {
  color: var(--secondary-color);
  width: 85%;
  display: flex;
  justify-content: flex-end;
  margin: 10px 0;
}

a figure {
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 200px;
  max-height: 250px;
}

a figure img {
  width: var(--image-width);
  height: var(--image-height);

  max-width: 100%;
}

.row {
  display: flex;
  align-items: center;
  gap:5px
}

.container {
  background-color: transparent;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}

.grid-item {
  background-color: #3a3a3b;
  padding: 10px;
}

.grid-item .disabled {
  pointer-events: none;
  cursor: default;
}

.grid-item p {
  color: var(--secondary-color);
  width: 90%;
  display: flex;
  justify-content: flex-end;
}

.whatsupp-button {
  width: 100%;
  background-color: #108928;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 800;
}

.wa-icon {
  font-size: 25px;
  color: var(--secondary-color);
  margin-right: 10px;
}

.phone-button {
  width: 100%;
  background-color: var(--primary-color);
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 10px;
}

.phone-icon {
  font-size: 25px;
  color: var(--secondary-color);
  margin-right: 10px;
}

.location-icon {
  color: var(--secondary-color);
  margin-left: 10px;
}

.model-name {
  margin: 10px 0;
  font-weight: 600;
}

.secondary-header p a {
  font-family: 'Courier New', Courier, monospace;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(
    45deg,
    rgb(44, 117, 255),
    magenta,
    rgb(0, 0, 0),
    rgb(128, 0, 128),
    yellow,
    green,
    rgb(255, 215, 0),
    blue,
    violet,
    rgb(0, 0, 0),
    skyblue
  );
  background-size: 400% 400%;
  animation: animate 5s ease-in-out infinite;
}

@keyframes animate {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 100% 0;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}

.left {
  flex: 1;
  width: 100%;
}

.right {
  flex: 3;
  display: flex;
  width: 100%;
}

.cities-list {
  list-style: none;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  padding: 10px;
  justify-items: center;
}

.cities-list li a {
  text-decoration: none;
  color: var(--secondary-color);
  padding: 3px;
}

.bottom-links {
  list-style: none;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  padding: 10px;
  justify-items: center;
}

.bottom-links li, .cities-list li{
  padding: 3px;
}

.bottom-links li a {
  text-decoration: none;
  color: var(--secondary-color);
  padding: 3px;
}

.text-window {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
  background-image: linear-gradient(
    var(--primary-color),
    rgba(184, 163, 93, 0.596)
  );
}

.all-images {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}

.all-images figure img {
  max-width: 350px;
}

.areas-list {
  margin: 20px auto 10px auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 15px;
  justify-items: center;
  background-color: transparent;
}

.areas-list a,
#menuButton {
  text-decoration: none;
  color: white;
  width: 115px;
  min-width: 110px;
  height: 60px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  font-size: 16px;
  box-shadow: 0 0 4px 2px rgb(238, 236, 236);
  position: relative;
  border-radius: 3px;
  font-weight: 600;
}

.areas-list a:hover {
  box-shadow: 0 0 5px 3px var(--primary-color);
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

#menuButton::after,
#menuButton::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -1;
  padding: 4px;
  animation: 3s spin linear infinite;
  background-image: conic-gradient(
    from var(--angle),
    transparent 5%,
    #ff4545,
    #00ff99,
    #006aff,
    #ff0095,
    #ff4545
  );
  border-radius: 10px;
}

@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}

#menuButton::before {
  filter: blur(1rem);
  opacity: 0.7;
}

.glass {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(165, 162, 8, 0.39);
  box-shadow: 5px 5px 20px 0 rgba(131, 138, 36, 0.37);
  margin-bottom: 10px;
  margin-left: 30px;
  padding: 8px;
  text-decoration: none;
  color: var(--secondary-color);
  width: 100%;
  max-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 600;
}

.glass:hover {
  color: var(--primary-color);
}

.social-links {
  margin: 20px auto;
}

ul.social-links li {
  display: inline-block;
}
ul.social-links li a {
  padding: 5px;
  opacity: 0.6;
}
ul.social-links li.label {
  opacity: 0.6;
  font-weight: 400;
  margin: 0 auto;
}
ul.social-links li a:hover {
  opacity: 1;
}
ul.social-links li a img {
  max-height: 30px;
}

.divider {
}

.secondary-header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 20px;
}

.secondary-header p {
  font-weight: bolder;
  font-family: 'Courier New', Courier, monospace;
  font-size: 35px;
  color: var(--secondary-color);
  text-align: center;
}

footer {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-image: linear-gradient(
    to bottom,
    rgba(184, 163, 93, 0.596),
    var(--primary-color)
  );
}

footer h1 a {
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  text-decoration: none;
}

.banners {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px;
}

.text-wrapper {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.text-wrapper h2,
h3,
h4 {
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.text-wrapper p {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.main-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.main-text-wrapper h1 {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: bold;
  padding: 5px;
  text-align: center;
}

/* ------------------------MENU-------------------------------- */

.menu-container {
  position: relative;
  display: inline-block;
}

#menuButton {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

#menu {
  position: absolute;
  top: 111%;
  left: -123px;
  width: 243px;
  color: var(--secondary-color);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr 1fr;
}

#menu ul li a {
  padding: 10px 10px;
  text-decoration: none;
  display: flex;
  color: var(--secondary-color);
}

#menu ul li a:hover {
  color: #b281e2;
}

.hidden {
  display: none;
}

/* ---------------------------MEDIA QUERYs--------------------------------- */

@media (min-width: 1251px) and (max-width: 3000px) {
  :root {
    --image-width: 210px;
    --image-height: 250px;
  }
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .cities-list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  footer {
    height: 200px;
  }

  .bottom-links {
    grid-template-columns: 1fr;
  }

  .areas-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 70%;
  }

  .divider {
    border-left: 1.8px solid var(--secondary-color);
    display: flex;
    height: 60%;
  }
  .text-wrapper p {
    padding: 5px 30px;
  }
}

@media (min-width: 801px) and (max-width: 1250px) {
  :root {
    --image-width: 235px;
    --image-height: 250px;
  }

  .header-text-container .phone-cards {
    flex-direction: column;
    align-items: center;
  }

  .text-wrapper p {
    padding: 5px 15px;
  }

  .cities-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  footer {
    height: 250px;
  }

  h1.heading {
    font-size: 2em;
  }

  .bottom-links {
    grid-template-columns: 1fr 1fr;
  }
  .areas-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 90%;
  }

  .divider {
    border-left: 1.8px solid var(--secondary-color);
    display: flex;
    height: 80%;
  }
}

@media screen and (max-width: 800px) {
  :root {
    --image-width: 165px;
    --image-height: 200px;
  }

  .black-image {
    background-position: right center;
  }

  .header-text-container {
    margin: 0;
  }

  .header-text-container #tennessee {
    font-size: 40px;
    font-weight: 600;
    margin: 50px auto 0 auto;
  }

  .header-text-container h1 {
    font-size: 30px;
    margin: 40px auto;
  }

  .header-text-container .phone-cards {
    flex-direction: column;
    align-items: center;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    height: 350px;
    flex-direction: column;
  }

  h1.heading {
    font-size: 2em;
  }

  .banners {
    flex-direction: column;
  }

  .areas-list {
    grid-template-columns: 1fr 1fr;
    width: 90%;
  }

  .divider {
    border-top: 1.8px solid var(--secondary-color);
    display: flex;
    height: 20px;
    width: 80%;
  }

  .text-wrapper p {
    padding: 5px 15px;
  }

  ul.social-links li a {
    padding: 5px;
    opacity: 1;
  }
}

.block_icon  {
  display:flex;
  gap:5px;
  align-items: center;
}

.block_icon svg, .svg {
  width:25px;
  height:25px
}