/* =========================================
   KING MIKE ICE CREAM — Stylesheet
   ========================================= */


:root {
  --blue:        #1a6fc4;
  --blue-dark:   #1457a0;
  --blue-deeper: #0d3d75;
  --yellow:      #ffd000;
  --yellow-dark: #e6b800;
  --text:        #333;
  --white:       #ffffff;
}

html { overflow-x: clip; }
body { max-width: 100%; overflow-x: clip; }
html { scroll-behavior: smooth; }

/* =========================================
   FIXED HEADER
   ========================================= */
.fixed-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: var(--blue-deeper);
  padding: 6px 0;
  position: relative;
  z-index: 1;
  border-bottom: 2px solid var(--yellow);
}
.top-bar-phone {
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.top-bar-phone:hover { color: #fff; }
.top-bar-phone .bi { margin-right: 5px; }
.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-bar-socials a {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.1s, transform 0.1s;
  display: flex;
}
.top-bar-socials a:hover {
  color: var(--yellow);
  transform: scale(1.15);
}

body {
  font-family: 'Nunito', 'Segoe UI', sans-serif !important;
  color: var(--text);
  font-size: 1rem;
  background: url('../images/background.webp') center center / cover fixed;
  position: relative;
}

a { color: var(--blue); }
a:hover { color: var(--blue-dark); }

/* Overlay above background image */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgb(0 44 86 / 80%);
  z-index: 0;
}

/* All main content sits above the background */
nav, section, div.banner-strip, footer, header {
  position: relative;
  z-index: 1;
}

/* Offset anchor scroll for fixed header */
section[id], footer[id] {
  scroll-margin-top: 115px;
}

/* =========================================
   NAVBAR
   ========================================= */
#mainNav {
  background: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 3px solid var(--yellow);
  padding: 6px 0;
  backdrop-filter: blur(6px);
}
.navbar-nav .nav-link {
  color: var(--text) !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 6px 11px !important;
  border-radius: 50px;
  transition: all 0.1s;
}
.navbar-nav .nav-link:hover {
  color: var(--blue) !important;
  background: rgba(26,111,196,0.08);
}
.navbar-nav .nav-link.active {
  color: var(--blue) !important;
  background: var(--yellow);
  font-weight: 800;
}

/* Logo images */
.nav-logo {
  height: 62px;
  width: auto;
  border-radius: 6px;
  transition: transform 0.1s;
      position: relative;
    bottom: 3px;
}
.nav-logo:hover { transform: scale(1.05); }

