@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* default = DARK THEME (when tt-light-style-on is NOT present) */
	--page-bg: #0a0a0a;
	--page-section-bg: #0a0a0a;
	--page-text-main: #f5f5f5;
	--page-text-muted: #9a9a9a;

	--page-card-bg: #0a0a0a;
	--page-card-soft-bg: #0a0a0a;

	/* keep your accents */
	--primary: #0a0a0a;
	--accent: #ff3366;
	--accent-hover: #ff1149;
}


html {
	scroll-behavior: smooth;
}

section {
	scroll-margin-top: 70px;
}

body {
	font-family: 'Arial', sans-serif;
	background: var(--page-bg);
	color: var(--page-text-main);
	overflow-x: hidden;
}
/* When template turns LIGHT mode on */
body.tt-light-style-on {
	--page-bg: #ffffff;
	--page-section-bg: #ffffff;
	--page-text-main: #000000;
	--page-text-muted: #666666;

	--page-card-bg: #ffffff;
	--page-card-soft-bg: #f5f5f5;
}

.logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: transform 0.3s ease;
}

.logo-link:hover {
	transform: scale(1.05);
}

.logo-svg {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.logo-text {
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -2px;
	background: linear-gradient(135deg, #fff, var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/* Tablet screens */
@media (max-width: 900px) {
	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 120px;
	}

	.hero-left {
		padding-right: 0;
		max-width: 600px;
		margin: 0 auto;
	}

	/* .hero-stats {
		justify-content: center;
	} */

	.hero-right {
		display: none;
	}

	.grid {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}

}

/* Medium screens - stack navigation */
@media (max-width: 1070px) and (min-width: 769px) {
	nav {
		padding: 15px 30px;
	}

	.hero-container {
		padding: 0 30px;
	}

	.hero-title {
		font-size: 40px;
	}

	.hero-image-wrapper {
		max-width: 400px;
	}

	/* .tag {
		display: none;
	} */

	/* .featured-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.collections,
	.featured,
	.contact {
		padding-top: 120px;
	} */

	section {
		scroll-margin-top: 100px;
	}
}

/* Hero Section */
.hero {
	height: 83vh;
	position: relative;
	overflow: hidden;
	background: var(--page-section-bg);
}

.hero-banner {
	height: 100%;
}

.hero-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.hero-bg::before {
	content: '';
	position: absolute;
	width: 150%;
	height: 150%;
	top: -25%;
	left: -25%;
	/* background: conic-gradient(from 180deg at 50% 50%, #ff3366 0deg, #000 60deg, #ff3366 120deg, #000 180deg, #ff3366 240deg, #000 300deg, #ff3366 360deg); */
	/* animation: spin 20s linear infinite; */
	opacity: 0.15;
}

.hero-bg::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	/* background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%); */
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.hero-container {
	height: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 50px;
	position: relative;
	z-index: 2;
	align-items: center;
}

.hero-left {
	padding-right: 60px;
}

.hero-badge {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(255, 51, 102, 0.1);
	border: 1px solid var(--accent);
	color: var(--accent);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 30px;
	animation: slideInLeft 1s ease;
	position: relative;
	overflow: hidden;
}

.hero-badge::before {
	content: '';
	position: absolute;
	width: 30px;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.5), transparent);
	left: -30px;
	animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
	0% {
		left: -30px;
	}

	100% {
		left: calc(100% + 30px);
	}
}

.hero-title {
	font-size: clamp(36px, 5.5vw, 40px);
	font-weight: 400;
	line-height: 121%;
	margin-bottom: 25px;
	position: relative;
	text-align: left;
}

.hero-title .line {
	display: block;
	overflow: hidden;
}

.hero-title .line span {
	color: var(--page-text-main);
	display: inline-block;
	animation: slideUp 1s ease backwards;
}

.hero-title .line:nth-child(1) span {
	animation-delay: 0.2s;
}

.hero-title .line:nth-child(2) span {
	animation-delay: 0.3s;
}

.hero-title .line:nth-child(3) span {
	animation-delay: 0.4s;
}

