/* General reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  color: white;
  background: linear-gradient(-45deg, #080808, #000c1d, #000000, #aeaeae);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  min-height: 100vh;
  overflow-x: hidden;
}

@keyframes gradient {
  0% { background-position: 10% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 10% 50%; }
}



/* Hero Section */
.hero {
  font-family: 'Goldman'; 
  background: url('assets/BG.png') no-repeat center center/cover;
  background-position: 48% center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(255, 255, 255);
  height: 100vh;
}

.hero-text h1 {
  padding-top: 10vh;
  font-size: 4rem;
  margin-bottom: -10px;
  text-transform: uppercase;
  background: linear-gradient(to right, #c6c6c6, #ffffff, #ffffff, #ffffff, #c6c6c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: -2px 2px 10px rgba(0, 0, 0, 0);
}

.hero-text-2 h1 {
  font-size: 4rem;
  margin-bottom: -10px;
  text-transform: uppercase;
  background: linear-gradient(to right, #000000, #a0a0a0, #ffffff, #ffffff, #ffffff, #a0a0a0, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: -2px 2px 10px rgba(0, 0, 0, 0);
}

.hero-text-2 p {
  margin-top: 10px;
  font-size: 1.5rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

#threejs-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 3;
}

.hero-text-2 {
  position: relative;
  z-index: 2;
}

/* Footer */
footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  padding: 10px;
  text-align: center;
  z-index: 1;
}

.social-media {
  display: inline-flex;
  align-items: center;
}

.social-media a {
  margin: 0 10px;
}

footer hr {
  border: 1px solid rgba(255, 255, 255, 0.767);
  width: 70%;
  margin: 8px auto;
}

/* Social Media Icons - Individual Sizes and Hover Effects */
.icon-Gmail {
  width: 2vw;
  transition: transform 0.3s;
}

.icon-Gmail:hover {
  transform: scale(1.1);
}

.icon-linkedin {
  width: 25px;
  transition: transform 0.3s;
}

.icon-linkedin:hover {
  transform: scale(1.1);
}

.icon-twitter {
  width: 30px;
  transition: transform 0.3s;
}

.icon-twitter:hover {
  transform: scale(1.1);
}

.icon-instagram {
  width: 27px;
  transition: transform 0.3s;
}

.icon-instagram:hover {
  transform: scale(1.1);
}

.icon-facebook {
  width: 28px;
  transition: transform 0.3s;
}

.icon-facebook:hover {
  transform: scale(1.1);
}

.icon-youtube {
  width: 32px;
  transition: transform 0.3s;
}

.icon-youtube:hover {
  transform: scale(1.1);
}

.call-icon {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 0.5vw;
}

.call-icon img {
  width: 1.8vw;
  transition: transform 0.3s;
}

.call-icon:hover img {
  transform: scale(1.1);
}

/* Drop-Up Menu */
.drop-up-menu {
  position: absolute;
  bottom: 2.5vw;
  right: 10vw;
  background-color: rgba(255, 255, 255, 0.65);
  padding: 0.8vw;
  border-radius: 2vw;
  display: none;
  z-index: 2;
  width: max-content;
}

.drop-up-menu.show {
  display: block;
}

.drop-up-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.drop-up-menu li {
  color: rgb(0, 0, 0);
  font-size: 0.9rem;
  padding: 0.3vw 0;
}

/* Mobile and Tablet Media Queries */
@media (min-width: 481px) and (max-width: 1024px) {  /* Tablet */
  .navbar {
    padding: 0vw 4vw;
    position: fixed;
    top: 0;
    width: 100%;
    height: 6.5vh;
    display: flex;
    z-index: 1000;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 1.6vw;
    z-index: 1000;
  }

  .logo img {
    width: 15vw;
  }

  .nav-links-left,
.nav-links-right {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 3vw
}

  /* Hide the horizontal nav links and add the hamburger button */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    width: 4vw;
    height: 0.3vw;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 4vw;
    height: 0.3vw;
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease-in-out;
  }

  .hamburger::before {
    top: -1vw;
  }

  .hamburger::after {
    bottom: -1vw;
  }

  /* On click: Toggle the nav-links */
  .navbar.active .nav-links {
    display: flex;
    flex-direction: column;
    gap: 3vw;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 100%;
    left: 0; /* Align to the very left of the screen */
    width: 100vw; /* Ensure it covers the full screen width */
    padding: 5vw 0;
    z-index: 999;
    border-bottom-left-radius: 20vw;
}


  .navbar.active .hamburger::before {
    top: -1.3vw;
  }

  .navbar.active .hamburger::after {
    bottom: -1.3vw;
  }

  .nav-links a {
    font-size: 2vw;
    position: relative;
    padding: 5px 0;
  }

  /* Hero Section adjustments */
  .hero {
    height: 100vh;
  }

  .hero-text h1 {
    margin-top: 0vw;
    font-size: 7vw;
  }

  .hero-text-2 h1 {
    font-size: 7vw;
  }

  .hero-text-2 p {
    font-size: 3vw;
  }

  /* Footer adjustments */
  footer p {
    font-size: 0.75em;
  }
}

