* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}

.logo {
  font-weight: 800;
  letter-spacing: 2px;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #aaa;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover {
  color: #fff;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1506157786151-b8491531f063") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.content {
  position: relative;
  max-width: 700px;
  z-index: 2;
}

.tagline {
  font-size: 12px;
  letter-spacing: 3px;
  color: #bbb;
  margin-bottom: 20px;
}

h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.desc {
  color: #aaa;
  margin-bottom: 30px;
}

button {
  padding: 12px 30px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #fff;
  color: #000;
}

/* SCROLL */
.scroll {
  position: absolute;
  bottom: 20px;
  font-size: 20px;
  opacity: 0.6;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: #666;
  display: flex;
    justify-content: space-between;
    display: flex;
    gap: 25px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.social-icon {
  width: 20px !important;  /* Force the width */
  height: 20px !important; /* Force the height */
  display: block;
  filter: invert(1);      /* This turns black icons white so they show on your black background */
  cursor: pointer;
}

.social-icon {
  height: 24px; /* Adjust size as needed */
  width: auto;
  opacity: 0.6;
  transition: 0.3s;
}

.social-icon:hover {
  opacity: 1; /* Icons will brighten when you hover over them */
}