/* ============================================================
   0. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
h1, h2, h3, p, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --paper:      #FAF7F2;
  --paper-alt:  #F1E9DC;
  --ink:        #2B2A28;
  --ink-soft:   #5A554B;
  --warm-gray:  #8A8478;
  --navy:       #24344A;
  --navy-soft:  #3C5473;
  --gold:       #B8935F;
  --gold-soft:  #E4D3B8;
  --sky:        #8FB4C9;
  --shadow:     rgba(43, 42, 40, 0.16);

  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  30px;

  --font-display: 'Fraunces', Georgia, 'Iowan Old Style', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   2. TYPOGRAPHY & LAYOUT UTILITIES
   ============================================================ */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--navy);
  margin-top: 0.6rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 42em;
  margin-top: 1rem;
  line-height: 1.7;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}
section { position: relative; padding: clamp(5rem, 10vw, 9rem) 0; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: var(--paper);
  padding: 0.9rem 1.4rem; border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000; font-size: 0.9rem;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   3. PROGRESS BAR
   ============================================================ */
.progress-track {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px;
  background: transparent; z-index: 900;
}
.progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  transition: width 0.1s linear;
}

.brandmark {
  position: fixed; top: 1.5rem; left: clamp(1.5rem, 4vw, 3rem);
  z-index: 850;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--paper);
  mix-blend-mode: difference;
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* ============================================================
   BGM (BACKGROUND MUSIC) TOGGLE
   ============================================================ */
.bgm-toggle {
  position: fixed;
  top: 1.5rem;
  right: clamp(1.5rem, 4vw, 3rem);
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(36, 52, 74, 0.4); /* Menggunakan warna navy dari tokenmu */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  color: var(--paper);
  border: 1px solid rgba(250, 247, 242, 0.15);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.bgm-toggle:hover {
  background: rgba(36, 52, 74, 0.7);
  transform: scale(1.05);
}

.bgm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bgm-icon svg {
  width: 18px;
  height: 18px;
}

/* Animasi Gelombang Suara (Hanya bergerak saat musik menyala) */
.bgm-waves {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 14px;
}

.bgm-waves .wave {
  width: 2px;
  height: 4px; /* Tinggi default saat mati */
  background: var(--gold-soft);
  border-radius: 2px;
  transition: height 0.2s ease;
}

/* Status: Playing */
.bgm-toggle.is-playing .bgm-waves .wave {
  animation: equalize 1s ease-in-out infinite;
}

.bgm-toggle.is-playing .bgm-waves .wave:nth-child(1) { animation-delay: 0.0s; }
.bgm-toggle.is-playing .bgm-waves .wave:nth-child(2) { animation-delay: 0.3s; }
.bgm-toggle.is-playing .bgm-waves .wave:nth-child(3) { animation-delay: 0.6s; }

@keyframes equalize {
  0%, 100% { height: 4px; }
  50% { height: 14px; }
}

/* Penyesuaian Mobile: Sembunyikan gelombang suara agar tombol lebih kecil */
@media (max-width: 760px) {
  .bgm-waves { display: none; }
  .bgm-toggle { padding: 0.6rem; border-radius: 50%; }
}

/* ============================================================
   4. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(36,52,74,0.35) 0%, rgba(36,52,74,0.25) 40%, rgba(24,32,44,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(1.5rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
  color: var(--paper);
  max-width: 1180px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600;
}
.hero-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.02;
  margin-top: 0.9rem;
}
.hero-meta {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(250,247,242,0.82);
}
.hero-meta .dot { margin: 0 0.6em; opacity: 0.5; }
.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  max-width: 34em;
  margin-top: 2rem;
  color: rgba(250,247,242,0.94);
  line-height: 1.5;
}
.hero-cta {
  margin-top: 2.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--paper);
  color: var(--navy);
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.5);
}
.hero-cta:hover { transform: translateY(-3px); background: var(--gold-soft); }
.hero-cta svg { transition: transform 0.3s var(--ease); }
.hero-cta:hover svg { transform: translateX(4px); }

.scroll-cue {
  position: absolute;
  bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: rgba(250,247,242,0.65);
  animation: cue-bob 2.6s ease-in-out infinite;
}
@keyframes cue-bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ============================================================
   5. FEATURED MEMORIES
   ============================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(90px, auto);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.featured-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper-alt);
  box-shadow: 0 18px 40px -20px var(--shadow);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.featured-item:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 28px 60px -18px var(--shadow);
  z-index: 3;
}
.featured-item img { width: 100%; height: 100%; object-fit: cover; }
.featured-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(36,52,74,0.78), transparent);
  color: var(--paper);
  font-size: 0.92rem;
  font-family: var(--font-display);
  font-style: italic;
}
.featured-item:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; aspect-ratio: 5/4; --tilt: 0deg; }
.featured-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 4; aspect-ratio: 3/6; --tilt: 1.4deg; }
.featured-item:nth-child(3) { grid-column: 1 / 5; grid-row: 3 / 4; aspect-ratio: 3/4; --tilt: -1.2deg; }
.featured-item:nth-child(4) { grid-column: 5 / 8; grid-row: 3 / 4; aspect-ratio: 1/1; --tilt: 1.6deg; }
.featured-item:nth-child(5) { grid-column: 8 / 13; grid-row: 4 / 5; aspect-ratio: 16/9; --tilt: -0.8deg; }

/* ============================================================
   6. STORY JOURNEY
   ============================================================ */
.journey-section { background: var(--paper-alt); }
.chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.chapter:last-child { margin-bottom: 0; }
.chapter.reverse .chapter-media { order: 2; }
.chapter.reverse .chapter-card { order: 1; }
.chapter-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 50px -22px var(--shadow);
}
.chapter-media img { width: 100%; height: 100%; object-fit: cover; }
.chapter-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.2rem);
  box-shadow: 0 20px 55px -26px var(--shadow);
  overflow: hidden;
}
.chapter-card::after {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 38px 38px 0;
  border-color: transparent var(--paper-alt) transparent transparent;
  box-shadow: -3px 3px 8px rgba(43,42,40,0.1);
  transition: border-width 0.4s var(--ease), border-color 0.4s var(--ease);
}
.chapter-card:hover::after {
  border-width: 0 54px 54px 0;
  border-color: transparent var(--gold-soft) transparent transparent;
}
.chapter-numeral {
  position: absolute;
  top: -0.4em; left: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 500;
  color: var(--navy);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}