.hero-title .accent {
	background: linear-gradient(90deg, #ff3366, #ff6690);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-style: italic;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		transform: translateX(-50px);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

.hero-description {
	font-size: 16px;
	line-height: 1.6;
	color: var(--page-text-muted);
	margin-bottom: 40px;
	animation: fadeIn 1s ease 0.6s backwards;
	text-align: left;
}

.hero-description-declare {
	font-size: 16px;
	line-height: 1.6;
	color: var(--page-text-muted);
	margin-bottom: 40px;
	animation: fadeIn 1s ease 0.6s backwards;
	text-align: left;
}

/*------------------------------ Video card ----------------------------*/
/* Home banner section spacing (optional, tweak as you like) */
#homeBanner {
  padding: 40px 0;             /* some breathing space around the video */
}

#endingBanner {
  padding: 40px 0;             /* some breathing space around the video */
}

/* Wrapper */
.video-card {
  position: relative;
  width: 100%;
  /* max-width: 1200px; */
  margin: 24px 0;
  overflow: hidden;
  /* border-radius: 16px; */
}

/* Give it a fixed aspect ratio (desktop: 16:9) */
.video-card::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16 / 9 = 0.5625 */
}

/* Make the video fill and crop inside this frame */
.video-card__video {
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  /* display: block; */
  object-fit: cover;     /* crop instead of letterbox */
  object-position: center 70%; /* focus lower area (red podium + cups) */
}

@media (max-width: 768px) {
  #homeBanner {
    padding: 16px 0;   /* optional: reduce side padding on mobile */
  }

  #endingBanner {
    padding: 16px 0;   /* optional: reduce side padding on mobile */
  }

  .video-card {
    max-width: 100%;
    border-radius: 0;  /* full-bleed on mobile, optional */
  }

  /* Taller ratio on mobile so KV looks bigger */
  .video-card::before {
    padding-top: 80%;  /* 4:5-ish, adjust if you want */
  }

  /* Taller ratio on mobile so KV looks bigger */
  .celebrate-video.video-card::before {
  	padding-top: 125%; /* 16 / 9 = 0.5625 */
  }

  /* Push frame further down so red box is really the focus */
  .video-card__video {
    object-position: center 75%;
  }

  .see-more-svg {
	width: 70% !important;
  }

  .see-more-btn::before {
		content: "";
		position: absolute;
		width: 68px;
		height: 68px;
		border-radius: 50%;
		background: #ffffff;
		/* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); */
	}
}

/* container under the KV */
.see-more-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0 0 0; /* adjust spacing as you like */
  margin-top: -160px;  /* pull it up to overlap slightly with the podium */
  /* margin-bottom: 56px; */
}

/* clickable circle */
.see-more-btn {
  position: relative;
  width: 200px;
  height: 200px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* white inner circle behind arrow */
.see-more-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15); */
}

/* SVG circle + text */
.see-more-svg {
  width: 75%;
  height: 100%;
}

/* circular text style */
.see-more-text {
  font-size: 16px;
  letter-spacing: 0.5px;
  /* text-transform: uppercase; */
  stroke: black;
  stroke-width: 0.5px;
  fill: transparent; /* match your Nissin red / accent color */
}

/* center arrow */
.see-more-arrow {
  position: absolute;
  left: 51%;
  top: 48%;

  /* square box so rotation doesn't shift layout */
  width: 85px;
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 85px;
  color: #ff0000; /* arrow color */
  z-index: 1;

  transform-origin: 50% 50%;
  /* center in the circle, angle will be overridden by JS */
  transform: translate(-50%, -50%) rotate(0deg);

  /* let JS control the angle directly; keep only color transition */
  /* transition: transform 0.2s linear, color 0.2s ease; */
  transition: color 0.2s ease;
}




/* hover effect */
/* .see-more-btn:hover .see-more-arrow {
  transform: translateX(4px);
} */
.see-more-btn:hover .see-more-text {
  fill: #000;
}

/* optional: slightly smaller on mobile */
/* mobile adjustments */
@media (max-width: 480px) {
  .see-more-btn {
    width: 120px;
    height: 120px;
  }
  .see-more-btn::before {
	height: 80px;
	width: 80px;
  }
  .see-more-svg {
	width: 85% !important;
  }
  /* .see-more-text {
    font-size: 15px;
  } */
  .see-more-section {
    margin-top: -115px;
    margin-bottom: 40px;
  }
  .see-more-arrow {
	font-size: 50px;
  }
}

@media (max-width: 600px) {
  .see-more-btn {
    width: 120px;
    height: 120px;

  }
  .see-more-btn::before {
	height: 80px;
	width: 80px;
  }
  .see-more-svg {
	width: 85% !important;
  }
  /* .see-more-text {
    font-size: 9.5px;
  } */
  .see-more-section {
    margin-top: -115px;
    margin-bottom: 40px;
  }
  .see-more-arrow {
	font-size: 50px;
	/* left: 18%;
    top: 12%;   */
  }
}

