/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

:root {
  --brown-dark: #3a2e1e;
  --brown-main: #a97458;
  --brown-light: #dbc1ac;
  --cream: #f4e9dd;
  --muted: #6b5847;
}

body {
  font-family: 'Poppins', system-ui;
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

/* ===== HEADER ===== */
header {
  background: var(--brown-dark);
  color: #fff;
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}

header h2 { font-size: 20px; letter-spacing: 0.6px; }
nav a { color: var(--cream); text-decoration: none; font-weight: 500; }
nav a:hover { color: var(--brown-light); }

/* ===== NAV & HAMBURGER ===== */
nav ul.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 998;
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--cream);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  nav ul.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: var(--brown-dark);
    flex-direction: column;
    padding: 80px 30px 40px;
    gap: 20px;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
  }

  nav ul.nav-links.active {
    right: 0;
  }

  nav ul.nav-links li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(244, 233, 221, 0.08);
  }
}

/* ===== DISPLAY SECTION ===== */
.display {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.display-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/showcase.png');
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.08);
  transition: filter 1000ms ease, transform 1000ms ease;
  z-index: 0;
}

.display:hover .display-bg {
  filter: blur(0px);
  transform: scale(1);
}

.display .content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 380px;
  margin: 0;
  padding: 28px 24px;
  background: rgba(58, 46, 30, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  border: 1px solid rgba(244, 233, 221, 0.15);
  transition: filter 1000ms ease;
}

.display:hover .content {
  filter: blur(2px);
}

.display .content .logo {
  height: 140px;
  width: 140px;
}

.display .content .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-top: 14px;
  line-height: 1.3;
}

.display .content .text {
  font-size: 13px;
  color: rgba(244, 233, 221, 0.75);
  margin-top: 10px;
  line-height: 1.6;
}

/* ===== HERO — DESKTOP (image right, text left) ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 60px;
  padding: 60px 8%;
  position: relative;
  overflow: hidden;
}

.hero-img {
  flex: 1 1 42%;
  max-width: 42%;
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  display: block;
}

.hero-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h2 {
  font-size: clamp(2.8rem, 4.5vw, 5.5rem);
  line-height: 1.0;
  color: var(--brown-dark);
  font-weight: 800;
}

.hero-content p {
  font-size: 18px;
  letter-spacing: 5px;
  word-spacing: 4px;
  color: var(--muted);
}

.hero-actions {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.socials {
  margin-top: 10px;
  display: flex;
  gap: 18px;
}

.socials a {
  color: var(--brown-dark);
  font-size: 22px;
  letter-spacing: 0;
  transition: 0.2s;
}

.socials a:hover { color: var(--brown-main); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  border: 0;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: .18s ease;
  box-shadow: 0 4px 16px rgba(58, 46, 30, 0.06);
}

.btn.primary { background: var(--brown-main); color: #fff; }
.btn.outline { background: transparent; color: var(--brown-dark); border: 2px solid rgba(58,46,30,0.2); }
.btn.secondary { background: var(--brown-light); color: var(--brown-dark); }
.btn:hover { transform: translateY(-4px); }

/* ===== SHOWCASE ===== */
.showcase {
  padding: 60px 6%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6));
}

.showcase h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 28px;
  color: var(--brown-dark);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.showcase-item {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  border: 2px solid var(--brown-light);
  transition: .22s;
}

.showcase-item img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 12px;
}

.showcase-item h3 { font-size: 18px; color: var(--brown-dark); }

.showcase-item.clickable { cursor: pointer; }
.showcase-item.clickable:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.showcase-item.unclickable {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(60%);
}

.showcase-item.unclickable:hover { transform: none; box-shadow: none; }

.showcase-item.unclickable::after {
  content: "COMING SOON";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 15px;
  font-size: 14px;
  border-radius: 20px;
  pointer-events: none;
}

.showcase-item.unclickable a { pointer-events: none; }

