/* ZÁKLADNÍ STYL */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #eee;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: normal;
    color: #eee;
    text-align: center;
}

/* Globální kontejner pro všechny stránky */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* NAVIGACE */
#navbar {
    background: linear-gradient(to right, #f5f2ee, #d2b48c);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px; /* zvětšíme vertikální padding */
    position: sticky;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
    position: relative;
}
.logo {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    font-weight: normal;
    color: black;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.logo-img {
    height: 100px;
    width: auto;
    margin-right: 0;
}

.nav-links li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: inline-block; /* DŮLEŽITÉ pro správné zvětšení! */
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Efekt při najetí myší */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #73C2FB; /* světle modrá linka (např. barva očí) */
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: #73C2FB; /* Světle modrá */
    transform: scale(1.1); /* Jemné zvětšení */
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    
    
}

.bar {
    background-color: rgb(212, 32, 32); /* Modrá barva čárek */
    height: 3px;
    width: 25px;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}
/* ÚVOD */
.hero {
    height: 100vh;
    background: url('assets/archie-uvod.JPG') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: introFadeInUp 1.2s ease forwards;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}




.btn {
    padding: 10px 20px;
    font-size: 20px;
    color: #111;
    background-color: #d2b48c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease; /* přidáme plynulý přechod */
}

.btn:hover {
    background-color: #73C2FB; /* světle modrá při najetí */
    color: #111; /* barva textu zůstane tmavá kvůli kontrastu */
    transform: scale(1.05); /* jemné zvětšení */
}

/* O MNĚ */
.about-hero {
    position: relative;
    background: url('assets/archie3.jpg.JPG') no-repeat center center/cover;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 0;
}

.about-box {
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.iam {
    margin: 0;
    font-size: 24px;
}

.name {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

.name + p {
    margin-top: 20px;
    font-size: 18px;
}

/* FOTOGALERIE */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ZMĚNA: max 2 sloupce */
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* KONTAKT */
.contact-hero {
    position: relative;
    background: url('assets/archie6.jpg.JPG') no-repeat center center/cover;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.contact-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    background: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
}

.contact-info {
    margin-bottom: 30px;
    font-size: 18px;
    color: #eee;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-group input,
.input-group textarea {
    padding: 15px;
    background: transparent;
    border: 1px solid #555;
    border-bottom: 2px solid #eee;
    color: #eee;
    font-size: 16px;
    border-radius: 8px;
}

button.btn {
    background-color: #d2b48c;
    color: #111;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.btn:hover {
    background-color: #d2b48c;
}

/* TELEFON LINK */
.phone-link {
    color: white;
    text-decoration: none;
}

.phone-link:hover {
    text-decoration: underline;
}

/* RESPONSIVITA */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 20px;
    }

    .name {
        font-size: 28px;
    }

    .iam {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: linear-gradient(to right, #f5f2ee, #d2b48c);
        position: absolute;
        padding: 20px 20px 40px 20px;
        top: 25px;
        right: 0;
        width: 100%;
        border-radius: 8px;
        align-items: center;
    }
    .nav-links.active {
        display: flex;
    }
}

/* ANIMACE */
@keyframes introFadeInUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}

.about-box {
    animation: introFadeInUp 1s ease forwards;
}

.gallery-grid {
    animation: introFadeInUp 1s ease forwards;
}

.contact-container {
    animation: introFadeInUp 1s ease forwards;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.social-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #eee;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #73C2FB; /* při najetí změníme na světle modrou */
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.short-about {
    background-color: #f5f2ee;
    padding: 60px 20px;
    text-align: center;
    animation: introFadeInUp 1.2s ease forwards;
}

.short-about p {
    max-width: 700px;
    margin: 20px auto;
    font-size: 18px;
    color: #333;
}

.cta {
    background: linear-gradient(to right, #d2b48c, #f5f2ee);
    padding: 60px 20px;
    text-align: center;
    animation: introFadeInUp 1.2s ease forwards;
}

.cta p {
    margin: 20px auto;
    font-size: 18px;
    color: #333;
}

.nadpis1, .nadpis2 {
    color: black;
    font-weight: bold;
}

/* SEKCE DVA SLOUPCE */
.dual-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)),
    url('assets/svg.svg') no-repeat center center/cover;
    background-attachment: fixed; /* volitelné pro parallax efekt */
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 10%;
    box-sizing: border-box;
}

.dual-column {
    flex: 1 1 100%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    opacity: 0;
    transition: all 1s ease;
    will-change: opacity, transform;
}