/* If you want full-bleed hero style across the screen, you can also do: */
/*
#homeBanner {
  padding: 0;
}
.video-card {
  max-width: none;
  border-radius: 0;
}
*/

/* Hide the play button if you don't need it anymore */
.video-card__play {
  display: none;
}

/*--------------------------- About box --------------------------------*/

/* outer section */
.case-section {
  /* padding: 72px 16px; */
  background: var(--page-section-bg);
}

/* big red frame around both columns */
.case-frame {
  max-width: 1400px;
  margin: 0 auto;
  /* border: 2px solid var(--accent); */
  display: flex;
  align-items: center;
  /* gap: 40px; */
  padding: 50px;
  box-sizing: border-box;
  background: var(--page-card-bg);
}

/* left & right columns */
.case-copy {
  flex: 1 1 50%;
}

.case-visual {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* inner red frame on the left panel */
.about-box-panel {
  border: 2px solid var(--nissin-red);
  /* background: #ffffff; */
}

/* header grid: 3 cells */
.about-box-header-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 2px solid var(--nissin-red);
}

.about-box-cell {
  min-height: 80px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  /* border-right: 2px solid var(--nissin-red); */
}

.about-box-cell:last-child {
  border-right: none;
}

/* step circle "01" */
.about-step-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* container for icon + number badge */
.about-step-circle {
  position: relative;
  display: inline-block;      /* shrink to the size of the icon */
}

/* Nissin icon itself */
.about-step-circle img {
  display: block;
  width: 100px;                /* adjust to match your design */
  height: auto;
}

/* 01 badge */
.about-step-number {
  position: absolute;
  bottom: 9px;              /* push it slightly below the icon */
  left: 50%;
  transform: translateX(-50%);/* center horizontally; tweak if needed */
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;        /* Nissin red (or use your var) */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  /* box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18); */
}

/* title cell */
.about-box-title {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
  color: var(--page-text-main);
}

/* empty cell: keep structure but visually calm */
.about-box-cell--empty {
  justify-content: flex-end;
}

/* body copy block */
.about-box-body {
  padding: 24px 24px 28px;
  /* background: #f7f7f7; */
  font-size: 15px;
  line-height: 1.7;
  color: var(--page-text-muted);
}

.about-box-body p {
  margin: 0 0 12px;
}

.about-box-body p:last-child {
  margin-bottom: 0;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 992px) {
  .case-frame {
    flex-direction: column;
    padding: 50px;
  }

  .about-box-header-grid {
    grid-template-columns: auto !important;
    grid-template-rows: auto auto auto !important;
  }

  .about-box-cell {
	justify-content: center;
  }
  
  .about-box-body {
	text-align: center;
  }

  .about-box-cell--empty {
    display: none; /* hide third empty cell on smaller screens */
  }
}

@media (max-width: 600px) {
  /* .case-section {
    padding: 56px 12px;
  } */

  .case-frame {
    /* padding: 20px; */
    gap: 20px;
  }

  /* .about-box-body {
    padding: 20px;
    font-size: 13px;
  } */

  .about-box-title {
	text-align: center;
    font-size: 18px;
  }

  /* .about-step-circle {
    width: 100%;
    height: 100%;
    font-size: 13px;
  } */
}

/*---------------------------- Anniversary -------------------*/
/* Whole section */
.anniversary {
  padding: 80px 0px;
  background: var(--page-section-bg);
}

/* 3-column flex row: left wave / text / right wave */
.anniversary-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* waves */
.anniversary-wave {
  flex: 0 0 auto;
}

.anniversary-wave img {
  display: block;
  width: 125px;          /* adjust to match your artwork */
  height: auto;
}

/* center text block */
.anniversary-content {
  max-width: 800px;      /* keeps text narrow like your expected design */
  text-align: center;
  padding: 0 48px;       /* space between waves and text */
}

.anniversary-title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--page-text-muted);
  margin: 0 0 20px;
}

.anniversary-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--page-text-muted);
  margin: 0 0 10px;
}

.anniversary-text:last-child {
  margin-bottom: 0;
}
/* Desktop: staggered waves */
@media (min-width: 769px) {
  .anniversary-layout {
    align-items: stretch;        /* allow children to sit at top/bottom */
  }

  .anniversary-wave--left {
    align-self: flex-end;        /* bottom of the text block */
  }

  .anniversary-wave--right {
    align-self: flex-start;      /* top of the text block */
  }

  .anniversary-content {
    align-self: center;          /* keep text vertically centered */
  }
}


