* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: white;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  margin: 0;
}

@font-face {
  font-family: 'Krona One';
  src: url('../Assets/Fonts/KronaOne-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'La Belle Aurore';
  src: url('../Assets/Fonts/LaBelleAurore-Regular.ttf') format('truetype');
}

body {
  font-family: fantasy;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: white;
  position: relative;
  background: linear-gradient(to bottom, #131e2c, #131e2c);
  min-height: 100vh;
  z-index: -2;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(21, 80, 148, 0.9) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 87, 114, 0.9)0%, transparent 40%);
    backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

#loading-screen.fade-out {
  animation: coolFadeOut 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.loader {
    position: relative;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 3;
}

.progress-ring {
    width: 100%;
    height: 100%;
    border: 10px solid rgba(255, 255, 255, 0.452);
    border-top-color: #4d86f0;
    border-top-style: groove;
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
}

.loading-logo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    z-index: 2;
    position: relative;
}

.fade-out .loader {
  animation: loaderDissolve 1.2s ease-out forwards;
}

.fade-out .progress-ring {
  animation: spin 1.2s linear infinite, ringCollapse 1.2s ease-out forwards;
}

.fade-out .loading-logo img {
  animation: logoShrink 1.2s ease-out forwards;
}

/* Vignette Overlay Image */
.Vignette_Image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  pointer-events: none;
}

.Vignette_Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* Navbar settings */
.Navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  min-height: 60px;
  z-index: 1099;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
}

.Navbar {
  position: relative;
  top: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overscroll-behavior: contain;
  pointer-events: all;
}

/* Back Button */
.back-btn {
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  background: linear-gradient(to bottom, rgba(43, 56, 82, 0.8), rgba(23, 32, 56, 0.8));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: fixed;
  z-index: 1102;
}

.back-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.Navbar-container.active .back-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Search Box */
.search-box {
  position: absolute;
  top: -10px;
  right: 95px;
  width: calc(100vw - 105px - 10px);
  height: 70px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(43, 56, 82, 0.9),
    rgba(23, 32, 56, 0.9)
  );
  border-radius: 500px;
  border: 2px solid rgb(255, 255, 255);
  padding: 6px 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(120px) scale(0.1);
  transition: all 0.2s ease;
  transform-origin: center right;
  z-index: 1101;
}

.search-box.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px) scale(0.8);
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-family: sans-serif;
  font-size: 1.3rem;
  padding: 8px 10px;
  flex: 1;
  width: 100%;
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.6);
}

.search-box .search-btn {
  border: none;
  background: none;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 10px;
  scale: 1.5;
}

/* Hamburger Button */
.hamburger-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  background: linear-gradient(to bottom, rgba(43, 56, 82, 0.8), rgba(23, 32, 56, 0.8));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1102;
}

.hamburger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.hamburger-btn.active {
  position: relative;
  border: none;
  transform: scale(1.3);
  background: linear-gradient(to bottom, rgba(60, 70, 100, 0.9), rgba(30, 40, 70, 0.9));
}

.hamburger-btn.active::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(90deg, rgb(0, 110, 255) 0%, rgb(0, 110, 255) 25%, rgb(238, 255, 0) 50%, rgb(0, 110, 255) 75%, rgb(0, 110, 255) 100%);
  background-size: 400% 100%;
  animation: movingBorder 3s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.hamburger-btn:focus {
  outline: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.menu-item {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid rgb(255, 255, 255);
  background: linear-gradient(
    to bottom,
    rgba(43, 56, 82, 0.8),
    rgba(23, 32, 56, 0.8)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

.cart-btn {
  top: 0;
  right: 55px;
  transform: translateY(-10px) translateX(115px);
  scale: 0;
  z-index: 1101;
}

.cart-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(60px);
  scale: 1;
  transition-duration: 0.3s;
}

/* Home Button */
.home-btn {
  top: 0;
  left: 5px;
  transform: translateY(-10px) translateX(-15px);
  scale: 0;
  z-index: 1101;
}

.home-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(90px);
  scale: 1;
  transition-duration: 0.4s;
}

/* Category Section */
.Category-Hero {
  position: relative;
  background: linear-gradient(to bottom, #132b53 0%, #314b7a 50%, #3365bb 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
  padding-bottom: 50px;
  overflow: hidden;
}

.underwater-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(0, 60, 255, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0, 132, 255, 0.15) 0%, transparent 40%);
  overflow: hidden;
  z-index: 0;
}

