/* ==========================================================================
   Kvety LUNEX – vlastné štýly (bez JS animácií, farebné sekcie + SVG vlnky)
   ========================================================================== */

:root {
  --lunex-primary: #161616;      /* čierna – hlavná farba */
  --lunex-primary-dark: #000000;
  --lunex-accent: #d98aa3;       /* svetlá ružová – jemný akcent */
  --lunex-green: #4f6f52;        /* zelená listová */
  --lunex-cream: #F1EFEB;        /* hlavná farba webu – teplá krémová */
  --lunex-blush: #F1EFEB;        /* rovnaká krémová – pre striedanie pásov */
  --lunex-sage: #E6E8D6;         /* hlavná farba webu – jemná olivová */
  --lunex-white: #fdf5f6;
  --lunex-dark: #2b2b2b;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--lunex-dark);
  background-color: #fdf5f6;
}

h1, h2, h3, h4, .brand-logo {
  font-family: var(--font-heading);
  font-weight: 400;
}

a { color: var(--lunex-primary); text-decoration: none; }
a:hover { color: var(--lunex-primary-dark); }

/* Ostré hrany v celom webe – žiadne zaoblenia, ani na kruhových ikonkách */
*, *::before, *::after { border-radius: 0 !important; }

.icon-sm { width: 16px; height: 16px; vertical-align: -3px; margin-right: 4px; }

/* ==========================================================================
   Hlavička (2 riadky na desktope, jednoduchá lišta na mobile)
   ========================================================================== */
.brand-logo { font-size: 2.4rem; font-weight: 400; color: var(--lunex-primary); }
.brand-accent { color: var(--lunex-green); }
.brand-logo-img { height: 60px; width: auto; display: block; }
.header-mobile .brand-logo-img { height: 49px; }
.header-col-center { display: flex; justify-content: center; align-items: center; }

