@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 460;
    background-color: #0f0f0f;
    color: white;
    text-align: center;
    height: 100vh;
    overflow-x: hidden;
}

::selection {
  background-color: #d6d6d6;
  color: #1e1e1e;
}

::-moz-selection {
  background-color: #d6d6d6;
  color: #1e1e1e;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(30px);
    background-color: rgba(6, 6, 6, 0.3);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo-link {
  display: inline-block;
}

.logo {
    width: 60px;
    height: 60px;
    background-image: url('img/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.container {
  max-width: 680px;
  margin: 130px auto 80px;
  text-align: left;
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  font-size: 42px;
  font-weight: 700;
}

.subtitle {
  margin-top: 10px;
  opacity: 0.75;
  font-size: 19px;
}

.contact-box {
  margin-top: 40px;
  background: #151515;
  padding: 24px 26px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.email-icon {
  width: 36px;
  height: 36px;
  background-color: #00DDC7;
  border-radius: 10px;
  padding: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 7V13C0 15.7614 2.23858 18 5 18H11C13.7614 18 16 15.7614 16 13V11C16 10.4477 15.5523 10 15 10C14.4477 10 14 10.4477 14 11V13C14 14.6569 12.6569 16 11 16H5C3.34315 16 2 14.6569 2 13V7C2 5.34315 3.34315 4 5 4H8V2H5C2.23858 2 0 4.23858 0 7Z' fill='white'/%3E%3Cpath d='M17 0H11C10.4477 0 10 0.447715 10 1C10 1.55228 10.4477 2 11 2H14.5L6.25 10.25C5.83579 10.6642 5.83579 11.3358 6.25 11.75C6.66421 12.1642 7.33579 12.1642 7.75 11.75L16 3.5V7C16 7.55228 16.4477 8 17 8C17.5523 8 18 7.55228 18 7V1C18 0.447715 17.5523 0 17 0Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}

.info h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 3px;
}

.email {
  font-size: 18px;
  background: #1d1d1d;
  padding: 4px 8px;
  border-radius: 8px;
  cursor: pointer;
}

.copy-btn {
  margin-left: auto;
  color: #fff;
  background: #b6b6b600;
  border: none;
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
}
.copy-btn:hover {
  color: #000;
  background: #b6b6b6;
}

.details p {
  margin-top: 30px;
  line-height: 1.65;
  opacity: 0.85;
  font-size: 17px;
}

footer {
    background: black;
    padding: 30px 5%;
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  overflow: visible;
}

.footer-links a:hover {
  color: #b6b6b6;
}

.footer-links a::before {
  content: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: none !important;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.socials {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.socials img {
    width: auto;
    height: 30px;
}

.footer-logo {
    width: 260px;
    height: 48px;
    background-image: url('img/logo-abc.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.copyright {
    text-align: center;
    margin-top: 20px;
}
