/*
Custom CSS module
Netconsult.sk
By Krpasoft
*/

html {
  scroll-behavior: auto !important;
}

@media (min-width: 1024px) and (max-width: 1300px) {
    .sluzby-container,
    .about-1-container, 
    .about-2-container,
    .headings-container,
    .kontakt-container {
        padding-inline: 2rem !important;
    }
}

/* Section Backgrounds */
.section-dark-top {
    background: linear-gradient(to bottom, 
        #040508 0%, 
        #1D0B1C 50%, 
        #302243 100%
    );
}

.section-dark-bottom,
.terms-pages {
    background: linear-gradient(to top, 
        #040508 0%, 
        #1D0B1C 50%, 
        #302243 100%
    );
}

/* Global Kontakt Buttons */
.kontakt-btn a {
    position: relative;
    display: inline-block;
    border-radius: 32px;
    overflow: hidden;
    z-index: 5;
    color: #B888E2 !important;
    text-decoration: none;
    box-shadow: 
        0 0 20px rgba(184, 136, 226, 0.4),
        0 0 40px rgba(127, 63, 191, 0.3);
    transition: box-shadow 250ms ease;
}

.kontakt-btn a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    aspect-ratio: 1;
    background: conic-gradient(
        from 0deg at 50% 50%,
        #B888E2 0deg,
        #7F3FBF 90deg,
        #9D66D2 180deg,
        #7F3FBF 270deg,
        #B888E2 360deg
    );
    transform: translate(-50%, -50%) rotate(0deg);
    animation: rotate-gradient 1600ms linear infinite;
    z-index: -2;
}

.kontakt-btn a::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #000000 !important;
    border-radius: 30px;
    z-index: -1;
}

#ctaHero a::after {
    background: #1b1223 !important;
}
#ctaAbout2 a::after {
    background: #2f2040 !important;
}

@media (min-width: 1024px) {
    .kontakt-btn a:hover {
        box-shadow: 
            0 0 20px rgba(184, 136, 226, 0.4),
            0 0 40px rgba(127, 63, 191, 0.3),
            0 0 60px rgba(184, 136, 226, 0.2),
            0 0 80px rgba(127, 63, 191, 0.3);
    }
    .kontakt-btn a:hover::before {
        animation-play-state: paused !important;
    }
}

