@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;700&display=swap');

/* Reset & Base styles */
body, p, h1, h2, h3, h4, h5, h6, .container {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Raleway', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  background-color: #000;
  color: #fff;
  line-height: 1;
}

 

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 100;
  text-align: center;
  line-height: 1;
}

h1 {
  font-family: 'Dancing Script', cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 60px;
  margin: 30px 0 5px;
}

h3 {
  font-weight: 700;
  font-size: 55px;
  letter-spacing: -3px;
  margin-bottom: 0;
}

h4 {
  font-weight: 100;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffffff;
}

h5 {
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 20px 0 5px;
}

/* Containers */
.image-container,
.contact-container {
  text-align: center;
  margin: 0;
}

.image-container img {
  max-width: 175px;
  height: auto;
  border-radius: 50px;
  margin: 0;
}

.social-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5;
  margin-top: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.social-icon {
  font-size: 2.8em;
}

/* Decorative line */
hr {
  opacity: 0;
  margin: 0;
}

/* Color styles */
.facebook { color: #1877f2; }

.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.threads { color: #ffffff; }

.whatsapp { color: #25D366; }

.viber { color: #665CAC; }



/* Bottom logo */
.bottom-link {
  text-align: center;
  margin-top: 20px;
}

.bottom-link img {
  max-width: 65px;

}

.container { width: 800px; }
h4 { line-height: 1.2; }
.services span::after { content: " · "; }
.services span:last-child::after  { content: ""; }






/* Responsive styles */

/* Mobile */
.container {
	max-width: 100%;
}
@media (max-width: 600px) {
  .image-container img {
    max-width: 200px;
    margin: 0 0;
  }

  h1 {
    font-size: 50px;
  margin: 15px 0 5px;
  }

  h3 {
    font-size: 40px;
    margin-bottom: 5px;
  }

  h4 {
    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1px;
  }
  
 h5 {
  font-weight: 200;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 20px 0 5px;
}

  .social-links {
    gap: 5px;
    margin: 0 0 25px;
  }

  .social-link {
    width: 50px;
    height: 50px;
  }

  .social-icon {
    font-size: 2.8em;
  }

  hr {
    margin: 0;
  }
  .bottom-link img {
    max-width: 75px;
  }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 992px) {
  .image-container img {
    max-width: 200px;
    margin: 15px 0;
  }

  h1 {
    font-size: 70px;
    margin-bottom: 10px;
  }

  h3 {
    font-size: 55px;
    margin-bottom: 5px;
  }

  h4 {
    font-weight: 100;
    font-size: 25px;
    letter-spacing: 0;
  }

  h4.bold { font-weight: 700; }
  h4.small { font-size: 20px; }

  .social-links {
    gap: 0;
    margin-bottom: 15px;
  }

  .social-link {
    width: 60px;
    height: 60px;
  }

  hr {
    margin: 15px 0 10px;
  }

  .bottom-link img {
    max-width: 150px;
  }
}

/* Large screens – připravené pro další úpravy */
@media (min-width: 993px) and (max-width: 1200px) { }

@media (min-width: 1201px) { }



  .flash-link {
    color: yellow;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    animation: flash 1s infinite;
  }
/*
  .flash-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,0,0.5) 0%, transparent 70%);
    opacity: 0;
    animation: glow 1s infinite;
    z-index: -1;
    border-radius: 50%;
  }
*/
  @keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  @keyframes glow {
    0% { opacity: 0.2; }
    50% { opacity: 0.6; }
    100% { opacity: 0.2; }
  }