.chapter-eyebrow { position: relative; }
.chapter-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--navy);
  margin-top: 0.5rem;
  font-weight: 500;
}
.chapter-desc {
  position: relative;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ============================================================
   7. GALLERY (MASONRY)
   ============================================================ */
.gallery-grid {
  column-count: 4;
  column-gap: clamp(1rem, 2vw, 1.5rem);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item .img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.gallery-item img {
  width: 100%;
  filter: brightness(0.95);
  transition: filter 0.5s var(--ease);
}
.gallery-item:hover img { filter: brightness(1.06); }
.gallery-item .img-wrap {
  box-shadow: inset 0 0 0 0px var(--gold);
  transition: box-shadow 0.4s var(--ease);
}
.gallery-item:hover .img-wrap { box-shadow: inset 0 0 0 2px var(--gold); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.1rem 1rem 0.9rem;
  background: linear-gradient(to top, rgba(36,52,74,0.82), transparent 85%);
  color: var(--paper);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }
.gallery-caption .cap-title { display: block; font-family: var(--font-display); font-style: italic; font-size: 1rem; }
.gallery-caption .cap-meta { display: block; font-size: 0.78rem; opacity: 0.8; margin-top: 0.2rem; letter-spacing: 0.03em; }

/* ============================================================
   8. SPECIAL MOMENTS
   ============================================================ */
.special-section { background: var(--navy); color: var(--paper); }
.special-section .eyebrow { color: var(--sky); }
.special-section .section-heading { color: var(--paper); }
.special-section .section-sub { color: rgba(250,247,242,0.72); }
.special-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.special-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.6);
}
.special-item img, .special-item video {
  width: 100%; height: 100%; object-fit: cover;
}
.special-item .type-tag {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(250,247,242,0.16);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--paper);
  pointer-events: none;
}
.glass-caption {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(250,247,242,0.14);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--paper);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}
.special-item:hover .glass-caption, .special-item:focus-within .glass-caption { opacity: 1; transform: translateY(0); }
.glass-caption h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; }
.glass-caption p { font-size: 0.85rem; margin-top: 0.35rem; color: rgba(250,247,242,0.85); line-height: 1.5; }

/* ==============================================
   Menyembunyikan teks saat video diputar 
   ============================================== */
