/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #fff;
   background-color: #2c2c2c;
  overflow-x: hidden;
}

/* Navbar */
/* --- NAVBAR Styling --- */
.navbar {
  width: 100%;
  background-color: #000;
  color: white;
  padding: 10px 1%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000;
}

/* Left: Logo + Nav Menu */
.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.etv-logo {
  height: 30px;
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  text-transform: uppercase;
}

.nav-menu a.active {
  color: red;
  font-weight: bold;
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: red;
}

/* Right: Search + Login + Subscribe */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-icon {
  font-size: 18px;
  cursor: pointer;
}

.login {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.subscribe-btn {
  background: #b71c1c;
  padding: 6px 16px;
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.subscribe-btn:hover {
  background: #d32f2f;
  transform: scale(1.05);
}


/* Responsive */
@media (max-width: 768px) {
  .navbar {
    /* flex-direction: column; */
    align-items: flex-start;
    padding: 10px;
  }

  .nav-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-right {
    margin-top: 10px;
    gap: 10px;
  }

  .originals-track {
    width: 200%;
}

.kids-track {
    width: 200%;
}

}




.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100vh;
  background: #121212;
  z-index: 2000;
  transition: left 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.mobile-drawer.open {
  left: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-close {
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.drawer-buttons {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-login,
.drawer-subscribe {
  padding: 10px;
  text-align: center;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.drawer-login {
  border: 1px solid white;
  color: white;
}

.drawer-subscribe {
  background: linear-gradient(to right, #c62828, #d32f2f);
  color: white;
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.drawer-menu a {
  text-decoration: none;
  padding: 10px;
  background: #1e1e1e;
  border-radius: 6px;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
}

.drawer-menu a.active {
  background: linear-gradient(to right, #b71c1c, #d32f2f);
}

.drawer-footer {
  margin-top: 40px;
  color: gray;
  font-size: 14px;
}

.store-icons i {
  font-size: 20px;
  margin-right: 10px;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-left .nav-menu {
    display: none;
  }

  .nav-right {
    display: none;
  }
}



@media (max-width: 395px) {
  .hero-buttons button {
    margin: 6px;
  }
}



.kids-section {
  background-color: #2c2c2c;
  padding: 1.5rem 2rem;
  color: white;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.kids-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  scroll-snap-type: x mandatory;
  padding-top: 10rem;
}

.kids-slider::-webkit-scrollbar {
  display: none;
}

.kids-card {
  flex: 0 0 auto;
  width: 160px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #000;
  transition: transform 0.3s ease;
}

.kids-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-card:hover {
  transform: scale(1.05);
}



.site-footer {
  /* background-color: #2d2e31; */
  color: #fff;
  font-family: sans-serif;
  padding-top: 1rem;
}

.footer-top {
  background-color: #1c1c1c;
  padding: 0.5rem 1rem;
  text-align: center;
  margin-top: 6rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  padding: 1.5rem 1rem;
  background-color: transparent;
}

.footer-logo img {
  height: 36px;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  font-size: 0.9rem;
  color: #bbb;
}

.footer-social,
.footer-apps,
.footer-availability {
  text-align: center;
}

.footer-social h4,
.footer-apps h4,
.footer-availability h4 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.social-icons a {
  display: inline-block;
  background: #555;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  margin: 0 5px;
  border-radius: 50%;
  font-size: 1rem;
  text-align: center;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #777;
}

.app-buttons img {
  height: 40px;
  margin: 0 5px;
}

.platform-logos img {
  width: 60%;
  margin: 0 4px;
  vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    gap: 0.8rem;
    font-size: 0.9rem;
  }
}




/* login popup base */
.modern-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

.login-card {
  position: relative;
  width: 90%;
  max-width: 400px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: white;
  text-align: center;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(20px);
  animation: slideUp 0.3s ease-out;
}

/* Animation */
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
}

.input-group {
  margin: 1rem 0;
}

.login-card input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

.login-card input::placeholder {
  color: #bbb;
}

.login-action {
  margin-top: 1rem;
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #ff2d55, #ff5e3a);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
}

.login-footer {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #bbb;
}

.login-footer a {
  color: #ff7675;
  text-decoration: none;
}
