@font-face{
    font-family: myFont;
    src: url(Assets/Baby\ Doll.otf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: myFont, Helvetica, sans-serif;
  font-size: 18px;
}

body {
  background: #fff;
  color: #111;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #111;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo h2 {
  color: #ff6600;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.side-bar ul {
  display: flex;
  gap: 2rem;
  height: 100%;
  width: 100%;
  align-items: center;
  list-style: none;
}

.side-bar ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.side-bar ul li a:hover {
  color: #ff6600;
}

.copy-btn {
  background: #ff6600;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.copy-btn:hover {
  background: #e65c00;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.copy-btn:active {
  transform: scale(0.95);
}

.hero-sec {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 0 1rem;
}

.hero-sec video {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-sec button {
  background: #ff6600;
  border: none;
  padding: 0.8rem 1.5rem;
  margin: 0.5rem;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
}

.hero-sec button:hover {
  background: #e65c00;
  transform: translateY(-2px);
}
.hero-sec .buy-now{
    border: 2px #e65c00 solid;
    background-color: white;
    color: #111;
}
.about-sec {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;

  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  flex-shrink: 0;
  padding: 5px; /* space for border effect */
  transition: all 0.3s ease;
}



.about-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  cursor: pointer;
  max-width: 600px;
  padding: 1.2rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff, #f1f1f1);
  transition: all 0.3s ease;
}

.about-content:hover {
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

/* Alternate left-right for dialogue effect */
.about:nth-child(even) {
  flex-direction: row-reverse;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.5rem;
  }

  .about:nth-child(even) {
    flex-direction: column;
  }

  .about img {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
  }

  .about-content {
    max-width: 100%;
    width: 100%;
    text-align: left;
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }
}


.meme-gallery {
  width: 100%;
  overflow: hidden;
  text-align: center;
  background: #ffffff;
  color: #e65c00;
  padding: 20px 0;
}

.meme-gallery h2 {
  margin-bottom: 15px;
}

.slider {
  width: 100%;
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
  cursor: grab;
}

.slider:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 10px;
  will-change: transform;
}

.slider-track img {
  max-width: 200px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-track img {
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .slider-track img {
    max-width: 100px;
  }
}



@media (max-width: 768px) {
  .side-bar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 220px;
    height: 100%;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease-in-out;
    padding: 2rem;
  }

  .side-bar.active {
    right: 0;
  }

  .side-bar ul {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }
}
.social-footer {
  position: relative; /* allows absolute positioning inside */
  display: flex;
  justify-content: space-between; /* left and right content */
  align-items: flex-end;
  padding: 2rem;
  background: #ffffff;
  color: #000000;
  flex-wrap: wrap;
  min-height: 300px; /* ensures video fits */
  gap: 1rem;
}

.footer-video video {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 260px;
  height: auto;
}

.footer-community {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer-community .social-links {
  display: flex;
  gap: 1rem;
}

/* Responsive: stack on top */
@media (max-width: 768px) {
  .social-footer {
    flex-direction: column-reverse;
    align-items: center;
    min-height: auto;
  }

  .footer-video video {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 300px;
  }

  .footer-community {
    align-items: center;
    text-align: center;
  }
}


.footer-community h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #ff6600;
}

.footer-community p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #000000;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.social-links a {
  color: #000000;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: #ff6600;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .social-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-video video {
    width: 100%;
    max-width: 400px;
    display: none;
  }

  .footer-community {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}


.scrolling-text {
  width: 100%;
  overflow: hidden;
  background: white;
  color: black;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem 0;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

.scroll-container {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}

.scroll-container span {
  display: inline-block;
  padding-right: 3rem; /* spacing between repeated text */
}

/* Seamless scroll */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* scroll half the width (since text is doubled) */
  }
}