/* Levý sloupec */
.dual-column.left {
    background-color: #f5f5f5;
    color: black;
    text-align: center;
}

.dual-column.left.animate {
    opacity: 1;
    animation: fadeInLeftClean 0.9s ease-out forwards;
}

/* Pravý sloupec */
.dual-column.right  {
    background-color: #e8e4df;
    color: black;
    text-align: center;
}
.dual-column.right.animate {
    opacity: 1;
    transform: translateX(0);
    animation: fadeInRight 1s ease forwards;
}

/* Tlačítka uvnitř */
.dual-column .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #d2b48c;
    color: #111;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.dual-column .btn:hover {
    background-color: #73C2FB;
    color: #111;
    transform: scale(1.05);
}

.about-image {
    width: 55%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.05); /* jemné přiblížení na hover */
}

/* RESPONSIVITA pro mobily */
@media (max-width: 768px) {
    .dual-section {
        flex-direction: column;
    }
    .dual-column {
        flex: 1 1 100%;
    }
}


html {
    scroll-behavior: smooth;
}

@media (min-width: 1010px) {
    .dual-section {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }
    .dual-column {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@keyframes fadeInLeftClean {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* /

Rodina
 */
 .family-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('assets/svg.svg') no-repeat center center/cover;
   
    padding: 60px 20px;
    
    text-align: center;
    animation: introFadeInUp 1.2s ease forwards;
}

.family-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.family-member img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.family-member img:hover {
    transform: scale(1.05);
}

.family-member p {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.archietucne {
    font-weight: bold;
    font-size: 60px;
    color: #d2b48c;
    letter-spacing: 13px;
}

.site-footer {
    background: linear-gradient(to right, #f5f2ee, #d2b48c);
    padding: 40px 20px;
    text-align: center;
    color: #111;
    margin-top: 50px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    border-radius: 50%; /* zakulacené logo, stejné jako nahoře */
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav li a {
    text-decoration: none;
    color: #111;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: #73C2FB;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.copyright {
    margin-top: 30px;
    font-size: 14px;
    color: #333;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f5f2ee;
    color: #111;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.cookie-banner p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    background-color: #d2b48c;
    color: #111;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cookie-btn:hover {
    background-color: #73C2FB;
}

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* Vycentruje celý blok */
    padding: 60px 10%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('assets/svg.svg') no-repeat center center/cover;
    background-attachment: fixed;
}

.about-block {
    display: flex;
    align-items: center;
    justify-content: center; /* 👈 Vycentruje obsah v rámci bloku */
    gap: 40px;
    max-width: 1000px;       /* Přesně omezená šířka */
    width: 100%;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}
.about-block.animate {
    opacity: 1;
    transform: translateY(0);
  }
  
  .about-block.reverse {
    flex-direction: row-reverse;
  }

.about-block.reverse {
    flex-direction: row-reverse;
}
.about-image {
    flex: 0 0 40%;
    max-width: 400px;
  }

  .about-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

  .about-image img:hover {
    transform: scale(1.05);
  }
  

  .about-text {
    background-color: rgba(255, 255, 255, 0.95);
    color: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
}

  .about-text h2 {
    color: #d2b48c;
    margin-bottom: 10px;
    font-weight: bold;
  }
  @media (max-width: 768px) {
    .about-block {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }
}


/* Responsivita */
@media (max-width: 900px) {
    .family-grid {
        grid-template-columns: 1fr;
    }
}




.form-success, .form-error {
    max-width: 600px;
    margin: 100px auto 40px auto;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: introFadeInUp 0.8s ease forwards;
}

.form-success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.content{
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('assets/svg.svg') repeat;
background-size: cover;
padding: 60px 20px;
}

.glide__slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    object-fit: cover;
  }
  
  section.content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 2em 0 1em;
    text-align: center;
    font-size: 2.2em;
    color: #111;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
  }
  
  /* Šipky uprostřed výšky obrázku */
  .glide {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .center-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; /* aby neblokovalo swipe */
  }
  
  .glide__arrow {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 2rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    pointer-events: auto; /* aby šly kliknout */
    z-index: 10;
  }
  
  .glide__arrow:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  /* Navigační tečky */
  .glide__bullets {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  
  .glide__bullet {
    width: 12px;
    height: 12px;
    background: #aaa;
    border-radius: 50%;
    cursor: pointer;
    border: none;
  }
  
  .glide__bullet.glide__bullet--active {
    background: #333;
  }
  
  /* Mobilní přizpůsobení */
  @media (max-width: 768px) {
    .glide__arrow {
      font-size: 1.5rem;
      padding: 8px 12px;
    }
  }

  
 