.special-item.is-playing-media .glass-caption,
.special-item.is-playing-media .type-tag {
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.play-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(250,247,242,0.9);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.special-item:hover .play-icon { transform: scale(1.08); background: var(--paper); }

/* ============================================================
   9. CLOSING
   ============================================================ */
.closing-section { text-align: center; }
.closing-mark {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  color: var(--gold); margin-bottom: 2rem;
}
.closing-mark .line { width: 60px; height: 1px; background: var(--gold-soft); }
.closing-heading {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy);
}
.closing-body {
  max-width: 640px; margin: 2rem auto 0;
  color: var(--ink-soft); font-size: 1.08rem; line-height: 1.85;
}
.closing-body p + p { margin-top: 1.3rem; }
.closing-signature {
  margin-top: 3rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.4rem; color: var(--navy);
}
.closing-dateline {
  margin-top: 0.6rem;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--warm-gray);
}
.final-glyph {
  text-align: center; padding: 3rem 0 4rem; color: var(--gold-soft); font-size: 1.4rem;
}

/* ============================================================
   10. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20, 24, 30, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-figure {
  max-width: 1000px; width: 100%;
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.lightbox.is-open .lightbox-figure { transform: scale(1); }
.lightbox-img {
  width: 100%; max-height: 68vh; object-fit: contain;
  border-radius: var(--radius-sm);
  margin: 0 auto;
}
.lightbox-figure figcaption { color: var(--paper); text-align: center; margin-top: 1.4rem; }
.lightbox-title { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; }
.lightbox-caption { margin-top: 0.5rem; color: rgba(250,247,242,0.8); font-size: 0.95rem; }
.lightbox-meta { margin-top: 0.6rem; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-soft); }
.lightbox-meta span + span::before { content: "·"; margin: 0 0.6em; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  border-radius: 50%;
  background: rgba(250,247,242,0.08);
  transition: background 0.3s var(--ease);
  z-index: 1010;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(250,247,242,0.2); }
.lightbox-close { top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem); font-size: 1.6rem; }
.lightbox-prev { left: clamp(0.6rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); font-size: 1.6rem; }
.lightbox-next { right: clamp(0.6rem, 3vw, 2rem); top: 50%; transform: translateY(-50%); font-size: 1.6rem; }

/* ============================================================
   11. SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal="fade"] { transform: translateY(0); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="slide-up"] { transform: translateY(36px); }
[data-reveal="stagger"] { transform: translateY(24px); }
.reveal.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(6, 1fr); }
  .featured-item:nth-child(1) { grid-column: 1/7; grid-row: 1/3; }
  .featured-item:nth-child(2) { grid-column: 1/4; grid-row: 3/5; }
  .featured-item:nth-child(3) { grid-column: 4/7; grid-row: 3/4; }
  .featured-item:nth-child(4) { grid-column: 4/7; grid-row: 4/5; }
  .featured-item:nth-child(5) { grid-column: 1/7; grid-row: 5/6; }
  .gallery-grid { column-count: 3; }
  .special-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (max-width: 760px) {
  .chapter, .chapter.reverse { grid-template-columns: 1fr; }
  .chapter.reverse .chapter-media, .chapter.reverse .chapter-card { order: initial; }
  .gallery-grid { column-count: 2; }
  .special-grid { grid-template-columns: 1fr; }
  .special-item { aspect-ratio: 16/10; }
  .brandmark { display: none; }
}
/* @media (max-width: 480px) {
  .gallery-grid { column-count: 1; }
  .lightbox-prev, .lightbox-next { min-width: 40px; min-height: 40px; }
} */
 @media (max-width: 480px) {
  .gallery-grid { 
    column-count: 2; 
    column-gap: 0.6rem; /* Diperkecil dari defaultnya agar tidak membuang ruang layar */
  }
  
  .gallery-item {
    margin-bottom: 0.6rem; /* Menyamakan jarak bawah dengan jarak samping */
  }

  .lightbox-prev, .lightbox-next { min-width: 40px; min-height: 40px; }
}

/* ============================================================
   13. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero-bg { transform: none !important; }
}


/* Container utama */
.final-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Ukuran ikon */
.toga-icon {
  width: 2rem; /* Sesuaikan ukuran ikon */
  height: 2rem;
  vertical-align: middle;
}

/* Mewarnai bagian-bagian topi toga */
.toga-primary {
  fill: #2c3e50; /* Warna utama topi */
}

.toga-secondary {
  fill: #34495e; /* Warna lipatan/bayangan */
}

.toga-tassel-line {
  stroke: #f1c40f; /* Warna garis tali rumbai */
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.toga-tassel-dot {
  fill: #f1c40f; /* Warna ujung rumbai */
}

/* Contoh efek hover jika diinginkan */
.final-glyph:hover .toga-primary {
  fill: #1abc9c;
  transition: fill 0.3s ease;
}

/* Styling untuk link wrapping */
.toga-link {
  display: inline-flex;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* Efek sedikit membesar saat kursor di atas logo */
.toga-link:hover {
  transform: scale(1.1);
}