/* ---------- Mobile / tablet: stack top–text–bottom ---------- */
@media (max-width: 768px) {
  .anniversary-layout {
    flex-direction: column;
  }

  .anniversary-wave img {
    width: 85px;          /* adjust to match your artwork */
  }


  .anniversary-wave--left {
    order: 0;
    margin-bottom: 40px;
    align-self: flex-start;
  }

  .anniversary-content {
    order: 1;
    padding: 0 50px;
  }

  .anniversary-wave--right {
    order: 2;
    margin-top: 20px;
    align-self: flex-end;
  }

  .anniversary-title {
    font-size: 20px;
  }
}

/*------------------------ Carousel slideshow ---------------------*/
/* Wrapper */
/* Outer section */
.nissin-triptych {
  padding: 72px 16px;
  background: var(--page-section-bg);
  display: flex;
  justify-content: center;
}

/* Carousel track: fixed ratio, centered */
.nissin-triptych-track {
  position: relative;
  width: min(100%, 1200px);
  aspect-ratio: 16 / 9;    /* adjust if you need a taller/shorter look */
  margin: 0 auto;
  overflow: visible;
}

/* Each slide is absolutely positioned relative to center */
.nissin-triptych-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32%;              /* width of each image; tweak to taste */
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 1s ease-out;
  will-change: transform, opacity, box-shadow;
}

.nissin-triptych-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* left position: moved left, slightly smaller, semi-transparent */
.nissin-triptych-item.pos-left {
  transform: translate(-155%, -50%) scale(0.96);
  opacity: 0.8;
  box-shadow: none;
}

/* center position: in the middle, bigger, with shadow */
.nissin-triptych-item.pos-center {
  transform: translate(-50%, -50%) scale(1.03);
  opacity: 1;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  z-index: 1;
}

/* right position: moved right, slightly smaller, semi-transparent */
.nissin-triptych-item.pos-right {
  transform: translate(55%, -50%) scale(0.96);
  opacity: 0.8;
  box-shadow: none;
}

/* (optional) on very small screens, make movement a bit tighter */
@media (max-width: 768px) {
  /* .nissin-triptych-track {
    aspect-ratio: 4 / 5;
  } */

  /* .nissin-triptych-item {
    width: 70%;
  } */

  .nissin-triptych-item.pos-left {
    transform: translate(-155%, -50%) scale(0.9);
  }

  .nissin-triptych-item.pos-center {
    transform: translate(-50%, -50%) scale(1.05);
  }

  .nissin-triptych-item.pos-right {
    transform: translate(55%, -50%) scale(0.9);
  }
}


/* ---------- MARKETING MATERIALS SECTION ---------- */

.mm-section {
  padding: 96px 24px 120px;
  background: var(--page-section-bg);
}

.mm-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* header: step label + copy side-by-side */
.mm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

/* step icon + number + title */
.mm-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* icon with number overlay (reuse idea from previous section) */
.mm-step-icon {
  position: relative;
  display: inline-block;
}

.mm-step-icon img {
  display: block;
  width: 72px;  /* adjust to your icon size */
  height: auto;
}

.mm-step-number {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e30613;     /* Nissin red */
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.mm-step-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--page-text-main);
}

/* intro paragraph */
.mm-intro {
  max-width: 520px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--page-text-muted);
}

/* IMAGE GRID */
.mm-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  grid-auto-rows: auto;
  column-gap: 48px;
  row-gap: 40px;
}

/* base image card */
.mm-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* positions to mimic the layout in your screenshot */

/* big magenta poster – bottom-left */
.mm-item--poster {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  margin-top: -260px;
}

/* square Mala Tang visual – top-right */
.mm-item--mala {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

/* promo card – bottom-right, shifted left & up a bit */
.mm-item--promo {
  grid-column: 2 / 3;
  grid-row: 3 / 4;

  justify-self: start;             /* align to left side of column 2 */
  transform: translate(-190px, 0px);
  /* tweak -40px values until it lines up exactly how you like */
}


/* optional subtle drop shadows to make images feel printed */
.mm-item--poster img,
.mm-item--promo img {
  aspect-ratio: 1 / 1;
  /* box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18); */
}

/* small decorative waves */
.mm-wave {
  position: absolute;
  width: 100px;
  height: auto;
}

/* positions roughly matching your reference – tweak as needed */
.mm-wave--left {
  left: 10%;
  bottom: 12%;
}

.mm-wave--right {
  right: 0%;
  /* right: -4%; */
  top: 55%;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .mm-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .mm-intro {
    max-width: none;
  }

  .mm-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
	padding: 0 35px;
  }

  .mm-item--poster,
  .mm-item--mala,
  .mm-item--promo {
    grid-column: 1 / -1;
    grid-row: auto;
	transform: unset;
	margin-top: 0;
  }

  .mm-wave--left {
    display: none;
  }

  .mm-wave--right {
    display: none;
  }
}

