/* Elegant Minimalist Hero 2025 */

.home-hero,
.home-hero *,
.home-hero *::before,
.home-hero *::after {
  box-sizing: border-box;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  overflow-x: hidden;
  padding: 100px 40px 40px;
  width: 100%;
  max-width: 100vw;
}

/* Subtle Grid Background - More refined */
.home-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 99px, rgba(0, 0, 0, 0.008) 99px, rgba(0, 0, 0, 0.008) 100px),
    repeating-linear-gradient(90deg, transparent, transparent 99px, rgba(0, 0, 0, 0.008) 99px, rgba(0, 0, 0, 0.008) 100px);
  z-index: 0;
}

/* Geometric Floating Shapes - More Subtle */
.home-hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0.12;
}

.shape-circle {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(233, 30, 99, 0.2);
  border-radius: 50%;
  top: 12%;
  right: 12%;
  animation: float-shape 12s ease-in-out infinite;
}

.shape-square {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.06), rgba(233, 30, 99, 0.03));
  bottom: 18%;
  left: 10%;
  border-radius: 4px;
  animation: float-shape 10s ease-in-out infinite reverse;
}

.shape-line {
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.2), transparent);
  top: 60%;
  right: 15%;
  transform: rotate(-45deg);
  animation: rotate-shape 15s linear infinite;
}

@keyframes float-shape {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

@keyframes rotate-shape {
  from {
    transform: rotate(-45deg);
  }
  to {
    transform: rotate(315deg);
  }
}

/* Main Container - Bento Grid Layout */
.home-hero__container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

/* Large Kanji Block - Elegant */
.home-hero__kanji-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  position: relative;
  opacity: 0;
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  overflow: hidden;
}

.home-hero__kanji-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.2), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.home-hero__kanji-block:hover::before {
  width: 400px;
  height: 400px;
}

.home-hero__kanji-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(233, 30, 99, 0.15), 0 0 60px rgba(233, 30, 99, 0.1);
}

.home-hero__kanji-block::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid rgba(233, 30, 99, 0.1);
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home-hero__kanji-block:hover::after {
  opacity: 1;
}

.kanji-char {
  font-family: 'Zen Maru Gothic', serif;
  font-size: 160px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.home-hero__kanji-block:hover .kanji-char {
  color: #E91E63;
  filter: drop-shadow(0 4px 16px rgba(233, 30, 99, 0.4));
  transform: scale(1.05);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Content Block */
.home-hero__content {
  display: flex;
  flex-direction: column;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Year Tag - Minimal */
.year-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 18px;
  background: transparent;
  color: #E91E63;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  border: 1px solid rgba(233, 30, 99, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.year-tag:hover {
  background: rgba(233, 30, 99, 0.05);
  border-color: rgba(233, 30, 99, 0.5);
}

/* Title - Elegant Typography */
.home-hero__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  line-height: 1.1;
}

.title-line {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  text-transform: none;
  position: relative;
  display: inline-block;
}

.title-line--accent {
  color: #E91E63;
  position: relative;
  padding-left: 0;
  font-weight: 400;
}

.title-line--accent::before {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Meta Info - Minimal */
.home-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #666;
}

.meta-divider {
  color: rgba(233, 30, 99, 0.4);
  font-weight: 300;
}

/* Description Text - Elegant */
.home-hero__text {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin: 0;
  max-width: 480px;
  border-left: 2px solid rgba(233, 30, 99, 0.2);
  padding-left: 20px;
}

/* Elegant Buttons */
.home-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-brutal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-brutal::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn-brutal:hover::before {
  width: 300px;
  height: 300px;
}

.btn-brutal:hover {
  background: linear-gradient(135deg, #E91E63 0%, #ff1f70 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(233, 30, 99, 0.4), 0 0 40px rgba(233, 30, 99, 0.2);
}

.btn-brutal:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(233, 30, 99, 0.3);
}

.btn-brutal span {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.btn-brutal:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: #1a1a1a;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Visual Box - Elegant */
.home-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
  position: relative;
  z-index: 3;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.visual-box {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  overflow: hidden;
}

.visual-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(233, 30, 99, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(0deg);
  transition: transform 0.6s ease;
}

.visual-box:hover::before {
  transform: rotate(90deg);
}

.visual-box:hover {
  transform: translateY(-8px) scale(1.02) rotate(2deg);
  box-shadow: 0 16px 48px rgba(233, 30, 99, 0.15), 0 0 60px rgba(233, 30, 99, 0.1);
}

.visual-box img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: grayscale(0%) contrast(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: all 0.4s ease;
  opacity: 0.9;
}

.visual-box:hover img {
  opacity: 1;
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1.05) drop-shadow(0 8px 20px rgba(233, 30, 99, 0.2));
}

.visual-accent {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(255, 105, 180, 0.1));
  border-radius: 8px;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
  filter: blur(2px);
}

