/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #faf7f2;
  color: #2b2b2b;
  line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */
.toys-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  background: #fff;
  border-bottom: 1px solid #e8e2d9;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.toys-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toys-logo-area img {
  height: 45px;
}

.toys-brand-text {
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 20px;
  color: #5a4632;
}

.toys-nav-links {
   list-style: none;
   display: flex;
   
   gap: 25px;
   
   flex-wrap: wrap;
   justify-content: center;
}

.toys-nav-links a {
  text-decoration: none;
  color: #3a2f24;
  font-size: 17px;
  font-weight: 600;

  letter-spacing: 0.5px;
   
  transition: 0.3s;
}

.toys-nav-links a:hover {
  color: #a8743a;
}

 /* =========================
   HERO SECTION (SLIDESHOW FIXED)
========================= */

.toys-hero {

  position: relative;

  width: 90%;

  max-width: 1400px;

  aspect-ratio: 16 / 9;

  margin: 60px auto;

  overflow: hidden;

  border-radius: 24px;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* SLIDESHOW WRAPPER */
.toys-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;

  overflow: hidden;
  z-index: 0;
}

/* SLIDES */
.toys-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: none;
   
  opacity: 0;

  transition: opacity 1.2s ease-in-out;
}

/* ACTIVE SLIDE */
.toys-slideshow .slide.active {
  opacity: 1;
  transform: scale(1);
}

/* OVERLAY */
.toys-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,20,10,0.25);
  z-index: 1;
}

/* HERO CONTENT */
.toys-hero-content {
  position: relative;
  z-index: 2;

  color: #fff;
  max-width: 800px;
  padding: 20px;
}

/* TAG */
.toys-tag {
  font-size: 13px;
  letter-spacing: 3px;
  opacity: 0.9;
  margin-bottom: 15px;
}

/* TITLE */
.toys-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* SUBTEXT */
.toys-subtext {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* BUTTON */
.toys-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #c08a4b;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.toys-btn:hover {
  background: #a8743a;
  transform: translateY(-2px);
}
/* =========================
   SLIDESHOW BUTTONS (NEW)
========================= */
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;

  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;

  font-size: 26px;
  padding: 10px 14px;
  cursor: pointer;

  border-radius: 50%;
  transition: 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}
/* =========================
   SOUND BUTTON
========================= */

.sound-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 4;

  background: rgba(255,255,255,0.2);
  color: white;

  border: none;
  padding: 10px 18px;

  border-radius: 30px;
  cursor: pointer;

  backdrop-filter: blur(8px);

  transition: 0.3s;
}

.sound-btn:hover {
  background: rgba(255,255,255,0.35);
}
/* =========================
   HERO INTRO SECTION
========================= */

.hero-intro {
  padding: 80px 20px;
  background: #faf7f2;
  text-align: center;
}

.hero-intro .toys-hero-content {
  position: static;
  max-width: 850px;
  margin: auto;
  color: #2b2b2b;
}

.hero-intro .toys-tag {

  color: #8b5e34;

  font-size: 16px;

  font-weight: 700;

  letter-spacing: 4px;

  text-transform: uppercase;

  margin-bottom: 22px;
}

.hero-intro h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #2f241b;
  margin-bottom: 20px;
}

.hero-intro .toys-subtext {
  color: #3f342b;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 35px;
}

.hero-intro .toys-btn {
  display: inline-block;
}
/* =========================
   COLLECTIONS
========================= */

.collections-section {
  padding: 80px 50px;
  text-align: center;
  background: #faf8f5;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #a8743a;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #3a2f24;
}

.section-subtext {
  max-width: 650px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.7;
}

/* GRID */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* CARD */
.collection-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  transition: all 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
}

/* TITLE */
.collection-card h3 {
  margin-bottom: 10px;
  color: #3a2f24;
  font-size: 22px;
}