@media (max-width: 600px) {
  .mm-section {
    padding: 72px 16px 96px;
  }

  .mm-step-icon img {
    width: 60px;
  }

  .mm-step-label {
    font-size: 16px;
  }

  .mm-wave {
    width: 52px;
  }
}


/*-----------------------------------------------------------------------*/
/* SECTION BACKGROUND */
.display-stage {
  padding: 72px 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #EBFCFF 64.9%, #D2EFF5 100%);
}

/* STAGE AREA (desktop = 16:9, mobile overridden later) */
.display-stage-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

/* main product image centered */
.display-hero {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  width: 85%;           /* hero width relative to stage */
}

.display-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* base style for all decor elements */
.decor {
  position: absolute;
  pointer-events: none;
}

/* clouds */
.decor-cloud {
  width: 110px;
  height: auto;
}

.cloud-left {
  top: 50%;
  left: 3%;
  width: 60px;  
}

.cloud-left-up {
  top: 25%;
  left: 10%;
  width: 50px;
}

.cloud-right {
  top: 45%;
  right: 8%;
  width: 50px;
}

/* fireworks (desktop positions) */
.decor-fw {
  height: auto;
  /* width will vary slightly per asset; start with this */
  width: 180px;
}

.fw-first-top-left {
  top: -3%;
  left: -11%;
}

.fw-top-left {
  top: 35%;
  left: 14%;
}

.fw-first-top-right {
  top: -8%;
  right: 0%;
  width: 80px;
}

.fw-top-right {
  top: 13%;
  right: 9%;
  width: 120px;
}

.fw-bottom-left {
  bottom: 10%;
  left: 0%;
  width: 90px;
}

.fw-bottom-right {
  bottom: -6%;
  right: 0%;
}

/* dots (Figma ellipses) */
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-orange {
  background-color: #F15928;
}

.dot-yellow {
  background-color: #EBEA35;
}

.dot-blue {
  background-color: #5388c7;
}

/* desktop dot locations – tweak as needed */
.dot-orange.dot-1 {
  bottom: 33%;
  left: 3%;
  width: 8px;
  height: 8px;
}
.dot-orange.dot-2 {
  bottom: 0%;
  right: 18%;
}

.dot-orange.dot-3 {
  top: 39%;
  right: 19%;
  width: 8px;
  height: 8px;
}

.dot-blue.dot-1 {
  top: 0%;
  right: 20%;
  width: 8px;
  height: 8px;
}
.dot-blue.dot-2 {
  top: 39%;
  left: 11%;
}

.dot-yellow.dot-1 {
  top: 65%;
  right: 9%;
}
.dot-yellow.dot-2 {
  top: 6%;
  left: 29%;
}

