/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #ffffff;
  color: #000;
  font-family: 'Helvetica Neue', sans-serif;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Header */
.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.header-logo {
  max-height: 40px;
  width: auto;
}

/* Main Content */
#app {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12rem;
  position: relative;
  width: 500px;
  height: 240px;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 4s ease-in-out infinite;
  transition: transform 0.5s ease, z-index 0.5s ease; /* Merged here */
}

/* Carousel Positions */
.left-position {
  transform: translateX(-400px) scale(1);
  z-index: 1;
}

.center-position {
  transform: translateX(0) scale(1.5);
  z-index: 2;
}

.right-position {
  transform: translateX(400px) scale(1);
  z-index: 1;
}

.icon-scale {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.icon-scale:hover {
  transform: scale(2.5); /* Adjust hover size */
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}

.icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

#icon-tv:hover {
  transform: scale(2.5); /* Make TV hover larger */
}


/* Footer */
.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-logo {
  width: 180px;
  max-width: 60vw;
  height: auto;
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Embed inside center icon */
.center-embed {
  width: 280px;
  height: 158px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}