.visual-box:hover .visual-accent {
  opacity: 1;
  top: 16px;
  right: 16px;
  filter: blur(4px);
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.25), rgba(255, 105, 180, 0.15));
}

/* Bottom Info Bar - Minimal */
.home-hero__info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.95);
  color: #666;
  padding: 20px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  z-index: 10;
  opacity: 0;
  animation: slideInBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-item {
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: none;
  color: #888;
  transition: color 0.3s ease;
}

.info-item:hover {
  color: #E91E63;
}

/* Responsive Design */

/* Large Tablets & Small Desktops (1200px and below) */
@media (max-width: 1200px) {
  .home-hero {
    padding: 100px 32px 40px;
  }

  .home-hero__container {
    grid-template-columns: auto 1fr;
    gap: 32px;
  }

  .home-hero__visual {
    display: none;
  }

  .home-hero__kanji-block {
    width: 220px;
    height: 220px;
  }

  .home-hero__kanji-block::after {
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
  }

  .kanji-char {
    font-size: 120px;
  }

  .title-line {
    font-size: clamp(32px, 4.5vw, 56px);
  }

  .shape-line {
    width: 150px;
  }
}

/* Tablets (868px and below) */
@media (max-width: 868px) {
  .home-hero {
    padding: 90px 24px 90px;
    min-height: auto;
  }

  .home-hero__container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .home-hero__kanji-block {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .home-hero__kanji-block::after {
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
  }

  .kanji-char {
    font-size: 90px;
  }

  .home-hero__content {
    text-align: center;
  }

  .content-wrapper {
    align-items: center;
  }

  .year-tag {
    align-self: center;
  }

  .home-hero__title {
    align-items: center;
  }

  .title-line {
    font-size: clamp(28px, 6vw, 48px);
  }

  .title-line--accent {
    padding-left: 0;
  }

  .title-line--accent::before {
    display: none;
  }

  .home-hero__meta {
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-hero__text {
    text-align: center;
    margin: 0 auto;
    border-left: none;
    border-top: 3px solid #E91E63;
    padding-left: 0;
    padding-top: 16px;
  }

  .home-hero__actions {
    justify-content: center;
  }

  .shape-circle,
  .shape-square,
  .shape-line {
    display: none;
  }

  .home-hero__info-bar {
    padding: 14px 24px;
  }

  .info-item {
    font-size: 9px;
  }
}

/* Mobile Landscape & Small Tablets (640px and below) */
@media (max-width: 640px) {
  .home-hero {
    padding: 80px 12px 90px;
    overflow-x: hidden;
    max-width: 100vw;
  }

  .home-hero__container {
    gap: 20px;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .home-hero__kanji-block {
    width: 120px;
    height: 120px;
    max-width: calc(100vw - 24px);
    max-height: calc(100vw - 24px);
    flex-shrink: 0;
  }

  .home-hero__kanji-block::after {
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-width: 2px;
  }

  .kanji-char {
    font-size: clamp(48px, 11vw, 68px);
  }

  .content-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .year-tag {
    font-size: 10px;
    padding: 4px 14px;
    max-width: fit-content;
  }

  .title-line {
    font-size: clamp(22px, 6.5vw, 34px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    hyphens: auto;
  }

  .home-hero__meta {
    font-size: 11px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .home-hero__text {
    font-size: 14px;
    padding-left: 16px;
    line-height: 1.6;
    max-width: 100%;
  }

  .home-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 8px;
    max-width: 100%;
  }

  .btn-brutal,
  .btn-outline {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
    box-sizing: border-box;
  }

  .home-hero__info-bar {
    flex-direction: column;
    gap: 8px;
    padding: 16px 12px;
    text-align: center;
    left: 0;
    right: 0;
    width: 100%;
  }

  .info-item {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
  .home-hero {
    padding: 70px 10px 80px;
  }

  .home-hero__container {
    gap: 18px;
  }

  .home-hero__kanji-block {
    width: 100px;
    height: 100px;
    max-width: calc(100vw - 20px);
    max-height: calc(100vw - 20px);
  }

  .kanji-char {
    font-size: clamp(42px, 10vw, 56px);
  }

  .year-tag {
    font-size: 9px;
    padding: 3px 12px;
    letter-spacing: 2px;
  }

  .title-line {
    font-size: clamp(19px, 7vw, 28px);
  }

  .home-hero__meta {
    font-size: 10px;
    gap: 6px;
  }

  .home-hero__text {
    font-size: 13px;
    padding-left: 14px;
  }

  .btn-brutal,
  .btn-outline {
    padding: 12px 18px;
    font-size: 13px;
  }

  .btn-arrow {
    font-size: 16px;
  }

  .home-hero__info-bar {
    padding: 14px 10px;
    gap: 6px;
  }

  .info-item {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
}

/* Small Mobile (375px and below) */
@media (max-width: 375px) {
  .home-hero {
    padding: 60px 8px 70px;
  }

  .home-hero__container {
    gap: 16px;
  }

  .home-hero__kanji-block {
    width: 90px;
    height: 90px;
    max-width: calc(100vw - 16px);
    max-height: calc(100vw - 16px);
  }

  .home-hero__kanji-block::after {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
  }

  .kanji-char {
    font-size: clamp(38px, 9vw, 50px);
  }

  .year-tag {
    font-size: 8px;
    padding: 3px 10px;
    letter-spacing: 1.5px;
  }

  .title-line {
    font-size: clamp(17px, 7.5vw, 24px);
  }

  .home-hero__meta {
    font-size: 9px;
    gap: 5px;
  }

  .home-hero__text {
    font-size: 12px;
    padding-left: 12px;
  }

  .btn-brutal,
  .btn-outline {
    padding: 11px 16px;
    font-size: 12px;
  }

  .home-hero__info-bar {
    padding: 12px 8px;
  }

  .info-item {
    font-size: 8px;
  }
}

/* Floating Gastro Elements - Elegant Food Animations */
.home-hero__gastro-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  /* Ensure elements stay behind main content */
}

/* Gastro Elements - Elegant & Subtle */
.home-hero__gastro-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.gastro-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: floatInSubtle 1.5s ease-out forwards;
}

.gastro-emoji {
  font-size: 28px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.06));
  animation: gentleFloat 8s ease-in-out infinite;
}

/* Elegant positioning for 5 items - Balanced & Subtle */
.gastro-item--1 {
  top: 15%;
  left: 12%;
  animation-delay: 0.6s;
}

.gastro-item--1 .gastro-emoji {
  animation-delay: 0.6s;
  animation-duration: 8.5s;
}

.gastro-item--2 {
  top: 8%;
  right: 15%;
  animation-delay: 1s;
}

.gastro-item--2 .gastro-emoji {
  animation-delay: 1s;
  animation-duration: 9s;
}

.gastro-item--3 {
  top: 48%;
  left: 8%;
  animation-delay: 1.4s;
}

.gastro-item--3 .gastro-emoji {
  animation-delay: 1.4s;
  animation-duration: 8.2s;
}

.gastro-item--4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 1.8s;
}

.gastro-item--4 .gastro-emoji {
  animation-delay: 1.8s;
  animation-duration: 8.8s;
}

.gastro-item--5 {
  bottom: 25%;
  left: 15%;
  animation-delay: 2.2s;
}

.gastro-item--5 .gastro-emoji {
  animation-delay: 2.2s;
  animation-duration: 9.3s;
}

/* Subtle & Elegant Animations */
@keyframes floatInSubtle {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 0.15;
    transform: translateY(0) scale(1);
  }
}