/* ------------ MOBILE LAYOUT ------------ */
@media (max-width: 768px) {

  .display-stage-inner {
    /* max-width: 420px; */
    aspect-ratio: 3 / 4;   /* taller canvas */
  }

  /* hero smaller & a bit higher */
  .display-hero {
    width: 100%;
    bottom: 10%;
  }

  /* reposition clouds */
  .cloud-left {
    top: 45%;
    left: 85%;
  }
  .cloud-left-up {
    top: 15%;
    left: 10%;
  }
  .cloud-right {
    display: none;
  }

  /* fireworks repositioned like your tall mockup */
  .decor-fw {
    width: 110px;
  }

  .fw-first-top-right, 
  .fw-first-top-left,
  .dot.dot-blue.dot-1 {
  	display: none;
  }

  .fw-top-left {
    top: 8%;
    left: 64%;
    transform: translateX(-50%);
  }

  .fw-top-right {
    top: 92%;
    right: 0%;
    width: 70px;
  }

  .fw-bottom-left {
    top: 38%;
    left: -6%;
  }

  .fw-bottom-right {
	bottom: 5%;
    left: 30%;
  }

  /* dots for mobile */
  .dot-orange.dot-1 {
    bottom: 32%;
    left: 0%;
  }

  .dot-orange.dot-2 {
    bottom: 0%;
    left: 20%;
  }

  .dot-orange.dot-3 {
    top: 31%;
    right: 40%;
    width: 11px;
    height: 11px;
  }

  .dot-yellow.dot-1 {
    top: 55%;
    right: 9%;
  }

  .dot-yellow.dot-2 {
    top: 45%;
    left: 38%;
  }
}
@media (max-width: 540px) {
  .decor-fw:nth-of-type(4) {
  	width: 80px;
  	left:75%;
  }
  .cloud-left {
  	left: 75%;
  }

}
/*---------- Animate effects --------------*/
/* pulse scale for fireworks + dots */
.decor-fw,
.dot {
  animation: pulseScale 2s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

/* small variation so they don't all pulse in sync */
.decor-fw:nth-of-type(1),
.dot:nth-of-type(1) {
  animation-delay: 0.5s;
}
.decor-fw:nth-of-type(2),
.dot:nth-of-type(2) {
  animation-delay: 0.6s;
}
.decor-fw:nth-of-type(3),
.dot:nth-of-type(3) {
  animation-delay: 0.3s;
}
.decor-fw:nth-of-type(4),
.dot:nth-of-type(4) {
  animation-delay: 0.8s;
}

@keyframes pulseScale {
  0%, 100% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.15);   /* slightly larger – tweak if too much */
  }
}

/* subtle horizontal float for clouds */
.decor-cloud {
  animation: floatCloud 3s ease-in-out infinite;
  will-change: transform;
}
.cloud-left {
  animation-direction: alternate;          /* same keyframes, forwards */
}

.cloud-right {
  animation-direction: alternate-reverse;  /* plays keyframes reversed */
}

@keyframes floatCloud {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(25px);  /* move a little to the right */
  }
}

/*-----------------------------------------------------------------------*/

.hero-right {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 600px;
}

.hero-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.carousel-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
	transform: scale(1.1);
}

.carousel-slide.active {
	opacity: 1;
	transform: scale(1);
	animation: kenburns 12s ease-out;
}

@keyframes kenburns {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.05);
	}
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.carousel-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.indicator {
	width: 40px;
	height: 3px;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 3px;
}

.indicator.active {
	background: var(--accent);
	width: 60px;
}

.carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
	pointer-events: none;
}


@keyframes fadeInScale {
	from {
		transform: scale(0.8);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s ease infinite;
	z-index: 3;
}

.scroll-indicator span {
	display: block;
	width: 30px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 25px;
	position: relative;
}

.scroll-indicator span::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 50%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 10px;
	animation: scrollDot 2s ease infinite;
}

@keyframes bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

@keyframes scrollDot {
	0% {
		top: 10px;
		opacity: 1;
	}

	50% {
		top: 30px;
		opacity: 0.5;
	}

	100% {
		top: 10px;
		opacity: 1;
	}
}

/* Collections Grid */
.collections {
	padding: 120px 50px 100px;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-title {
	font-size: 48px;
	letter-spacing: -2px;
	margin-bottom: 20px;
}

.section-subtitle {
	color: var(--page-text-muted);
	font-size: 18px;
	letter-spacing: 2px;
	text-transform: uppercase;
}


.collection-thumbnail {
	width: 100%;
	height: 300px;
	/* background: linear-gradient(45deg, #2a2a2a, #1a1a1a); */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 50px;
	/* opacity: 0.3; */
	/* transition: transform 0.5s ease, opacity 0.5s ease; */
	position: relative;
	overflow: hidden;
}


.card-content {
	padding: 25px;
	background: var(--page-card-bg);
	color: var(--page-text-main);	
	/* background: rgba(0, 0, 0, 0.95); */
}


/* Animations */
@keyframes fadeInUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive */
@media (max-width: 768px) {
	/* nav {
		padding: 15px 20px;
	}

	.nav-links {
		display: none;
	}

	.menu-toggle {
		display: flex;
	}

	.mobile-nav {
		display: block;
	} */

	.hero-container {
		grid-template-columns: 1fr;
		padding: 0 50px;
		text-align: center;
	}

	.hero-left {
		padding-right: 0;
		padding-top: 100px;
	}

	.hero-title {
		font-size: 35px;
	}

	.hero-right {
		display: none;
	}


	section {
		scroll-margin-top: 60px;
	}

	.grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 15px;
	}
}