/* Category Hero Content */
.ShoppingCartIcon {
  display: block;
  margin: 12px auto 16px auto;
  width: 132px;
  height: auto;
  filter: drop-shadow(0px 0px 20px rgba(47, 71, 167, 0.829));
  z-index: 2;
  pointer-events: none;
}

.hero-title {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 16px 0;
  text-align: center;
  font-size: clamp(24px, 3.2vw, 36px);
  font-family: 'Krona One';
  line-height: 1.2;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
  pointer-events: none;
  text-decoration: underline;
}

.ocean-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg,
    rgba(0, 26, 51, 0) 0%,
    rgba(0, 26, 51, 0.5) 50%,
    rgba(0, 26, 51, 0.9) 100%);
  z-index: 0;
}

/* Vocation Cards Section */
.section-title {
  text-align: center;
  font-family: 'Krona One', fantasy;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 60px;
  color: rgb(106, 158, 255);
  filter: drop-shadow(0px 10px 5px #0000009a);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #82b8ffc0, transparent);
}

.vocation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.vocation-card {
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, 
    var(--card-bg-start, rgba(25, 45, 80, 0.9)), 
    var(--card-bg-end, rgba(15, 25, 45, 0.9)));
  border-radius: var(--card-border-radius, 20px);
  border: 2px solid var(--card-border-color, rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 30px;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
}

.vocation-info h2 {
  font-family: 'Krona One', fantasy;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 0 0;
  color: #ffffff;
  background: var(--title-gradient, linear-gradient(to right, #3B72FF, #AAA2A2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
  display: flex;
  align-items: baseline;
  gap: clamp(5px, 1vw, 10px);
  flex-wrap: wrap;
}

.vocation-info h2 .store-name {
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--store-name-color, #ffffff);
  color: var(--store-name-color, #ffffff);
  font-size: clamp(0.8rem, 2vw, 1.8rem);
  font-weight: normal;
  margin-top: -1px;
  margin-bottom: 5px;
}

.vocation-card:hover {
  border-color: var(--hover-border-color, rgba(54, 118, 255, 0.315));
}

.vocation-card[data-vocation="nautika"] {
  --card-bg-start: #00000080;
  --card-bg-end: #4b4b4b80;
  --card-border-color: rgba(179, 179, 179, 0.3);
  --title-gradient: linear-gradient(to right, #ffffff, #666db1);
  --store-name-color: #ffffff;
  --hover-border-color: rgba(194, 194, 194, 0.5);
}

.vocation-card[data-vocation="teknika"] {
  --card-bg-start: #00000080;
  --card-bg-end: #49212180;
  --card-border-color: rgba(255, 143, 143, 0.3);
  --title-gradient: linear-gradient(to right, #ee6262, #ffffff);
  --store-name-color: #ffffff;
  --hover-border-color: rgba(255, 75, 75, 0.5);
}

.vocation-card[data-vocation="fisheries"] {
  --card-bg-start: #00000080;
  --card-bg-end: #66601b80;
  --card-border-color: rgba(253, 255, 143, 0.3);
  --title-gradient: linear-gradient(to right, #fff130, #ffffff);
  --store-name-color: #ffffff;
  --hover-border-color: rgba(243, 255, 75, 0.5);
}

.vocation-card[data-vocation="culinary"] {
  --card-bg-start: #00000080;
  --card-bg-end: #20462a80;
  --card-border-color: rgba(156, 255, 143, 0.3);
  --title-gradient: linear-gradient(to right, #30ff41, #ffffff);
  --store-name-color: #ffffff;
  --hover-border-color: rgba(105, 255, 75, 0.5);
}

.vocation-card[data-vocation="design"] {
  --card-bg-start: #00000080;
  --card-bg-end: #50175580;
  --card-border-color: rgba(255, 143, 227, 0.3);
  --title-gradient: linear-gradient(to right, #f830ff, #ffffff);
  --store-name-color: #ffffff;
  --hover-border-color: rgba(219, 75, 255, 0.5);
}

.vocation-card[data-vocation="electronics"] {
  --card-bg-start: #00000080;
  --card-bg-end: #12616d80;
  --card-border-color: rgba(143, 248, 255, 0.3);
  --title-gradient: linear-gradient(to right, #30cfff, #ffffff);
  --store-name-color: #ffffff;
  --hover-border-color: rgba(75, 243, 255, 0.5);
}

.vocation-card[data-vocation="automotive"] {
  --card-bg-start: #00000080;
  --card-bg-end: #6d351780;
  --card-border-color: rgba(255, 193, 143, 0.3);
  --title-gradient: linear-gradient(to right, #ff8d30, #ffffff);
  --store-name-color: #ffffff;
  --hover-border-color: rgba(255, 162, 75, 0.5);
}

.vocation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vocation-card:hover::before {
  opacity: 1;
}

.vocation-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.vocation-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.vocation-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0px 20px 5px rgba(0, 0, 0, 0.295));
}

.vocation-name {
  font-family: 'Krona One', fantasy;
  margin: 5px 5px 5px 5px;
  text-align: left;
  color: #ffffff;
  filter: drop-shadow(0px 5px 3px rgb(0, 0, 0));
  opacity: 0.5;
  font-size: 0.8rem;
}

.products-preview {
  position: relative;
  z-index: 2;
  gap: 10px;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 5%, rgba(0,0,0,0));
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;

  mask-image: linear-gradient(to right, rgba(0,0,0,1) 5%, rgba(0,0,0,0));
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.product-item {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 0;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 160px;
  aspect-ratio: 4/3;
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.product-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 20px 10px 10px 10px;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.product-title {
  font-size: 1rem;
  font-family: 'Krona One';
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-item:hover span {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.8));
}

.view-all-btn {
  display: block; /* atau inline-block */
  width: 100%;
  background: rgba(124, 177, 255, 0.329);
  color: white;
  border: 2px solid white;
  border-radius: 12px;
  padding: 12px 30px;
  font-size: 1rem;
  font-family: 'Krona One', fantasy;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
}

.view-all-btn:hover {
  color: #ffffff;
  text-decoration: underline;
}

.fish-layer {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.fish, .big-fish {
  position: absolute;
  white-space: pre;
  font-family: monospace;
  font-weight: bold;
  line-height: 1.2;
  pointer-events: none;
}

.fish {
  font-size: 20px;
  animation: swim linear forwards;
}

.fish.flip {
  transform: scaleX(-1);
  animation: swim-reverse linear forwards;
}

.big-fish {
  font-size: 22px;
  animation: swim linear forwards;
}

.big-fish.flip {
  animation: swim-reverse linear forwards;
}

.cursor-bubble {
  position: absolute;
  background: radial-gradient(circle, rgba(116, 188, 255, 0.315) 0%, rgba(53, 99, 141, 0.493) 40%, rgba(30, 65, 117, 0.4) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  animation: bubbleFloat linear forwards;
  border: 1px solid rgba(135, 191, 255, 0.3);
  box-shadow: 
    0 0 10px rgba(55, 90, 155, 0.5),
    inset 0 0 5px rgba(125, 170, 255, 0.3);
}

.background-bubble {
  position: absolute;
  bottom: -120px;
  background: radial-gradient(circle, rgba(116, 188, 255, 0.315) 0%, rgba(53, 99, 141, 0.493) 40%, rgba(30, 65, 117, 0.4) 100%);
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(135, 191, 255, 0.3);
  box-shadow: 
    0 0 10px rgba(55, 90, 155, 0.5),
    inset 0 0 5px rgba(125, 170, 255, 0.3);
  opacity: 0.7;
  animation: backgroundBubble linear forwards;
}

/* Footer */
.footer {
  background: linear-gradient(to bottom, #5F73A4, #1C3372);
  color: #fff;
  padding: 5px 0;
  text-align: center;
}

.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-Header {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-logo {
  width: clamp(40px, 5vw, 50px);
  height: auto;
}

.footer-title {
  font-size: clamp(1.25rem, 1.6vw, 2rem);
  font-family: 'Krona One', sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: underline;
  line-height: 1;
}

.contact-btn {
  margin: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  color: white;
  border: 2px solid white;
  border-radius: 25px;
  padding: 9px 61px;
  font-size: 15px;
  font-family: 'Krona One';
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  gap: 8px;
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
  color: #ffffff;
  text-decoration: underline;
}

.footer .social-btns .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  border: 2px solid white;
  border-radius: 25px;
  padding: 14px 25px;
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: fit-content;
  width: fit-content;
  transition: all 0.1s;
}

.footer .social-btns a.YouTube:hover .bi {
  background: linear-gradient(45deg, #ff3a3a, #cc0000);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .social-btns a.TikTok:hover .bi {
  background: linear-gradient(45deg, #40f9ff, #000000, #c71585);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .social-btns a.Instagram:hover .bi {
  background: linear-gradient(45deg, #f09433, #dc2743, #cc2366, #c623cc, #5718bc);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .social-btns a.WhatsApp:hover .bi {
  background: linear-gradient(45deg, #25d366, #1ca851, #1a7e42, #18683f, #0e532b);
  transform: scale(1.05);
  text-decoration: underline;
}

.footer .copyright {
  font-size: 0.8rem;
  margin-top: 20px;
  font-family: 'Krona One';
  opacity: 0.7;
}

.footer-tagline {
  margin: 7px;
  font-size: clamp(1.1rem, 1.2vw, 1.5rem);
  font-family: 'La Belle Aurore', cursive;
  opacity: 0.85;
}

.footer-nav-box {
  display: inline-block;
}

.footer-nav-text {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  font-size: 1.1rem;
  font-family: 'Krona One', sans-serif;
  text-align: center;
  border: 2px solid white;
  border-radius: 25px;
  padding: 7px 15px;
  margin: 13px;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  font-weight: bold;
  margin-bottom: 12px;
  color: white;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-family: 'Krona One', sans-serif;
  text-align: center;
  border: 2px solid white;
  border-radius: 25px;
  padding: 15px 15px;
  margin: 1px;
  background: linear-gradient(to bottom, #7DA2FF, #2548A6);
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.footer-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05) rotate(-2deg);
  color: #ffffff;
  text-decoration: underline;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes coolFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

 @keyframes loaderDissolve {
  0% { transform: scale(1); opacity: 1; }
  40% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(0.4); opacity: 0; }
}

@keyframes ringCollapse {
  0% { 
    transform: rotate(0deg) scale(1); 
    border-width: 10px;
    opacity: 1;
  }
  40% { 
    transform: rotate(144deg) scale(1.2); 
    border-width: 15px;
    opacity: 0.8;
  }
  100% { 
    transform: rotate(360deg) scale(0.2); 
    border-width: 2px;
    opacity: 0;
  }
}

@keyframes logoShrink {
  0% { 
    transform: scale(1) rotate(0deg); 
    opacity: 1;
    filter: brightness(1);
  }
  30% { 
    transform: scale(1.15) rotate(45deg); 
    opacity: 0.9;
    filter: brightness(1.3);
  }
  70% { 
    transform: scale(0.7) rotate(180deg); 
    opacity: 0.3;
    filter: brightness(0.7);
  }
  100% { 
    transform: scale(0.1) rotate(270deg); 
    opacity: 0;
    filter: brightness(0.3);
  }
}

@keyframes backgroundBubble {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  70% {
    opacity: 0.5;
    transform: translateY(-70vh) scale(1.1);
  }
  100% {
    transform: translateY(-100vh) scale(1.3);
    opacity: 0;
  }
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(0) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    transform: translateY(-10px) translateX(calc(var(--drift) * 0.1)) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50px) translateX(calc(var(--drift) * 0.5)) scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: translateY(-120px) translateX(var(--drift)) scale(0.8);
    opacity: 0;
  }
}

@keyframes swim {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(calc(100vw + 200%));
  }
}

@keyframes swim-reverse {
  0% {
    transform: translateX(calc(100vw + 200%)) scaleX(-1);
  }
  100% {
    transform: translateX(-200%) scaleX(-1);
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.8;
  }
}

@keyframes seaweedSway {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(8deg);
  }
  75% {
    transform: rotate(-8deg);
  }
}

@keyframes movingBorder {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .vocation-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }
  
  .vocation-card {
    padding: 25px;
  }
  
  .vocation-header {
    gap: 15px;
  }
  
  .vocation-logo {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .vocation-info h3 {
    font-size: 1.3rem;
  }
  
  .product-grid {
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .section-title {
    margin-bottom: 40px;
  }
  
  .vocation-section {
    padding: 60px 0 80px 0;
  }
  
  .vocation-card {
    padding: 20px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 1025px) {
  .search-box {
    width: 725px;
  }
}