.site-header { background: #fdf5f6; }

/* Riadok 1: logo | kontaktné údaje | tlačidlo Kontakt */
.header-row1 { padding: 12px 0; margin-bottom: 1.1rem; border-bottom: 1px solid rgba(0,0,0,.08); }
.header-col { flex: 1 1 0; }
.header-contact-info { font-size: .88rem; color: var(--lunex-dark); }
.header-contact-info a { color: var(--lunex-dark); }
.header-contact-info a:hover { color: var(--lunex-primary); }
.header-social a {
  color: var(--lunex-dark);
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
}
.header-social a:hover { color: var(--lunex-primary); }
.header-social i[data-lucide], .header-social svg { width: 15px; height: 15px; }

/* Riadok 2: centrované menu */
.header-row2 { padding: 12px 0; }
.nav-menu { gap: 2.2rem; }
.nav-menu > li > a {
  color: var(--lunex-dark);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: .3rem 0;
}
.nav-menu > li > a:hover, .nav-menu > li > a:focus { color: var(--lunex-primary); }

/* Položka "Služby" v menu = odkaz + samostatné tlačidlo so šípkou pre dropdown */
.nav-dropdown-item { display: flex; align-items: center; gap: .25rem; }
.dropdown-caret-btn {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--lunex-dark);
  cursor: pointer;
}
.dropdown-caret-btn svg { width: 16px; height: 16px; transition: transform .2s ease; }
.dropdown-caret-btn:hover, .dropdown-caret-btn:focus { color: var(--lunex-primary); outline: none; box-shadow: none; }
.dropdown-caret-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.dropdown-menu {
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.09);
  padding: .5rem 0;
  margin-top: .6rem !important;
  min-width: 15rem;
}
.dropdown-item {
  padding: .6rem 1.4rem;
  font-size: .9rem;
  color: var(--lunex-dark);
  transition: background-color .15s ease, color .15s ease;
}
.dropdown-item:hover, .dropdown-item:focus {
  background-color: var(--lunex-cream);
  color: var(--lunex-primary);
  outline: none;
  box-shadow: none;
}
.dropdown-item:active { background-color: var(--lunex-primary); color: #fff; }

/* Mobilná lišta */
.header-mobile { padding: .9rem 0; }

/* Hamburger tlačidlo – bez borderu, vlastná viditeľná ikonka (nezávislá od .navbar kontextu) */
.navbar-toggler {
  border: none;
  padding: .25rem;
  background: transparent;
  box-shadow: none !important;
}
.navbar-toggler-icon {
  width: 24px; height: 24px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23161616' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobilné menu ako bočný panel (offcanvas) */
.mobile-offcanvas {
  width: 300px;
  max-width: 86vw;
  background: #fff;
}
.mobile-offcanvas .offcanvas-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.mobile-offcanvas .btn-close { box-shadow: none; opacity: .7; }
.mobile-offcanvas .offcanvas-body { padding: 1.25rem; }

.mobile-nav { padding: .25rem 0 1rem; }
.mobile-nav > li > a {
  display: block;
  padding: .65rem 0;
  color: var(--lunex-dark);
  font-weight: 500;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile-nav-sub { padding-left: 1rem; }
.mobile-nav-sub li a { display: block; padding: .5rem 0; color: var(--lunex-dark); font-size: 13px; opacity: .85; }
.mobile-nav-contact {
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.mobile-nav-contact a { color: var(--lunex-dark); font-size: 14px; }
.mobile-nav-contact a i[data-lucide] { margin-right: .4rem; }

.btn-lunex {
  background-color: var(--lunex-primary);
  color: #fff !important;
  padding: 0.85rem 2.1rem;
  font-weight: 400;
  font-size: 0.92rem;
  border: none;
  transition: background-color .2s ease, transform .15s ease;
}
.btn-lunex:hover { background-color: var(--lunex-primary-dark); color: #fff; transform: translateY(-2px); }

.btn-outline-lunex {
  border: 1px solid var(--lunex-primary);
  color: var(--lunex-primary);
  padding: 0.8rem 2rem;
  font-weight: 400;
  font-size: 0.92rem;
  background: transparent;
}
.btn-outline-lunex:hover { background-color: var(--lunex-primary); color: #fff; }

.btn-lunex.btn-sm, .btn-outline-lunex.btn-sm, .btn-white-lunex.btn-sm { padding: 0.5rem 1.3rem; font-size: 0.82rem; }
.btn-lunex.btn-lg, .btn-outline-lunex.btn-lg, .btn-white-lunex.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

.btn-white-lunex {
  background-color: #fff;
  color: var(--lunex-dark) !important;
  padding: 0.85rem 2.1rem;
  font-weight: 400;
  font-size: 0.92rem;
  border: none;
  transition: background-color .2s ease, transform .15s ease;
}
.btn-white-lunex:hover { background-color: #f0f0f0; color: var(--lunex-dark) !important; transform: translateY(-2px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: #fdf5f6;
  color: var(--lunex-dark);
  padding: 2.75rem 0 4.5rem;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.4rem, 4vw + 1.4rem, 3.77rem); font-weight: 400; }
.hero p.lead { font-size: 1.15rem; color: #55524d; }
.hero-badge {
  display: inline-block;
  background: var(--lunex-cream);
  border: 1px solid rgba(0,0,0,.1);
  color: var(--lunex-dark);
  padding: .4rem 1rem;
  font-size: .85rem;
  letter-spacing: .5px;
}
.hero .btn-lunex.btn-lg,
.hero .btn-outline-lunex.btn-lg,
.hero .btn-white-lunex.btn-lg {
  padding: .6rem 1.5rem;
  font-size: .85rem;
}

/* Fotky po stranách hero textu (2 stĺpce fotiek, ľavý stĺpec posunutý nižšie) */
.ratio-hero { --bs-aspect-ratio: 128%; width: calc(100% - 25px); }
.hero-photos { display: flex; flex-direction: column; }
.hero-photos-left { padding-top: 70px; }
.hero-photos-left .ratio-hero { margin-left: 0; margin-right: auto; }
.hero-photos-right .ratio-hero { margin-left: auto; margin-right: 0; }
.hero-photo-item { margin-bottom: 1.75rem; }
.hero-photo-item:last-child { margin-bottom: 0; }
.hero-photo-item img { display: block; }

/* ==========================================================================
   Sekcie / farebné pásy
   ========================================================================== */
.section { padding: 4rem 0; }
.section-title-sub {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lunex-green);
  font-weight: 600;
  font-size: 0.85rem;
}
.section-title { font-size: clamp(1.7rem, 2.5vw + 1rem, 2.73rem); font-weight: 400; margin-bottom: 1rem; }
.section-white,
.section-cream,
.section-blush,
.section-sage { background-color: var(--lunex-white); }
.section-primary { background-color: var(--lunex-primary); color: #fff; }
.section-primary .section-title-sub { color: var(--lunex-accent); }

/* USP pásik */
.usp-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .6rem; }
.usp-item .usp-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: transparent;
  color: var(--lunex-primary);
  display: flex; align-items: center; justify-content: center;
}
.usp-item .usp-icon svg { width: 40px; height: 40px; stroke-width: 1.25; }

/* Service cards */
.service-card {
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform .2s ease;
  height: 100%;
  background: none;
}
.service-card:hover { transform: translateY(-4px); }
.service-card .service-icon {
  display: flex; align-items: flex-start; justify-content: flex-start;
  background: transparent;
  color: var(--lunex-primary);
  margin-bottom: 1rem;
}
.service-card .service-icon svg { width: 34px; height: 34px; stroke-width: 1.25; }
.service-card .card-body { padding: 1.6rem; }

/* Pobočky / lokácie */
.location-card {
  background: none;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.6rem;
  height: 100%;
}
.location-card .location-icon {
  width: 54px; height: 54px;
  background: transparent;
  color: var(--lunex-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .8rem;
}
.location-card .location-icon svg { width: 30px; height: 30px; stroke-width: 1.25; }
.location-card i[data-lucide] { color: var(--lunex-primary); }

.location-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.location-list-item:first-child { padding-top: 0; }
.location-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.location-list-item .location-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: transparent;
  color: var(--lunex-primary);
  display: flex; align-items: center; justify-content: center;
}
.location-list-item .location-icon svg { width: 22px; height: 22px; stroke-width: 1.25; }

/* Objednať kyticu – produktové karty a poznámka o cenách */
.alert-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--lunex-primary);
  border: none;
  padding: 1.4rem 1.7rem;
  font-size: .92rem;
  line-height: 1.6;
  color: #fff;
}
.alert-note i[data-lucide], .alert-note svg { width: 20px; height: 20px; min-width: 20px; color: #fff; margin-top: 2px; }
.alert-note strong { color: #fff; }

.product-card .card-body { padding: 1.6rem 0 0; }
.product-card h3 { margin-bottom: .6rem; }
.product-card p { margin-bottom: 1.1rem; }
.price-variants-plain {
  margin-top: .75rem;
  margin-bottom: 0;
  font-size: .88rem;
  font-weight: 500;
  color: var(--lunex-primary);
}

/* Testimonials */
.testimonial-card {
  background: #fdf5f6;
  padding: 2.4rem 2.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  color: var(--lunex-primary);
  opacity: .18;
  margin-bottom: .5rem;
}
.testimonial-quote svg { width: 34px; height: 34px; stroke-width: 1.5; }
.testimonial-author .fw-semibold { color: var(--lunex-green); }
.testimonial-text {
  color: var(--lunex-dark);
  font-size: 1rem;
  line-height: 1.7;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,.08);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50% !important;
  background: var(--lunex-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}
.testimonial-location {
  font-size: .82rem;
  color: #8a8a8a;
}

/* ==========================================================================
   Placeholder pre fotky (kým klient nedodá reálne obrázky)
   ========================================================================== */
.img-placeholder {
  background: repeating-linear-gradient(135deg, var(--lunex-blush) 0 18px, var(--lunex-sage) 18px 36px);
  border: 2px dashed rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
.img-placeholder-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.72);
  color: var(--lunex-primary-dark);
}
.img-placeholder-inner i[data-lucide] { width: 36px; height: 36px; margin-bottom: .5rem; opacity: .75; }
.img-placeholder-inner span { font-weight: 600; font-size: .95rem; line-height: 1.3; }
.img-placeholder-inner small { display: block; margin-top: .35rem; font-size: .72rem; opacity: .65; }

/* Gallery */
.gallery-item { overflow: hidden; }
.gallery-item .img-placeholder { width: 100%; height: 100%; }

.gallery-item-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-item-btn img { transition: transform .35s ease; }
.gallery-item-btn:hover img { transform: scale(1.07); }
.gallery-zoom-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,10,20,0);
  color: #fff;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
}
.gallery-item-btn:hover .gallery-zoom-overlay { opacity: 1; background: rgba(43,10,20,.35); }
.gallery-zoom-overlay i[data-lucide] { width: 30px; height: 30px; }

#lightboxModal .modal-content { background: transparent; border: 0; }
#lightboxModal .btn-close { filter: invert(1) grayscale(1) brightness(2); opacity: .9; }
#lightboxModal img { max-height: 82vh; width: auto; max-width: 100%; margin: 0 auto; display: block; }

/* CTA */
.cta-band {
  background: var(--lunex-primary);
  color: #FDF5F6;
  padding: 3rem;
}
.cta-band .btn-light {
  background-color: #FDF5F6;
  border-color: #FDF5F6;
  color: var(--lunex-dark);
  font-size: 17px;
}
.cta-band .btn-light:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--lunex-dark);
}

