@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Ovo&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: #111;
  color: #eee;
  font-family: 'inter', sans-serif;
  line-height: 1.6;
  font-weight: 400;
}

a {
  color: #eee;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'inter', sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

p {
  font-family: 'ovo', serif;
  font-weight: 400;
}

.navbar {
  padding: 1.5rem 0;
  background-color: #111;
  position: relative;
  z-index: 1000;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo span {
  color: #c75df0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  background: #181818;
  padding: 1rem 2.5rem;
  margin: 2rem auto;
  border-radius: 32px;
  box-shadow: 0 4px 15px rgba(40, 147, 255, 0.12);
  max-width: 1000px;
  align-items: center;
  transition: box-shadow 0.3s, background 0.3s;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ccc;
  transition: color 0.2s;
}

.nav-links a.active {
  color: #c75df0;
  font-weight: 600;
  border-bottom: 2px solid #c75df0;
}

.nav-links a:hover {
  color: #c75df0;
}

.social-icons i {
  margin-left: 1rem;
  color: #ccc;
  transition: color 0.2s;
}

.social-icons i:hover {
  color: #c75df0;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  width: 30px;
  height: 30px;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ecf0f1;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 5px;
}

.hamburger span:nth-child(2) {
  top: 13px;
}

.hamburger span:nth-child(3) {
  top: 21px;
}

.hamburger.active span:nth-child(1) {
  top: 13px;
  transform: rotate(135deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -30px;
}

.hamburger.active span:nth-child(3) {
  top: 13px;
  transform: rotate(-135deg);
}

.contact-container {
  text-align: center;
  padding: 6rem 2rem 4rem;
  margin-bottom: 4.7rem;
}

.contact-container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2b2c6d;
}

.mail-link {
  font-size: 2rem;
  background: linear-gradient(to right, #3b82f6, #9333ea, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  text-decoration: none;
}

footer {
  background-color: #000;
  padding: 2rem 0;
  color: #aaa;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-left {
  font-family: 'inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-left span {
  color: #c75df0;
}

.footer-left,
.footer-center,
.footer-right {
  margin-bottom: 1rem;
}

.footer-center p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  max-width: 400px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-right i {
  transition: color 0.2s;
}

.footer-right i:hover {
  color: #c75df0;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom nav {
  display: flex;
  justify-content: center;
  background: #181818;
  padding: 1rem 2rem;
  margin: 2rem auto;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(40, 147, 255, 0.08);
  max-width: 480px;
}

.footer-bottom nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin: 0 0.75rem;
  color: #ccc;
  transition: color 0.2s;
}

.footer-bottom nav a:hover {
  color: #c75df0;
}

.footer-bottom hr {
  border: none;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #c75df0 40%, #2893ff 100%);
  margin: 2rem 0;
  opacity: 0.7;
}

.copyright {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #777;
}

.copyright span {
  color: #2893ff;
}

@media (max-width: 768px) {
  .navbar-inner {
    position: relative;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(17, 17, 17, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 2rem 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    margin: 1.5rem 0;
    font-size: 1.2rem;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    transform: scale(1.05);
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #2c3e50;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 40px;
    transition: left 0.5s ease;
  }

  .social-icons {
    display: none;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-center {
    margin: 1rem 0;
  }

  .footer-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .footer-bottom nav {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }
}