* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: rgb(251, 249, 235) !important;
}
body {
  height: 100vh;
  overflow: hidden;
}

nav {
  width: 100%;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  margin-top: 3vh;
  margin: 5vh 0;
}

#logo-container {
  height: 100%;
  width: 25vw;
  display: flex;
  align-items: center;
  text-decoration: none;
}

#logo-container h1 {
  font-size: 1.5vw;
  color: rgb(142, 14, 29);
}

#logo-image {
  width: auto;
  height: 100%;
}

#nav-button-container {
  height: 100%;
  width: 20vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.nav-button {
  text-decoration: none;
  padding: 0.5vw 1vw;
  color: black;
  border: 1px solid rgb(142, 14, 29);
  font-size: 0.8vw;
  font-weight: bold;
  border-radius: 25px;
  transition: 0.3s;
}

.nav-button:hover {
  background-color: #111;
  color: white;
  border: none;
}

#text-container {
  width: 100%;
  height: 20vh;
  /* background-color: aqua; */
  display: flex;
  flex-direction: column;
  gap: 3vh;
  justify-content: center;
  align-items: center;
  margin-bottom: 5vh;
}

#text-container h1 {
  font-size: 4vw;
  font-weight: bold;
}
#text-container p {
  font-size: 1.3vw;
  text-align: center;
  width: 50vw;
}

#primary-contacts {
  /* background-color: rosybrown; */
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5vw;
  padding: 0 5vw;
}

.main-contact-container {
  background-color: #fff;
  width: 40vw;
  height: 20vh;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  border: 1px solid gray;
}
.main-contact-container img {
  width: 3vw;
  height: 3vw;
  /* background-color: aqua; */
}
.main-contact-container div {
  width: 50%;
  height: 60%;
  /* background-color: aqua; */
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  gap: 1vh;
}
.main-contact-container div h2 {
  font-size: 2vw;
  font-weight: bold;
}
.main-contact-container div p {
  font-size: 1vw;
  font-weight: bold;
}
.main-contact-container .info-div h3{
  /* background-color: red; */
  font-size: 2vw;
}
.main-contact-container .info-div h2{
  /* background-color: red; */
  font-size: 1vw;
  color: rgb(15, 14, 14);
}