@keyframes gentleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive - Adjust for smaller screens */
@media (max-width: 1200px) {
  .gastro-item--4,
  .gastro-item--5 {
    display: none;
  }

  .gastro-emoji {
    font-size: 24px;
  }
}

@media (max-width: 868px) {
  .gastro-item--3 {
    display: none;
  }

  .gastro-emoji {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .gastro-item--3,
  .gastro-item--4 {
    display: none;
  }

  .gastro-emoji {
    font-size: 32px;
  }

  .gastro-name {
    font-size: 10px;
    padding: 3px 8px;
  }

  /* Reposition remaining items for mobile */
  .gastro-item--1 {
    top: 18%;
    left: 8%;
  }

  .gastro-item--2 {
    bottom: 30%;
    left: 12%;
  }
}

/* Elegant Wave Animations */
.home-hero__waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 100%;
  height: 120px;
  opacity: 0.6;
}

.wave--1 {
  top: 20%;
  animation: waveFloat1 15s ease-in-out infinite;
}

.wave--2 {
  top: 60%;
  animation: waveFloat2 18s ease-in-out infinite reverse;
}

@keyframes waveFloat1 {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-50px) translateY(-20px);
  }
}

@keyframes waveFloat2 {
  0%, 100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(50px) translateY(20px);
  }
}

/* Floating Light Accents */
.home-hero__light-accents {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.light-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  animation: lightPulse 8s ease-in-out infinite;
}

.light-accent--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.15), transparent);
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.light-accent--2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.12), transparent);
  bottom: 25%;
  left: 10%;
  animation-delay: 2.5s;
  animation-duration: 10s;
}

.light-accent--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.1), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 5s;
  animation-duration: 12s;
}

@keyframes lightPulse {
  0%, 100% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

/* Responsive adjustments */
@media (max-width: 868px) {
  .wave {
    height: 80px;
  }

  .light-accent {
    filter: blur(30px);
  }

  .light-accent--1,
  .light-accent--2,
  .light-accent--3 {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 640px) {
  .wave {
    height: 60px;
  }

  .home-hero__waves {
    opacity: 0.5;
  }

  .light-accent {
    filter: blur(20px);
  }

  .light-accent--1,
  .light-accent--2 {
    width: 100px;
    height: 100px;
  }

  .light-accent--3 {
    display: none;
  }
}