@media (max-width: 480px) {  /* Mobile */
  .navbar {
    padding: 1vw 6vw;
    position: fixed;
    top: 0;
    width: 100%;
    height: 6.5vh;
    display: flex;
    z-index: 1000;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 3vw;
    z-index: 1000;
  }

  .logo img {
    width: 20vw;
  }

  .nav-links-left,
.nav-links-right {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 6vw
}

  /* Hide the horizontal nav links and add the hamburger button */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    width: 8vw;
    height: 0.7vw;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 8vw;
    height: 0.7vw;
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease-in-out;
  }

  .hamburger::before {
    top: -1.7vw;
  }

  .hamburger::after {
    bottom: -1.7vw;
  }

  /* On click: Toggle the nav-links */
  .navbar.active .nav-links {
    display: flex;
    flex-direction: column;
    gap: 6vw;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 10vw 0;
    z-index: 999;
    border-bottom-left-radius: 20vw ;
  }

  .navbar.active .hamburger::before {
    top: -2.3vw;
  }

  .navbar.active .hamburger::after {
    bottom: -2.3vw;
  }

  /* Hero Section adjustments */
  .hero {
    height: 100vh;
    background: url('assets/BG phone.png') no-repeat center center/cover;
  }

  .hero-text h1 {
    margin-top: 80vw;
    font-size: 7vw;
  }

  .hero-text-2 h1 {
    font-size: 7vw;
  }

  .hero-text-2 p {
    font-size: 3vw;
  }

  /* Footer adjustments */
  footer p {
    font-size: 0.75em;
  }

  .social-media {
    align-items: center;
  }

  .social-media a {
    margin: 1vw;
  }

  .social-media img {
    width: 6vw; /* Make icons smaller on mobile */
  }

  .drop-up-menu {
    right: 50%; /* Adjusted to fit smaller screens */
    bottom: 10vw;
    position: absolute;
    left: 50%; /* Start from the center horizontally */
    transform: translateX(-50%); /* Center align the menu */
  }

  .drop-up-menu li {
    color: rgb(0, 0, 0);
    font-size: 2vw;
    padding: 0.5vw 0;
  }
}


@media (max-width: 1024px) and (orientation: landscape) {  /* Mobile */
  .navbar {
    padding: 0vw 4vw;
    position: fixed;
    top: 0;
    width: 100%;
    height: 11vh;
    display: flex;
    z-index: 1000;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.1vw;
    z-index: 1000;
  }

  .logo img {
    width: 8vw;
  }

  .nav-links-left,
.nav-links-right {
  display: flex;
  flex-direction: column;
  margin: auto;
  gap: 3vw
}

  /* Hide the horizontal nav links and add the hamburger button */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
    cursor: pointer;
    width: 4vw;
    height: 0.2vw;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 4vw;
    height: 0.2vw;
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease-in-out;
  }

  .hamburger::before {
    top: -1vw;
  }

  .hamburger::after {
    bottom: -1vw;
  }

  /* On click: Toggle the nav-links */
  .navbar.active .nav-links {
    display: flex;
    flex-direction: column;
    gap: 3vw;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 100%;
    left: 0; /* Align to the very left of the screen */
    width: 100vw; /* Ensure it covers the full screen width */
    padding: 5vw 0;
    z-index: 999;
    border-bottom-left-radius: 20vw;
}


  .navbar.active .hamburger::before {
    top: -1.3vw;
  }

  .navbar.active .hamburger::after {
    bottom: -1.3vw;
  }

  /* Hero Section adjustments */
  .hero {
    height: 100vh;
  }

  .hero-text h1 {
    margin-top: 0vw;
    font-size: 4vw;
  }

  .hero-text-2 h1 {
    font-size: 4vw;
  }

  .hero-text-2 p {
    font-size: 1.5vw;
  }

  /* Footer adjustments */
  footer p {
    font-size: 0.75em;
  }

  .social-media a {
    margin: 0.4vw; /* Reduce margin for better alignment */
  }

  .social-media img {
    width: 2vw; /* Smaller icons for compact layout */
  }

  .drop-up-menu {
    right: 3%; /* Position the menu to the right side */
    bottom: 4vw; /* Adjust bottom spacing for shorter height */
    left: auto; /* Remove centering adjustments */
    transform: none; /* Disable transform */
  }

  .drop-up-menu ul li {
    color: rgb(0, 0, 0);
    font-size: 1vw; /* Reduce font size for compact design */
    padding: 0.2vw 0; /* Adjust padding for spacing */
  }
}