* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    background: #f4f6f8;
    color: #333;
  }
  
  .minimal-header {
    text-align: center;
    padding: 2rem 1rem 1rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .header-name {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #3C69C3;
    margin-bottom: 0.5rem;
  }
  
  .minimal-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }
  
  .minimal-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .minimal-nav a:hover {
    color: #c7a008; /* zlatý akcent */
  }
  
  /* Hero sekcia */
  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: #f4f6f8	;
    flex-wrap: wrap;
    gap: 5px;
    text-align: left;
  }
  
  .hero-left {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 350px;
  }
  
  .hero-photo {
    width: 280px;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .hero-right {
    flex: 1;
    max-width: 400px;
  }
  
  .hero-right h1 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: #3C69C3;
    margin-bottom: 0.5rem;
  }
  
  .hero-right h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
  }
  
  .hero-right p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .hero-left,
    .hero-right {
      max-width: 100%;
    }
  
    .hero-photo {
      margin-right: 0; /* zrušenie horizontálneho odsadenia */
    }
  
    .hero-right {
      margin-top: 1rem; /* malý vertikálny odstup od fotky */
    }
  }
  
  .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #C3963C;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #b39407;
  }
  
  /* Galéria */
  .gallery {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f4f6f8	;
  }
  
  .photos {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }
  
  .photo-box {
    width: 200px;
    height: 200px;
    background: linear-gradient(to top, #74d680, #c6f1ff);
    border-radius: 4px;
  }
  
  /* Sekcie */
  .section {
    padding: 3rem 2rem;
    background-color: #f4f6f8	;
  }
  
  .section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Lora', serif;
  }
  
  /* Karty */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .card {
    background-color: #f4f6f8	;
    color: #ff0000;
    border-radius: 4px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Open Sans', sans-serif;
    transition: transform 0.3s ease;
    width: 300px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* Tlačidlo */
  .floating-btn {
    width: 60px;
    height: 60px;
    background-color: #C3963C;
    border-radius: 4px;
    position: fixed;
    bottom: 25px;
    right: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .floating-btn:hover {
    background-color: #C3963C;
  }
  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background-color: #f4f6f8	;
    padding: 2rem;
    border-radius: 4px;
    width: 90%;
    max-width: 400px;
    position: relative;
  }
  
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .modal form {
    display: flex;
    flex-direction: column;
  }
  
  .modal form label {
    margin-top: 1rem;
  }
  
  .modal form input,
  .modal form textarea {
    padding: 0.5rem;
    margin-top: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  .modal form button {
    margin-top: 1.5rem;
    padding: 0.7rem;
    background-color: #3C69C3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* Footer */
  .footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 2rem;
  }
  .about-section {
    background-color: #3C69C3			;
    padding: 10px 2rem;
    text-align: center;
  }
  
  .about-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .about-container h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #ffffff		;
    margin-bottom: 1rem;
  }
  
  .about-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #ffffff;
  }
  
  .stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    text-align: left;
  }
  
  .stat-icon {
    font-size: 2rem;
    color: #C3963C;
  }
  .services-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
  }
  
  .services-section h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #3C69C3;
    margin-bottom: 2rem;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background-color: #3C69C3;

    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    height: 320px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-end;
  }
  .service-card2 {
    background-color: #3C69C3;

    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    height: 320px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-end;
  }
  
  .service-card .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
    padding: 1.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.3s ease;
        transition: all 0.3s ease;
        opacity: 0.95;
      
      
  }
  .service-card2 .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
    padding: 1.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.3s ease;
        transition: all 0.3s ease;
        opacity: 0.95;
      
      
  }
  
  .service-card:hover .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  }
  .service-card2:hover .overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  }
  .service-card h3 {
    font-size: 1.3rem;
    margin-top: 25px;
  }

  .service-card2 h3 {
    font-size: 1.3rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .service-card2 p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .service-modal {
    display: none; /* defaultne skryté */
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
  }
  .service-modal .modal-content p {
    margin-top : 15px;
    margin-bottom: 15px;
  }
  
  
  .service-modal .modal-content {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  }
  
  .service-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000000;
  }
  .service-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
  }
  .service-card2:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
  }
  .service-card .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #C3963C; /* alebo zlatá: #c7a008 pre akcent */
  }
  .service-card2 .icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #C3963C; /* alebo zlatá: #c7a008 pre akcent */
  }
  .navbar {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    /*FOOTER*/
  }
  .footer {
    background-color: #111;
    color: white;
    padding: 3rem 2rem;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  
  .footer-left h3 {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
  }
  
  .footer-left p {
    margin: 0.3rem 0;
  }
  
  .footer-socials {
    margin-top: 1rem;
  }
  
  .footer-socials a {
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .footer-socials a:hover {
    color: #c7a008; /* zlatý akcent */
  }
  
  .footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .footer-right a {
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }
  
  .footer-right a:hover {
    text-decoration: underline;
  }
  
  .footer-right p {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
  }
  .reviews-section {
    background-color: #f4f4f4;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
  }
  
  .reviews-section h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #3C69C3;
    margin-bottom: 2rem;
  }
  
  .carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .review-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
  }
  
  .review-card.active {
    display: block;
  }
  
  .review-card .stars {
    color: #c7a008;
    font-size: 1.2rem;
    margin-top: 1rem;
  }
  
  .review-card span {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #555;
  }
  
  .carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #3C69C3;
    color: white;
    border: none;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .carousel .prev {
    left: -50px;
  }
  
  .carousel .next {
    right: -50px;
  }
  .gallery-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;

}

.gallery-section h2 {
  color: #3C69C3;
  font-size: 2rem;
  margin-bottom: 2rem;
    font-family: 'Lora', serif;

}

.masonry-gallery {
  column-count: 3;
  column-gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry-gallery img {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 4px;
  display: block;
  transition: transform 0.3s;
  cursor: pointer;
}

.masonry-gallery img:hover {
  transform: scale(1.03);
}

@media screen and (max-width: 900px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media screen and (max-width: 600px) {
  .masonry-gallery {
    column-count: 1;
  }
}