@keyframes rotate-gradient {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* =================== */
/* Responsive Headings */
/* =================== */

.heading-2 h2 {
  font-size: clamp(2rem, 1.6rem + 3.5vw, 4.2rem) !important;
}

.heading-3 h3 {
  font-size: clamp(1.6rem, 1.2rem + 2.7vw, 3rem) !important;
}

/* Heading 4 a 5 ponechány původní */
.heading-4 h4 {
  font-size: clamp(2.2rem, 1.8rem + 3.5vw, 4rem) !important;
}

.heading-5 h5 span {
  font-size: clamp(1.6rem, 1.3rem + 2.2vw, 2.3rem) !important;
}

.heading-5 h5 img {
  width: clamp(32px, 26px + 3vw, 48px) !important;
  height: auto !important;
}

.subheading-2 h2 {
  font-size: clamp(1.6rem, 1.2rem + 2.3vw, 3.8rem) !important;
}


/* === HEADER: Nechal jsem ho v Elementoru === */


/* ============ */
/* Hero Section */
/* ============ */

.hero-section {
    box-shadow: 
        inset 0 -60px 20px rgba(4, 5, 8, 1),
        inset 0 -100px 30px rgba(4, 5, 8, 0.8),
        inset 0 -140px 40px rgba(4, 5, 8, 0.6),
        inset 0 -160px 60px rgba(4, 5, 8, 0.4);
}

.main-heading:hover {
    cursor: default !important;
}

.text-container {
    background: rgba(0, 0, 0, 0.025);
    -webkit-backdrop-filter: blur(1.0px);
    backdrop-filter: blur(1.0px);
    border-radius: 256px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* ============== */
/* Služby Section */
/* ============== */

.btn-wrapper {
    width: clamp(320px, 30vw, 460px);
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.1vw, 12px);
}

.sluzby-btn {
    display: flex;
    align-items: center;
    min-width: 300px;
    width: 92%;
    gap: 12px;
    padding-block: clamp(8px, 2vw, 12px);
    border: 3px solid #8F50CF;
    border-radius: 16px;
    transition: border-color 300ms ease, color 300ms ease, width 300ms ease-in-out;
    
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    
    transform: translateZ(0);
}

.sluzby-btn svg {
    width: clamp(20px, 2vw, 32px);
    height: clamp(20px, 2vw, 32px); 
}

.sluzby-btn span {
    font-size: clamp(1.1rem, 1.5vw, 1.5rem);
    font-weight: 600;
    color: #A163DF;
}

.active-btn {
    border-color: #7F3FBF;
    background-color: #7F3FBF !important;
    width: 100% !important;
    transition: background-color 300ms ease, border-color 300ms ease, color 300ms ease, width 300ms ease-in-out;
}

.active-btn span {
    color: #eeeeee;
}

.active-btn svg {
    stroke: #eeeeee;
}

.sluzby-btn:not(.active-btn):hover,
.sluzby-btn:not(.active-btn):active,
.sluzby-btn:not(.active-btn):focus,
.sluzby-btn:not(.active-btn):focus-within {
    background: transparent !important;
    color: #A163DF !important;
    border-color: #8F50CF !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

@media (max-width: 768px) {
    .sluzby-btn span {
        font-weight: 500;
    }
    .sluzby-paragraf {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .sluzby-btn:hover {
        background: none;
        cursor: pointer;
    }
    
    .sluzby-btn:not(.active-btn):hover {
        width: 95%;
    }
}


/* Vedlejší Details Container */
.service-showcase {
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateZ(0);
}

.showcase-track {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    isolation: isolate;
}

.showcase-slide {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    opacity: 0;
    transform: translateY(15px) translateZ(0);
    transition: 
        opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    will-change: opacity, transform;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-slide.active {
    opacity: 1;
    transform: translateY(0) translateZ(0);
    pointer-events: auto;
}

.showcase-slide.fade-out {
    opacity: 0;
    transform: translateY(-10px) translateZ(0);
    transition: 
        opacity 0.2s cubic-bezier(0.4, 0, 1, 1),
        transform 0.2s cubic-bezier(0.4, 0, 1, 1);
    pointer-events: none;
}

.showcase-slide.fade-in {
    animation: quickFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.showcase-image {
    width: 100%;
    text-align: center;
    position: relative;
    margin-bottom: 1rem;
    filter: 
      drop-shadow(0 0 20px rgba(127, 63, 191, 0.5))
      drop-shadow(0 0 60px rgba(127, 63, 191, 0.4))
      drop-shadow(0 0 100px rgba(127, 63, 191, 0.3))
      drop-shadow(0 20px 40px rgba(127, 63, 191, 0.2));
    transition: 
        filter 0.15s ease,
        transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: filter, transform;
}

.showcase-image img {
    width: clamp(200px, 30vw, 420px);
    margin-inline: auto;
    height: auto;
    display: block;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatGently 3s ease-in-out infinite;
}

.showcase-text {
    text-align: center;
    width: 100%;
}

.showcase-text p {
    font-family: "Inter";
    font-size: clamp(1.4rem, 1.5vw, 1.5rem);
    color: #eeeeee;
    margin: 0;
    line-height: 1.2;
    font-weight: 400;
    transition: color 0.15s ease;
}

@media (max-width: 768px) {
  .showcase-text p {
    font-size: clamp(1.1rem, 3.5vw, 1.3rem);
  }
}


.showcase-text .highlight {
    color: #7F3FBF;
    font-weight: 900;
    transition: 
        color 0.15s ease,
        text-shadow 0.15s ease;
}

.showcase-text .highlight-2 {
    color: #B888E2;
    font-weight: 900;
    transition: 
        color 0.15s ease,
        text-shadow 0.15s ease;
}

/* Crossfade efekt pro plynulý přechod */
.showcase-slide.crossfade-out {
    opacity: 0;
    transform: translateY(0) scale(0.98) translateZ(0);
    transition: 
        opacity 0.2s cubic-bezier(0.4, 0, 1, 1),
        transform 0.2s cubic-bezier(0.4, 0, 1, 1);
    pointer-events: none;
}

.showcase-slide.crossfade-in {
    opacity: 1;
    transform: translateY(0) scale(1) translateZ(0);
    transition: 
        opacity 0.25s cubic-bezier(0, 0, 0.2, 1),
        transform 0.25s cubic-bezier(0, 0, 0.2, 1);
    pointer-events: auto;
}

/* Instant snap pro nejrychlejší možný přechod */
.showcase-slide.snap-out {
    opacity: 0;
    transition: opacity 0.1s ease-out;
    pointer-events: none;
}

.showcase-slide.snap-in {
    opacity: 1;
    transition: opacity 0.15s ease-in;
    pointer-events: auto;
}

@keyframes quickFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px) translateZ(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

@keyframes floatGently {
    0%, 100% {
        transform: translate(-6px, 6px);
    }
    50% {
        transform: translate(0px, 0px);
    }
}


/* ============= */
/* O nás Section */
/* ============= */

.card-container h5 {
    z-index: 1;
}

.card {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: "Inter";
    background: linear-gradient(to bottom, #7F3FBF, #53287F);
    border-radius: 1rem;
    border-top: solid 10px #B888E2;
    padding: 1.2rem;

    width: 100%;
    max-width: 340px;

    min-height: 360px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 300ms ease;
}

/* h5 */
.card-title {
    color: #D1A9F4;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.card-description {
    text-align: center;
    color: #eeeeee;
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.about-img {
    position: absolute;
    z-index: 10;
    top: -132px;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    transition: top 275ms ease-in-out;
}

.top-shadow {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 80px;
    border-radius: 50%;
    filter: blur(20px);
    background: #461972;
    box-shadow: 
       0 0 20px rgba(70, 25, 114, 0.7),   
       0 0 40px rgba(70, 25, 114, 0.7),   
       0 0 80px 8px rgba(70, 25, 114, 0.7);
    transition: top 300ms ease-in-out, width 300ms ease;
}

.shield-img {
    top: -142px;
}

.bottom-shadow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 60px;
    border-radius: 50%;
    filter: blur(10px);
    background: #461972;
    box-shadow: 
       0 0 20px rgba(70, 25, 114, 0.7),   
       0 0 40px rgba(70, 25, 114, 0.7),   
       0 0 60px rgba(70, 25, 114, 0.7);
}

/* HOVER EFFECT */
@media (min-width: 1024px) {
    .card-container h5, p:hover {
        cursor: default;
    }
    .card-container:hover .about-img {
        top: -146px;
    }
    .card-container:hover .shield-img {
        top: -156px;
    }
    .card-container:hover .card {
        box-shadow: 
           0 0 16px rgba(184, 136, 226, 0.6);
    }
    .card-container:hover .top-shadow {
        top: -30px;
        width: 140px;
    }
}


/* ================== */
/* Referencie Section */
/* ================== */

.simple-slider {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  padding: 0 60px;
  isolation: isolate;
}

.slider-track {
  position: relative;
  width: 90%;
  /* HLAVNÍ OPRAVA: místo clamp s 100vh používáme fixní výšku s responzivním přizpůsobením */
  height: 540px;
  overflow: hidden;
  background: transparent;
}

.slide {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: none;
}

/* Tvoje animace - necháváme jak jsou */
.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.slide-out-left {
  opacity: 0;
  visibility: visible;
  transform: translateX(-100%);
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.slide-out-right {
  opacity: 0;
  visibility: visible;
  transform: translateX(100%);
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.slide-in-left {
  opacity: 1;
  visibility: visible;
  transform: translateX(-100%);
  transition: none;
}

.slide.slide-in-right {
  opacity: 1;
  visibility: visible;
  transform: translateX(100%);
  transition: none;
}

.slide.animating {
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-link {
  position: relative;
  z-index: 1; 
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

/* OPRAVA: pro neklikatelné slidy */
.slide:not(:has(a)) .slide-content {
  cursor: default;
}

.slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /* OPRAVA: padding pro lepší spacing na malých obrazovkách */
  padding: 20px;
  box-sizing: border-box;
}

.slide-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
  margin-bottom: 16px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 32px;
  z-index: 20;
  border-radius: 64px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  /* OPRAVA: zabraňuje přetékání dlouhých názvů */
  max-width: 90%;
  word-wrap: break-word;
}

.slide-image-wrapper {
  width: 90%;
  /* OPRAVA: flexibilnější výška */
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 100%;
  transition: transform 300ms ease;
}

.slide-link:hover .slide img {
  transform: scale(1.05);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: all 300ms ease, border 50ms ease;
  background: rgba(0, 0, 0, 0.3);
}

.slider-btn:active,
.slider-btn:focus {
  background: transparent !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.slider-btn:focus:not(:focus-visible) {
  outline: none !important;
}

.slider-btn svg {
  transform: scale(2);
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.6) !important;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.prev-btn {
  left: 16px;
}

.next-btn {
  right: 16px;
}

.slider-btn svg {
  color: #eeeeee;
}

.glow-circle {
  position: absolute;
  width: 320px;
  height: 100px;
  background: #B888E2;
  border-radius: 50%;
  z-index: -1;
  filter: blur(32px);
  opacity: 0.6;
  box-shadow: 
    0 0 40px 4px #B888E2,
    0 0 60px 8px #B888E2,
    0 0 80px 16px rgba(184, 136, 226, 0.4);
}

.glow-circle.top {
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 
    0 0 40px 4px #B888E2,
    0 0 60px 6px #B888E2,
    0 0 80px 16px rgba(184, 136, 226, 0.7) !important;
}

.glow-circle.bottom {
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
}

/* TABLET BREAKPOINT */
@media (max-width: 1024px) {
  .slider-track {
    height: 450px;
  }
  
  .glow-circle {
    display: none;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-image-wrapper {
    /* OPRAVA: menší i na tabletu */
    width: 85%;
  }
  
  .slider-btn {
    /* OPRAVA: větší tlačítka i na tabletu */
    width: 54px;
    height: 54px;
  }
}

/* MOBILNÍ BREAKPOINT - HLAVNÍ OPRAVY */
@media (max-width: 768px) {
  .simple-slider {
    padding: 0 10px;
  }

  .slider-track {
    /* KRITICKÁ OPRAVA: rozumná výška pro mobil */
    height: 400px;
    width: 100%;
  }
  
  .slide-content {
    padding: 15px;
  }

  .slide-title {
    font-size: 1.5rem;
    padding: 8px 20px;
    margin-bottom: 12px;
  }

  .slide-image-wrapper {
    /* OPRAVA: menší šířka aby tlačítka měla prostor */
    width: 75%;
    max-width: 280px;
  }

  .slider-btn {
    /* OPRAVA: větší tlačítka pro lepší klikatelnost */
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .slider-btn svg {
    /* OPRAVA: větší SVG ikony */
    transform: scale(1.8);
    width: 28px;
    height: 28px;
  }

  .prev-btn {
    left: 8px;
  }

  .next-btn {
    right: 8px;
  }
}

/* MALÉ MOBILY */
@media (max-width: 480px) {
  .slider-track {
    height: 350px;
  }
  
  .slide-title {
    font-size: 1.25rem;
    padding: 6px 16px;
  }
  
  .slide-image-wrapper {
    /* OPRAVA: ještě menší pro malé mobily */
    width: 70%;
    max-width: 250px;
  }
  
  .slider-btn {
    /* OPRAVA: zachovat dostatečnou velikost i na malém mobilu */
    width: 52px;
    height: 52px;
  }
  
  .slider-btn svg {
    transform: scale(1.6);
  }
}

/* LANDSCAPE ORIENTACE NA MOBILU */
@media (max-width: 768px) and (orientation: landscape) {
  .slider-track {
    height: 80vh;
    max-height: 400px;
  }
}

/* PRO VELMI VELKÉ OBRAZOVKY */
@media (min-width: 1400px) {
  .slider-track {
    height: 600px;
  }
}

/* Double chevrons down animation */
.chevrons-down {
   animation: float 2000ms ease-in-out infinite; 
}

@keyframes float {
    0% { transform: translateY(0px); }     /* Start - "domácí pozice" */
    50% { transform: translateY(14px); }  /* Vrchol - "skok nahoru" */
    100% { transform: translateY(0px); }   /* Konec - zpět "domů" */
}


/* =============== */
/* Kontakt Section */
/* =============== */

#kontakt {
    position: relative;
    overflow: hidden !important;
}

/* Form */
.form-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.form-container {
    position: relative;
    z-index: 10;
    background: radial-gradient(circle at center, #181818 22%, #1E1E1E 78%, #1D1D1D 100%);
    border: 1px solid #3C3C3C;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.5vmin, 16px);
}

.form-glow {
    position: absolute;
    width: 620px;
    height: 442px;
    background: #B888E2;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    filter: blur(48px);
    opacity: 0.6;
    box-shadow: 
        0 0 60px 4px #7F3FBF,
        0 0 80px 8px #7F3FBF,
        0 0 120px 32px rgba(127, 63, 191, 0.7);
}

.form-row {
    display: flex;
    gap: clamp(8px, 1.5vmin, 16px);
}
.form-row input {
    flex: 1;
}

input, textarea {
    background: #121212;
    border: 2px solid #3C3C3C !important;
    border-radius: 16px !important;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    resize: none !important;
}
input::placeholder, textarea::placeholder {
    color: #6E6E6E;
    transition: color 0.3s ease;
}
input:focus, textarea:focus {
    border-color: #8845CB !important;
    box-shadow: 0 0 12px 4px rgba(136, 69, 203, 0.3);
}
input:focus::placeholder, textarea:focus::placeholder {
    color: #8845CB;
}

textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
    line-height: 1.5;
}

.submit-button {
    background: #7F3FBF !important;
    border: none !important;
    border-radius: 16px !important;
    color: #ffffff !important;
    padding: 8px;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

label {
    font-size: 0.9rem;
    color: #6E6E6E;
    padding-left: 8px;
    margin: 0 0 0 0;
}

/* contact form 7 styles */
.wpcf7-response-output {
    margin: 0 !important;
}

span.wpcf7-spinner {
    display: none !important;
}

/* ---------------------------------- */

.planet {
    position: absolute;
    width: 2400px;
    height: 1600px;
    border-radius: 50%;
    background: linear-gradient(to bottom, 
        #302243 0%,
        #1D081C 40%,
        #040508 66%
    );
    border: 2px solid rgba(109, 52, 167, 0.7);
    box-shadow: 
        0 0 60px 16px rgba(127, 63, 191, 0.5),
        0 0 80px 32px rgba(127, 63, 191, 0.4),
        0 0 100px 64px rgba(127, 63, 191, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -51%);
    z-index: 1;
}

/* HOVER EFFECTS */
@media (min-width: 1024px) {
    .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(127, 63, 191, 0.3);
        background: #7F3FBF !important;
    }
    .submit-button:active {
        transform: translateY(0);
    }
}

@media (min-width: 767px) and (max-width: 1024px) {
    .form-wrapper {
        padding-inline: 2rem !important;
    }
}

@media (max-width: 768px) {
    .form-glow {
        display: none;
    }
    .planet {
        display: none;
    }
}

@media (max-width: 768px) {
  #kontakt { scroll-margin-top: 80px; }
}
@media (min-width: 769px) {
  #kontakt { scroll-margin-top: 220px; }
}


/* ====== */
/* Footer */
/* ====== */

.footer-container {
    width: 100%;
    max-width: 1200px;
}

.horizontal-divider {
    width: 100%;
    height: 2px;
    background-color: #B888E2;
    border-radius: 16px;
    margin-top: auto;
}

#dolniBlurLista {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    z-index: 999;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    mask: linear-gradient(to top, black 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.3) 60%, transparent 100%);
    -webkit-mask: linear-gradient(to top, black 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.3) 60%, transparent 100%);
    transition: opacity 1000ms ease, visibility 1000ms ease;
    pointer-events: none;
}

@media (max-width: 768px) {
    #dolniBlurLista {
        height: 36px;
    }
}