.hero-logo {
  height: 100px;
  width: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

/* =========================================
   CONTENT CARDS (float over mosaic)
   ========================================= */
.content-card {
  background-color: rgba(255, 255, 255, 0.96);
  background-image: radial-gradient(rgba(26, 111, 196, 0.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  padding: 32px 36px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

/* Ice cream icon watermark — bottom left */
.content-card::before {
  content: '🍦';
  display: block;
  position: absolute;
  font-size: 200px;
  line-height: 1;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

/* Ice cream icon watermark — top right */
.content-card::after {
  display: block;
  position: absolute;
  font-size: 200px;
  line-height: 1;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}

.hero-card::after                  { content: '🍦'; top: -30px; right: -20px; }
#fun-days .content-card::after     { content: '🍨'; top: -30px; right: -20px; }
#corporate .content-card::after    { content: '🍦'; top: -30px; right: -20px; }
#weddings .content-card::after     { content: '🍧'; top: -30px; right: -20px; }
#celebrations .content-card::after { content: '🍦'; top: -30px; right: -20px; }
#areas .content-card::after        { content: '🍨'; top: -30px; right: -20px; }

/* =========================================
   HERO
   ========================================= */
.hero-section {
  padding: 60px 0;
}
.hero-card {
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: var(--blue-dark);
  line-height: 1.1;
}
.hero-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}
.hero-list li {
  padding: 4px 0;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--text);
}
.hero-list .bi {
  color: var(--blue);
  margin-right: 8px;
}

/* =========================================
   BANNER STRIP
   ========================================= */
.banner-strip {
  background: var(--yellow);
  color: var(--blue-deeper);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  padding: 13px 20px;
  border-top: 3px solid var(--yellow-dark);
  border-bottom: 3px solid var(--yellow-dark);
}

/* =========================================
   SERVICE SECTIONS
   ========================================= */
.service-section {
  padding: 50px 0;
}
.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.7rem;
  color: var(--blue-dark);
  border-bottom: 4px solid var(--yellow);
  padding-bottom: 10px;
  margin-bottom: 16px;
  display: inline-block;
}
.section-photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #8aafd4;
  display: block;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.areas-line {
  background: var(--yellow);
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 0.95rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-main {
  background: var(--yellow);
  color: var(--blue-deeper);
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  padding: 9px 24px;
  transition: all 0.2s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.btn-main:hover {
  background: var(--yellow-dark);
  color: var(--blue-deeper);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.btn-main.btn-sm { padding: 6px 18px; font-size: 0.85rem; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: rgba(13, 61, 117, 0.97);
  color: rgba(255,255,255,0.85);
  border-top: 4px solid var(--yellow);
  backdrop-filter: blur(6px);
}
.footer-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  color: var(--yellow);
  border-bottom: 2px solid rgba(255,208,0,0.3);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.footer-contact {
  font-size: 0.95rem;
}
.footer-contact li {
  margin-bottom: 10px;
  font-weight: 600;
}
.footer-contact i {
  color: var(--yellow);
  margin-right: 10px;
  width: 16px;
}
.footer-contact a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.footer-contact a:hover { color: var(--yellow); }

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-icon:hover {
  background: var(--yellow);
  color: var(--blue-deeper);
}

/* Food Hygiene Badge */
.hygiene-badge {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 14px;
  display: inline-block;
  text-align: center;
  min-width: 140px;
}
.hygiene-stars {
  color: var(--yellow);
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.hygiene-score {
  font-family: 'Fredoka', sans-serif;
  font-size: 3.5rem;
  color: #5dde5d;
  line-height: 1;
}
.hygiene-label {
  font-weight: 800;
  font-size: 0.75rem;
  color: #5dde5d;
  letter-spacing: 2px;
}
.hygiene-agency {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}


.footer-hr { border-color: rgba(255,255,255,0.15); }
.footer-copy { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

/* =========================================
   PHOTOS SLIDER
   ========================================= */
.photos-section {
  position: relative;
  z-index: 1;
}
.photos-heading {
  background: var(--blue-dark);
  color: var(--yellow);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
  padding: 16px 0;
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}
.photo-slider {
  display: flex;
  align-items: center;
  background: #f8d247;
}
.slider-viewport {
  flex: 1;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.45s ease;
}
.slider-item {
  flex: 0 0 25%;
  padding: 2px;
}
.slider-item img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  background: #8aafd4;
  display: block;
}
.slider-btn {
  background: var(--yellow);
  color: var(--blue-deeper);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
  margin: 0 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.slider-btn:hover {
  background: var(--yellow-dark);
  transform: scale(1.1);
}
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  background: var(--blue-deeper);
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.slider-dot:hover { background: rgba(255,255,255,0.55); }
.slider-dot.active {
  background: var(--yellow);
  transform: scale(1.35);
}

@media (max-width: 767px) {
  .slider-item { flex: 0 0 100%; }
  .photos-heading { font-size: 1.2rem; }
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: lbFadeIn 0.2s ease;
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  cursor: default;
  animation: lbZoomIn 0.2s ease;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
  background: none;
  border: none;
}
.lightbox-close:hover {
  opacity: 1;
  transform: scale(1.15);
}
@keyframes lbFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoomIn  { from { transform: scale(0.9); } to { transform: scale(1); } }

/* Make clickable images show a pointer */
.lightbox-trigger {
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lightbox-trigger:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

/* =========================================
   LANGUAGE SWITCHER
   ========================================= */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(26,111,196,0.08);
  border-radius: 50px;
  padding: 4px 10px;
}
.lang-btn {
  background: none;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--text);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 50px;
  transition: all 0.2s;
  letter-spacing: 0.5px;
}
.lang-btn:hover { color: var(--blue); }
.lang-btn.active {
  background: var(--yellow);
  color: var(--blue-deeper);
}
.lang-sep {
  color: #ccc;
  font-size: 0.8rem;
}

/* =========================================
   BACK TO TOP
   ========================================= */
.backtotop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: var(--blue-deeper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
}
.backtotop.show { opacity: 1; visibility: visible; }
.backtotop:hover {
  background: var(--yellow-dark);
  color: var(--blue-deeper);
  transform: translateY(-3px);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 767px) {
.content-card { padding: 22px 20px; }
  .hero-section { padding: 30px 0; }
  .service-section { padding: 30px 0; }
  .section-title { font-size: 1.4rem; }
  .banner-strip { font-size: 1rem; }
  .photos-heading { font-size: 1.2rem; }
}