/* LABEL */
.collection-label {
  font-size: 13px;
  color: #a8743a;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* DESCRIPTION */
.collection-card p {
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   BRAND STORY
========================= */

.brand-story {
  padding: 110px 20px;
  background: #f5f1ea;
  text-align: center;
}

.story-container {
  max-width: 950px;
  margin: auto;
}

.story-tag {
  font-size: 13px;
  letter-spacing: 4px;
  color: #a8743a;
  margin-bottom: 18px;
}

.brand-story h2 {
  font-size: 48px;
  color: #2f241b;
  margin-bottom: 35px;
  line-height: 1.2;
}

.story-container p {
  font-size: 18px;
  line-height: 1.9;
  color: #5b4a3b;

  margin-bottom: 28px;
}

/* =========================
   FOOTER
========================= */

.toys-footer {
  padding-top: 70px;
  background: #151515;
  color: #f5f5f5;
}

/* WRAPPER */

.footer-wrapper {
  max-width: 1400px;
  margin: auto;
  padding: 0 80px 70px;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 50px;
}

   
/* FOOTER COLUMN */

.footer-column {

  display: flex;
  flex-direction: column;

  align-items: flex-start;

  justify-content: flex-start;

  text-align: left;
}

/* HEADINGS */

.footer-column h3 {
  margin-bottom: 28px;

  color: #fff;

  font-size: 22px;
}

/* LINKS */

.footer-column a {
  display: block;

  margin-bottom: 16px;

  color: #cfcfcf;

  text-decoration: none;

  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #c08a4b;

  transform: translateX(4px);
}

/* PARAGRAPHS */

.footer-column p {
  margin-bottom: 22px;

  color: #cfcfcf;

  font-size: 15px;

  line-height: 1.8;
}

/* SOCIAL ROW */
.social-row {
  margin-bottom: 18px;
}

/* LINK */
.social-row a {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #cfcfcf;
  text-decoration: none;

  font-size: 15px;
  line-height: 1.5;

  transition: 0.3s ease;
}

.social-row a:hover {
  color: #c08a4b;
}

/* ICON */
.social-icon {
  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;

  color: #fff;

  border-radius: 4px;

  padding: 4px;

  flex-shrink: 0;
}

/* FACEBOOK */
.facebook {
  background: #1877F2;
}

/* INSTAGRAM */
.instagram {
  background: #E4405F;
}
.email-item {
  display: flex;
  align-items: baseline;
  gap: 8px;

  flex-wrap: wrap;
}

.email-item a {
  color: #cfcfcf;
  text-decoration: none;
}
.email-item a {
  display: inline;
  margin-bottom: 0;
}

/* ADDRESS ALIGNMENT */
.footer-column:last-child p {
  text-align: left;
  align-items: flex-start;
}

/* CONTACT ICON ROWS */

.contact-item {

  display: flex;

  align-items: flex-start;

  gap: 10px;

  width: 100%;
}

.contact-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item a {
  display: inline;
  margin-bottom: 0 !important;
}
/* =========================
   COPYRIGHT
========================= */

.footer-bottom {
  padding: 25px 20px 40px;

  text-align: center;

  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  margin: 0 auto;

  color: #cfcfcf;

  font-size: 15px;

  line-height: 1.6;
}




/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 0 25px 60px;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }

  .footer-column a {
    width: auto;
  }

  .linkedin-row {
    justify-content: center;
  }

  .contact-item,
  .email-item {
    justify-content: center;
  }

  .footer-column:last-child p {
    text-align: center;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }

  .toys-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {

  .toys-navbar {

    flex-direction: column;

    gap: 14px;

    padding: 18px 20px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .toys-hero h1 {
    font-size: 28px;
  }

  .collections-section,
  .brand-story {
    padding: 50px 20px;
  }
}

/* =========================
   MOBILE HERO FIX
========================= */

@media (max-width: 768px) {

  .toys-hero {

    width: 95%;

    aspect-ratio: 16 / 9;

    margin: 30px auto;

    min-height: auto;

    height: auto;
  }
}

/* =========================
   MOBILE SLIDESHOW BUTTONS
========================= */

@media (max-width: 768px) {

  .prev-btn,
  .next-btn {

    font-size: 18px;

    padding: 8px 10px;
  }

  .prev-btn {

    left: 10px;
  }

  .next-btn {

    right: 10px;
  }
}

/* =========================
   MOBILE STORY SECTION
========================= */

@media (max-width: 768px) {

  .brand-story h2 {

    font-size: 34px;
  }

  .story-container p {

    font-size: 16px;

    line-height: 1.8;
  }
}
/* =========================
   MOBILE COLLECTION CARDS
========================= */

@media (max-width: 600px) {

  .collection-card {

    padding: 28px 20px;
  }
}
