html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#loader {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  color: white;
  font-size: 1.5em;
  font-weight: bold;
}

header {
  margin-bottom: 20px !important;
}

#main-content {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  flex-direction: column;
}

.content {
  padding: 20px 40px;
  text-align: center;
  border-radius: 10px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #111;
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content ul li a {
  display: block;
  padding: 10px;
  border-radius: 6px;
  background: #222;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}
.modal-content ul li a:hover {
  background: #ffffff;
  color: #000000;
}

.modal-content h2 {
  margin-top: 0;
  font-size: 20px;
  text-align: center;
  color: #ffffff;
}

.modal-content h5 {
  margin-top: -10px;
  margin-right: 12px;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
}
.modal-content h3 {
  margin: 15px 0 5px;
  font-size: 16px;
  color: #ffffff;
}

.modal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.modal-content ul li {
  margin: 8px 0;
}

.modal-content a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.modal-content a:hover {
  text-decoration: underline;
  color: #ff0000;
}

.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.close:hover {
  color: #ff0000;
}

.brochure-content {
  background: #111;
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  width: 75%;
  max-width: 600px;
  max-height: 63vh;
  overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.brochure-content::-webkit-scrollbar {
  display: none;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.brochure-item {
  text-align: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 12px;
  transition: transform 0.2s ease-in-out, background 0.2s;
}
.brochure-item:hover {
  transform: scale(1.05);
}
.brochure-item img {
  margin-top: 1rem;
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  border-radius: 5px;
}
.brochure-item p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
}

.modal-content a {
  text-decoration: none;
  color: inherit;
}

.modal-content a:hover {
  color: #ff0000;
  text-decoration: none;
}

.modal-content a:visited,
.modal-content a:active,
.modal-content a:focus {
  color: inherit;
  text-decoration: none;
}

.contact-footer {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

.icon {
  width: 28px;
  height: 28px;
  filter: invert(1);
  transition: transform 0.2s ease-in-out;
}
.icon:hover {
  transform: scale(1.1);
}

.phone-btn,
.email-btn,
.whatsapp-btn {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  filter: none !important;
  border-radius: 0 !important;
}
.phone-btn:hover,
.email-btn:hover,
.whatsapp-btn:hover {
  background: none !important;
  color: inherit !important;
}
.phone-btn .icon {
  width: 30px !important;
  height: 30px !important;
}

.email-btn .icon {
  width: 35px;
  height: 35px;
}

.whatsapp-btn .icon {
  width: 35px;
  height: 35px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bigwing-logo {
  background-image: url("assets/logo.png");
  height: 110px;
  margin-bottom: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.welcome-anim {
  margin-top: -10px;
  color: #fff;
  font-size: 1.6em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: -3px;
}

.bigwing-text {
  margin-top: 20px;
  background-image: url("assets/bw.png");
  height: 90px;
  width: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

button {
  margin: 10px;
  padding: 8px 20px;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: calc(100% - 40px);
  height: 40px;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
  font-weight: bold;
  border-right: 3px solid #696969;
  border-bottom: 3px solid #696969;
  outline: none;
  font-size: 1rem;
  transition: background-color 0.3s, color 0.3s;
}
button:focus {
  outline: none;
}
button:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}

@media (min-width: 768px) {
  .content {
    padding: 40px 60px;
    max-width: 600px;
  }
  .bigwing-text {
    width: 400px;
    height: 110px;
    margin-top: 30px;
  }
  .bigwing-logo {
    height: 130px;
    margin-bottom: 40px;
  }
  button {
    width: 300px;
    height: 45px;
    font-size: 18px;
    margin: 5px;
  }
  .icon {
    width: 40px !important;
    height: 40px !important;
  }
  .brochure-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .content {
    padding: 60px 100px;
    max-width: 800px;
  }
  .bigwing-text {
    width: 450px;
    height: 120px;
  }
  .bigwing-logo {
    height: 160px;
    margin-bottom: 50px;
  }
  button {
    width: 350px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 20px;
  }
  header {
    margin-bottom: 40px !important;
  }
  .brochure-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .icon {
    width: 40px !important;
    height: 40px !important;
  }
}
