body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-image: url(dark2.jpg);
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    
    
}

html, body {
  overflow-x: hidden;
}

a {
    transition: color 0.3s ease;
}

h1 {
    font-family: "Michroma", sans-serif;
    font-size: 3em;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;

    background: linear-gradient(to bottom, #00dfff, #007acc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        1px 1px 2px rgba(0, 0, 0, 0.25),
        0 0 12px rgba(0, 191, 255, 0.6);
}

.sticky-header h1 {
    margin: 0;
    padding: 0;
}


/* HLAVIČKA */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(190, 18, 18, 0.829);
    background-size: cover;
    height: 60px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    backdrop-filter: none;
}

.logo img {
    height: 90px;
}

nav {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #f3f3f3;
    border-radius: 2px;
    display: block;
}

.menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.menu li a {
    color: #00a0fd;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    position: relative;
}

.menu li a:hover,
.menu li a.active {
    color: #00a0fd;
}

.menu li a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 2px;
    width: 100%;
    background: #00a0fd;
}

/* HERO */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('tvuj-obrazek.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24,28,35,0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 1.5s ease;
}

.hero h1 {
    font-size: 6rem;
    margin-top: 100px;
}

.hero p {
    font-size: 1.8rem;
    color: #00a0fd;
    margin-bottom: 2rem;
    text-shadow: 6px 6px 8px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #007acc;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-hero:hover {
    background: #0099cc;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* SEKCE */
.section {
    max-width: 1200px;
    width: 90%;
    margin: 4rem auto;
    padding: 2rem;
    background: #13151d;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    scroll-margin-top: 130px;
}

.section h2 {
    color: #00bfff;
    margin-top: 0;
}

.services,
.pricing-list {
    list-style: none;
    padding: 0;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.services li {
    background: #181c23;
    padding: 1rem 2rem;
    border-radius: 8px;
    flex: 1 1 200px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* CENÍK */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch; 
  padding: 2rem;
}

.pricing-card {
  background: #181c23;
  color: #f0f0f0;
  padding: 1.5rem;
  border-radius: 12px;
  flex: 1 1 320px; 
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: left;
}
.pricing-card h3 {
  color: #00a0fd;
  text-align: center;
  margin-bottom: 0.8rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}
.pricing-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
}

.pricing-header {
  min-height: 5.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.pricing-card h4 {
  font-size: 1rem;
  color: #129094;
  margin: -0.3rem 0 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* GALERIE */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.gallery img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px #00bfff55;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(24,28,35,0.95);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 2px 32px #00bfff55;
}

.lightbox .close {
    position: absolute;
    top: 40px;
    right: 60px;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
}

/* FORMULÁŘ */
.contact-info a {
  color: #00bfff;       /* nebo jiná barva, která ti ladí */
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  color: #0099cc;
  text-decoration: underline;
}

h3 {
  font-size: 1.3rem;
  color: #00bfff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center; /* pokud chceš zarovnat na střed */
  font-weight: 600;
}

.contact-form {
    display: grid;
    gap: 1rem;
    max-width: 500px;
    margin: auto;
    
    
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    color: #ccc;
    font-size: 0.95rem;
    
}

.contact-form input,
.contact-form textarea {
    padding: 0.9rem;
    border-radius: 6px;
    border: none;
    background: #1f232d;
    color: #f3f3f3;
    font-size: 1rem;
    resize: vertical;
    margin-top: 0.4rem;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: #00bfff;
    color: #181c23;
    border: none;
    border-radius: 6px;
    padding: 0.9rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    margin-top: 0.5rem;
    margin:2rem;
}

.contact-form button:hover {
    background: #0099cc;
    color: #fff;
}

/* MAPA + PATIČKA */
.map-container {
    width: 50%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

footer {
  text-align: center;
  padding: 2rem 1rem 1rem;
  background-color: rgba(190, 18, 18, 0.829); /* poloprůhledná červená */
  backdrop-filter: blur(2px);              /* skleněný rozostřený efekt */
  -webkit-backdrop-filter: blur(2px);      /* podpora pro Safari */
  background-size: cover;
  background-position: center;
  color: #fdfdfd;
  font-size: 1.2rem;
  margin-top: 3rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
  border-top: 1px solid rgba(255,255,255,0.2); /* jemný horní okraj */
}

footer p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}

footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #00bfff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

footer i.fab {
  font-size: 1rem;
  vertical-align: middle;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: rgba(190, 18, 18, 0.829);
  margin: 10% auto;
  padding: 20px;
  max-width: 600px;
  border-radius: 5px;
  box-shadow: 0 0 10px #333;
}

.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.modal-content a[href^="mailto:"] {
  color: #00bfff; /* Nahraď svou barvou */
  text-decoration: underline; /* Nebo none, pokud nechceš podtržení */
}


#body {
  margin: 0;
  padding: 0;
  font-family: 'Michroma', sans-serif;
  height: 3000px; /* kvůli scrollování */
  background-color: #f3f3f3;
}

@keyframes wiggle {
  from { transform: rotateZ(var(--angle, 10deg)); }
  to   { transform: rotateZ(calc(var(--angle, 10deg) + 10deg)); }
}

@keyframes float {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(10px); }
}
/* SCROLL TO TOP */
#toTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00a0fd;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
}

#toTop:hover {
    background: #0099cc;
}

/* RESPONSIVITA */
@media (max-width: 900px) {
    .menu {
        gap: 1rem;
    }
    .section {
        max-width: 98vw;
    }
}

@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #232733;
        padding: 1rem;
        display: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }

    
    .hero h1 {
    font-size: 2.8rem; /* přizpůsobená velikost pro mobily */
    margin-top: 60px;  /* můžeš doladit podle potřeby */
  }

}