@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

	body {
		font-family: "Nunito", sans-serif;
		font-optical-sizing: auto;
		padding: 0;
		background-color: #000000;
		margin: 0;

		height: 100%;
		padding: 0;
		line-height: 1.8;
		display: block;
		flex-direction: column;
	}

	html {
		height: 100%;

	}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column; /* Stack logo + social icons vertically */
  justify-content: center;
  align-items: center;     /* Center horizontally */
  padding: 1rem 0 1.2rem;
  z-index: 1000;
  text-align: center;
}

header .logo {
  position: static;       /* remove absolute positioning */
  display: block;
  margin: 0 auto 0 auto; /* add a bit of spacing below */
}
	


.social-links {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  transform: none;
  margin-top: 2rem;
}

.social-icon img {
  width: 2.5rem;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
}

	main {

	}

.social-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  margin-top: 15rem;
  flex-wrap: wrap;
}
	.yt-wrapper {
		transform: scale(0.8);
		transform-origin: center top;
	}

	.yt-short {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 320px;
		height: 560px;
		background-color: #000000;
		border-radius: 12px;
		overflow: hidden;
		margin: 0;
		box-shadow: 0 0 6px #ffffff;
	}

	.tweet-wrapper{
		transform: scale(0.8);
		transform-origin: center top;
	}

.tweet-card {
  max-width: 320px;
  width: 100%;
  height: 560px;
  padding: 10px;
  border-radius: 12px;
  background: #1c1c1c;
  box-shadow: 0 0 6px #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

	.tiktok-wrapper {
		transform: scale(0.6);
		transform-origin: center top;
	}

.tiktok-card {
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
  background: #1c1c1c;
  box-shadow: 0 0 6px #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
  padding: 10px;
}


	footer {
		background-color: #000000;
		color: #ffffff;
		padding: 2rem;
		position: fixed;
		bottom: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: space-between;
		gap: 1rem;
		width: 100%;
		height: 5rem;
		box-sizing: border-box;
	}


	.copyright {
		font-size: .8rem;
		color: #ffffff;
		letter-spacing: 0.02rem;
		left: 45%;
		position: fixed;

		text-align: left;
	}


/* ================================================
   MOBILE & TOUCH-FRIENDLY EXPERIENCE
   ================================================ */

/* --- Tablet Optimization --- */
@media (max-width: 1024px) {
 header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column; /* Stack logo + social icons vertically */
  justify-content: center;
  align-items: center;     /* Center horizontally */
  padding: 1rem 0 1.2rem;
  z-index: 1000;
  text-align: center;
}

/* Center the logo */
header .logo {
  position: static;       /* remove absolute positioning */
  display: block;
  margin: 0 auto 0.6rem auto; /* add a bit of spacing below */
}

/* Center the social icons under the logo */
.social-links {
  position: static;       /* remove absolute positioning */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  transform: none;
  margin-top: 0.25rem;
}

  footer {
    position: relative;
    height: auto;
    text-align: center;
    padding: 1rem 0;
  }

  .copyright {
    position: static;
    text-align: center;
    font-size: 0.75rem;
  }
}

/* --- Mobile-First Redesign --- */
@media (max-width: 768px) {
  body {

  }

  .social-showcase {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1rem;
    margin-top: 8rem;
    justify-content: flex-start;
    align-items: stretch;
  }

  .yt-wrapper,
  .tweet-wrapper,
  .tiktok-wrapper {
    flex: 0 0 80%;
    max-width: 80%;
    scroll-snap-align: center;
    transform: scale(1);
    transition: transform 0.3s ease;
  }

  .yt-wrapper:active,
  .tweet-wrapper:active,
  .tiktok-wrapper:active {
    transform: scale(0.97);
  }

  .yt-short,
  .tweet-card,
  .tiktok-card {
    width: 100%;
    height: auto;
    min-height: 420px;
  }

  .social-icon img {
    width: 1.8rem;
  }

  nav a {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
  }

  /* smooth scrolling for touch */
  .social-showcase::-webkit-scrollbar {
    display: none;
  }

  .social-showcase {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  footer {
    padding: 1rem 0.5rem;
  }
}

/* --- Ultra Small Screens --- */
@media (max-width: 480px) {
  header {
    padding: 0.8rem;
  }

  .social-showcase {
    margin-top: 6rem;
    gap: 1rem;
  }

  .yt-wrapper,
  .tweet-wrapper,
  .tiktok-wrapper {
    flex: 0 0 90%;
    max-width: 90%;
  }

  .yt-short,
  .tweet-card,
  .tiktok-card {
    min-height: 380px;
  }


}