.shop-now {
  display: inline-block;
  margin-top: 10px;
  padding: 9px 14px;
  background: var(--brown-main);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.shop-now:hover { background: var(--brown-dark); }

/* ===== TRENDING / NOMADIC ===== */
.trending {
  padding: 60px 20px;
  background: var(--cream);
}

.trending-header {
  text-align: center;
  margin-bottom: 40px;
}

.trending-header .tag {
  font-size: 14px;
  color: var(--brown-main);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.trending-header h2 {
  font-size: 32px;
  color: var(--brown-dark);
}

.trending-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.trending-image {
  overflow: hidden;
  border-radius: 12px;
}

.trending-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trending-image:hover img { transform: scale(1.05); }

.trending-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trending-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.trending-text .subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 15px;
  text-align: center;
}

.trending-text .description {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
  text-align: center;
}

.explore-btn {
  padding: 12px 20px;
  border: none;
  background: var(--brown-main);
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.explore-btn:hover { background: var(--brown-dark); transform: translateY(-2px); }

.trending-products {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.mini-product { text-align: center; transition: 0.3s; }

.mini-product img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.mini-product p { font-size: 14px; color: var(--brown-dark); }
.mini-product:hover { transform: translateY(-5px); }

/* ===== ENTERTAINMENT ===== */
.entertainment-section {
  padding: 60px 8%;
  background: #fff;
}

.entertainment-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.ent-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding-bottom: 15px;
  overflow: hidden;
  transition: 0.25s ease;
}

.ent-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.ent-card img { width: 100%; border-radius: 12px 12px 0 0; }
.ent-card h3 { font-size: 20px; padding: 12px 15px 0; }
.ent-card p { font-size: 14px; color: #555; padding: 0 15px; }
.ent-card a { display: inline-block; font-size: 14px; color: #0a66ff; font-weight: 600; margin: 10px 15px 5px; }


/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 70px 8%;
  background: var(--brown-dark);
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 48px;
}

.partners-tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 10px;
}

.partners-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 8px;
}

.partners-sub {
  font-size: 14px;
  color: rgba(244, 233, 221, 0.55);
}

.partners-track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track-wrapper::before,
.partners-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.partners-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--brown-dark), transparent);
}

.partners-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--brown-dark), transparent);
}

.partners-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: partnerScroll 12s linear infinite;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes partnerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(244, 233, 221, 0.06);
  border: 1px solid rgba(244, 233, 221, 0.12);
  border-radius: 14px;
  padding: 18px 28px;
  min-width: 220px;
  transition: 0.25s;
  cursor: pointer;
  white-space: nowrap;
}

.partner-card:hover {
  background: rgba(169, 116, 88, 0.15);
  border-color: var(--brown-main);
  transform: translateY(-3px);
}

.partner-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brown-main);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.partner-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
}

/* ===== ABOUT ===== */
.about {
  padding: 60px 20px;
  background: var(--cream);
  color: var(--brown-dark);
}

.about-hero { text-align: center; margin-bottom: 50px; }
.about-hero h1 { font-size: 40px; margin-bottom: 10px; }
.about-hero p { color: var(--muted); }

.about-story,
.about-mission {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

.about-story h2, .about-mission h2 { margin-bottom: 15px; }
.about-story p, .about-mission p { line-height: 1.6; color: #555; }

.about-values { margin-top: 60px; text-align: center; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.value {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.value:hover { transform: translateY(-5px); }

.about-cta { margin-top: 60px; text-align: center; }

.about-btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 20px;
  border: none;
  background: var(--brown-main);
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover { background: var(--brown-dark); }

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: white;
  padding: 50px 20px 20px;
}

footer p {
  font-size: 14px;
  color: #bbb;
  text-align: center;
  padding: 0.5rem 0;
}

.footer-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.footer-brand {
  max-width: 300px;
  text-align: center;
}

.footer-brand h2 { margin-bottom: 10px; }
.footer-brand p { color: #bbb; font-size: 14px; }

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer-col h3 { margin-bottom: 10px; }

.footer-col a {
  text-decoration: none;
  color: #bbb;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col a:hover { color: white; }

.footer-social { text-align: center; margin-top: 40px; }

.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
  cursor: pointer;
}

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