#secondary-contacts {
  /* background-color: aqua; */
  width: 100%;
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.secondary-contact-container {
  /* background-color: #fff; */
  width: 30vw;
  height: 10vh;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 2px solid rgb(142, 14, 29);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.secondary-contact-container img {
  width: 3vw;
  height: 3vw;
  /* background-color: aqua; */
}
.secondary-contact-container a {
  width: 3vw;
  height: 3vw;
  /* background-color: aqua; */
}
.secondary-contact-container div {
  width: 50%;
  height: 60%;
  /* background-color: aqua; */
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  gap: 1vh;
}
.pointer {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.pointer:active {
  transform: scale(0.85);
}
.secondary-contact-container div h2 {
  font-size: 1vw;
  font-weight: bold;
}
.secondary-contact-container div p {
  font-size: 0.8vw;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  nav {
    /* background-color: aqua; */
    margin: 0;
  }
  #logo-image {
    width: 15vw;
    height: auto;
  }
  #logo-container h1 {
    font-size: 2vw;
  }
  #logo-container {
    /* background-color: #fff; */
    width: 35vw;
  }
  #nav-button-container {
    /* background-color: aqua; */
    width: 40vw;
  }
  #nav-button-container a {
    width: 13vw;
    font-size: 1.6vw;
    text-align: center;
  }
  #primary-contacts .copy-icon {
    display: none;
  }

  /* Primary contacts (Call & Email) should be stacked horizontally */
  /* Hide copy buttons inside primary contact container (Call & Email) */
  #primary-contacts .copy-icon {
    display: none;
  }

  /* Primary contacts (Call & Email) should be side by side */
  #primary-contacts {
    display: flex;
    flex-direction: row; /* Ensures horizontal stacking */
    justify-content: center;
    gap: 4vw; /* Space between buttons */
    align-items: center;
  }

  .main-contact-container {
    /* background:blue; */
    width: 40vw; /* Adjust width for better layout */
    height: auto;
    padding: 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .main-contact-container .info-div{
    /* background-color: red; */
    width: 100%;
  }
  .main-contact-container .info-div h3{
    /* background-color: red; */
    font-size: 3vw;
    font-weight: bold;
  }.main-contact-container .info-div h2{
    /* background-color: red; */
    font-size: 2vw;
    font-weight: bold;
  }

  .secondary-contact-container{
    /* background-color: red; */
  }
  .secondary-contact-container .social-id-container h2{
    /* background-color: aqua; */
    font-size: 3vw;
    color: rgb(24, 23, 23);
  }
  .secondary-contact-container .social-id-container p{
    /* background-color: aqua; */
    font-size: 4vw;
  }
  .secondary-contact-container .social-id-container{
    height: 100%;
    /* background-color: aqua; */
    gap: 1vh;
  }

  .main-contact-container h2,
  .main-contact-container h3 {
    color: black; /* Ensures text is clear */
    font-size: 4vw; /* Adjust for readability */
  }

  /* Make icons inside primary contact container bigger */
  .main-contact-container img {
    width: 12vw; /* Bigger icon */
    height: 12vw;
    margin-bottom: 1vh;
  }

  /* Secondary contacts (Map, Twitter, Facebook) should be stacked vertically */
  #secondary-contacts {
    display: flex;
    flex-direction: column; /* Vertical stacking */
    gap: 2vh; /* Slightly reduced gap */
    align-items: center;
    justify-content: center;
    padding: 2vh 0;
  }

  .secondary-contact-container {
    width: 70vw; /* Make them a bit shorter */
    height: 10vh; /* Reduce height */
    padding: 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .secondary-contact-container img {
    width: 7vw; /* Adjust icon size */
    height: 7vw;
  }

  .secondary-contact-container div h2,
  .secondary-contact-container div p {
    font-size: 3.8vw;
    text-align: center;
  }
  /* Primary buttons stacked vertically */
  #primary-contacts {
    flex-direction: row;
  }

  .main-contact-container {
    width: 100%;
    padding: 12px;
  }

  .main-contact-container img {
    width: 35px; /* Keeps the icon large but balanced */
    height: 35px;
  }

  .main-contact-container h2 {
    font-size: 16px;
  }

  .main-contact-container h3 {
    font-size: 14px; /* Keeps text smaller for better fit */
  }

  /* Secondary buttons remain stacked but are slightly shorter */
  .secondary-contact-container {
    padding: 10px;
  }

  .secondary-contact-container img {
    width: 25px;
    height: 25px;
  }

  .secondary-contact-container h2 {
    font-size: 13px; /* Adjusted Find Us On Map text */
  }

  .secondary-contact-container p {
    font-size: 11px;
  }

  /* Primary buttons stacked vertically and equal size */
  #primary-contacts {
    flex-direction: row;
  }

  .main-contact-container {
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px; /* Ensures equal size */
  }

  .main-contact-container img {
    width: 35px; /* Keeps icons big */
    height: 35px;
  }

  .main-contact-container h2 {
    font-size: 15px; /* Adjusted for better balance */
  }

  .main-contact-container h3 {
    font-size: 13px; /* Smaller phone & email text */
  }

  /* Secondary buttons remain stacked but shorter */
  .secondary-contact-container {
    padding: 10px;
    min-height: 50px; /* Adjusted for balance */
  }

  .secondary-contact-container img {
    width: 25px;
    height: 25px;
  }

  .secondary-contact-container h2 {
    font-size: 13px; /* Adjusted Find Us On Map text */
  }

  .secondary-contact-container p {
    font-size: 11px;
  }
  #primary-contacts {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .main-contact-container {
    width: 90%;
    height: 15vh; /* Ensuring equal size */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .main-contact-container img {
    width: 30px;
    height: 30px;
  }

  .main-contact-container h2 {
    font-size: 14px;
    font-weight: bold;
  }

  .main-contact-container h3 {
    font-size: 12px;
    font-weight: normal;
  }

  #text-container h1 {
    font-size: 8vw;
  }

  /* Larger paragraph text */
  #text-container p {
    font-size: 4vw;
    width: 90%;
  }
  .secondary-contact-container .copy-icon {
    opacity: 0;
    }
    #newTab{
      opacity: 0;
    }

    .secondary-contact-container p {
      font-size: 0px important; /* Adjust the size as needed */
    }
}
@media (prefers-color-scheme: dark) {
  body {
    background-color: rgb(251, 249, 235) !important;
  }
}