@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Audiowide', sans-serif;
  display: flex;
  flex-direction: column;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

p {
  color: rgb(85, 85, 85);
}

a,
.btn {
  transition: all 300ms ease;
}

nav,
.nav-links {
  font-family: 'Audiowide', sans-serif;
  display: flex;
}

nav {
  justify-content: space-between; 
  align-items: center;
  height: 17vh;
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a2e; 
  z-index: 100; 
  padding: 0 1rem; 
  animation: floatNav 2s infinite; 
  text-shadow: 0 0 5px rgba(240, 227, 206, 0.7);
  border-bottom: 2px solid #00CED1; 
  box-shadow: 0 2px 10px rgba(0, 206, 209, 0.5); 
}

.nav-links {
  gap: 2rem;
  list-style: none;
  font-size: 1.5rem;
}

.nav-links a {
  color: #e0e0e0; 
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 1rem;
  border-radius: 5px; 
}

.nav-links a:hover {
  color: #f5a623; 
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: #f5a623;
  text-shadow: 0 0 5px rgba(245, 166, 35, 0.7);
}

@keyframes floatNav {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.text {
  font-family: 'Audiowide', sans-serif;
  color: #FF4500; 
  border-radius: 10px;
  text-align: center; 
  margin: 1rem 0;
  flex: 1; 
  text-shadow: 0 0 5px rgba(255, 69, 0, 0.7);
}

.subtitle {
  font-family: 'Audiowide', sans-serif;
  color: #f5a623;
  font-size: 2rem; 
  text-align: center; 
  margin-top: 0.5rem; 
  margin-bottom: 1rem; 
  background: linear-gradient(90deg, #f5a623, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 3px rgba(245, 166, 35, 0.5);
}

.title,
.logo {
  font-family: 'Audiowide', sans-serif;
  color: #f5a623;
  font-size: 2rem;
  position: relative;
  text-shadow: 0 0 3px rgba(245, 166, 35, 0.5);
}

.logo {
  margin-left: 1rem;
  text-shadow: 0 0 5px rgba(245, 166, 35, 0.7);
  animation: rocketLaunch 2s infinite;
}

@keyframes rocketLaunch {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes rocketTrail {
  0% {
    opacity: 1;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.logo::before, .logo::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f00;
  animation: rocketTrail 0.6s infinite;
}

.logo::before {
  bottom: -15px;
  left: -10px;
}

.logo::after {
  bottom: -15px;
  right: -10px;
}

.logo:hover {
  cursor: default;
}

#hamburger-nav {
  display: none;
}

.hamburger-menu {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
  position: relative;
  animation: rocketLaunch 2s infinite;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color:  #f5a623;
  box-shadow: 0 0 5px rgba(245, 166, 35, 0.7);
  transition: all 0.3s ease-in-out;
}

.hamburger-icon::before, .hamburger-icon::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f00;
  animation: rocketTrail 0.6s infinite;
}

.hamburger-icon::before {
  bottom: -15px;
  left: -10px;
}

.hamburger-icon::after {
  bottom: -15px;
  right: -10px;
}

.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(10px, -5px);
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  background-color:  #1a1a2e;
  width: fit-content;
  max-height: 0;
  font-family: 'Audiowide', sans-serif;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 2px solid #00CED1;
  text-shadow: 0 0 5px rgba(240, 227, 206, 0.7);
  box-shadow: 0 2px 10px rgba(0, 206, 209, 0.5); 
}

.services-list {
  list-style: none;
  padding: 0;
  font-family: 'Audiowide', sans-serif;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.5;
}

.services-list li {
  margin-bottom: 0.5rem;
}

.menu-links a {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border: 2px solid #00CED1; 
}

.menu-links a:hover {
  color: #f5a623; 
  text-decoration-color: #f5a623;
  text-shadow: 0 0 5px rgba(245, 166, 35, 0.7);
}

.menu-links li {
  list-style: none;
}

.menu-links.open {
  max-height: 300px;
}

#main-content {
  flex: 1; 
  background: linear-gradient(135deg, #1a1a2e 0%, #162447 50%, #0f3460 100%);
}

section {
  padding-top: 4vh;
  margin: 0 10rem;
  margin-top: 12vh; 
  box-sizing: border-box;
}

.section-container {
  display: flex;
}

.title {
  font-size: 3rem;
  text-align: center;
}

#socials-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  gap: 1rem;
}

.icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s;
}

.icon:hover {
  transform: scale(1.1);
}

footer {
  font-family: 'Audiowide', sans-serif;
  color: #00c8ff;
  position: flex; 
  left: 0;
  bottom: 0;
  width: 100%; 
  background: linear-gradient(135deg, #1a1a2e 0%, #162447 50%, #0f3460 100%);
  padding: 1rem;
  text-align: center;
  z-index: 100; 
  text-shadow: 0 0 5px rgba(0, 247, 255, 0.361);
  border-top: 2px solid #00CED1;
  box-shadow: 0 2px 10px rgba(0, 206, 209, 0.5); 
}

.footer:hover {
  cursor: default;
}