/* Footer – biely, minimalistický, v štýle headeru, s dostatkom priestoru */
.site-footer {
  background: none;
  color: var(--lunex-dark);
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 4rem;
  padding: 4.5rem 0 2rem;
}

.footer-main { margin-bottom: 3rem; }
.footer-center-col { display: flex; flex-direction: column; align-items: center; }
.footer-center-col .navbar-brand { margin-right: 0; }

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1.3rem;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: 1.2px;
  color: var(--lunex-dark);
}
.footer-links li { margin-bottom: .85rem; }
.footer-links a { color: #6b6862; font-size: 13px; }
.footer-links a:hover { color: var(--lunex-primary); }

.footer-contact-line { font-size: .95rem; }
.footer-contact-line a { color: var(--lunex-dark); }
.footer-contact-line a:hover { color: var(--lunex-primary); }
.footer-branches-link {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--lunex-primary);
  border-bottom: 1px solid var(--lunex-primary);
  padding-bottom: 1px;
}
.footer-branches-link:hover { color: #3e0c13; border-color: #3e0c13; }

.footer-social {
  width: 38px; height: 38px;
  background: #3e0c13;
  border: none;
  border-radius: 50% !important;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.footer-social i[data-lucide], .footer-social svg { width: 16px; height: 16px; }
.footer-social:hover { background: var(--lunex-primary); color: #fff; }

.footer-legal {
  padding: 1.6rem 0;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.footer-legal a { color: #6b6862; font-size: .85rem; }
.footer-legal a:hover { color: var(--lunex-primary); }

.footer-bottom { padding-top: 1.4rem; font-size: .82rem; color: #6b6862; }

.back-to-top {
  position: fixed; right: 20px; bottom: 20px;
  width: 46px; height: 46px;
  background: var(--lunex-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  z-index: 999;
}
.back-to-top:hover { background: var(--lunex-primary-dark); color: #fff; }

/* Breadcrumb / page header pre podstránky */
.page-header {
  position: relative;
  background: none;
  color: var(--lunex-dark);
  padding: 3rem 0 2.5rem;
  margin-top: 15px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.page-header h1 { font-weight: 400; }
.page-header .breadcrumb a { color: #6b6862; }
.page-header .breadcrumb-item.active { color: var(--lunex-dark); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: #a8a49d; }

/* Contact page */
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.contact-info-item .icon-wrap {
  width: 48px; height: 48px; min-width: 48px;
  background: transparent; color: var(--lunex-primary);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon-wrap svg { width: 28px; height: 28px; stroke-width: 1.25; }

/* Čierny box s centrálnym kontaktom */
.contact-black-box {
  background: var(--lunex-primary);
  color: #fff;
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contact-black-box h2 { font-size: 1.4rem; }
.contact-black-box .contact-info-item .icon-wrap { width: 34px; height: 34px; min-width: 34px; color: #fff; }
.contact-black-box .contact-info-item .icon-wrap svg { width: 20px; height: 20px; }
.contact-black-box .contact-info-item a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.contact-black-box .contact-info-item a:hover { color: rgba(255,255,255,.75); }
.contact-black-box .contact-info-item .small { color: rgba(255,255,255,.8); }
.contact-black-box .branch-icon { color: #fff; }
.contact-black-box p.small { color: rgba(255,255,255,.8); }

.branch-card {
  background: none;
  border: none;
  padding: 1.8rem 0 0;
  height: 100%;
  scroll-margin-top: 100px;
}
.branch-card-photo { margin: 0 0 1.4rem; width: auto; }
.branch-card-photo.img-placeholder { border: none; border-bottom: 1px solid rgba(0,0,0,0.08); }

.location-card-photo { margin: -1.6rem -1.6rem 1rem; width: auto; }

/* Čierny box – oddeľovač medzi centrálnym kontaktom a fakturačnými údajmi */
.contact-black-box-divider { border-color: rgba(255,255,255,.2); margin: 1.6rem 0; }
.branch-card-title { font-size: 1.2rem; }
.branch-card .branch-detail { display: flex; gap: .5rem; align-items: flex-start; margin-bottom: .5rem; font-size: .84rem; color: #6b6b6b; }
.branch-card .branch-detail i[data-lucide] { width: 10px; height: 10px; min-width: 10px; margin-top: 3px; color: var(--lunex-primary); }
.branch-card .branch-detail-hours span span { line-height: 1.5; }

.form-control:focus, .form-select:focus { border-color: var(--lunex-primary); box-shadow: 0 0 0 0.2rem rgba(0,0,0,.15); }

@media (max-width: 767.98px) {
  .hero { padding: 4.5rem 0 3.5rem; }
  .cta-band { padding: 2rem; }
  .container { padding-left: 15px; padding-right: 15px; }
}
