/* Hostinger Website Builder / Zyro Astro layout — reconstructed for local restore */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: #1d1e20;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.page { width: 100%; overflow-x: hidden; }

.blocks { width: 100%; }

.block {
  position: relative;
  width: 100%;
}

.block--footer { margin-top: 0; }

/* Background layers */
.block-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.block-background--fixed { position: fixed; }

.block-background__image,
.block-background__image--fixed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.block-background__overlay,
.block-background__overlay--fixed {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: var(--d8b4c4e2, 0);
  pointer-events: none;
}

.block-background[style*="--d8b4c4e2:0.53"] .block-background__overlay,
.block-background[style*="--d8b4c4e2:0.53"] .block-background__overlay--fixed {
  opacity: 0.53;
}

.block-background[style*="--d8b4c4e2:0.50"] .block-background__overlay,
.block-background[style*="--d8b4c4e2:0.50"] .block-background__overlay--fixed {
  opacity: 0.5;
}

.block-background[style*="--d8b4c4e2:0.41"] .block-background__overlay,
.block-background[style*="--d8b4c4e2:0.41"] .block-background__overlay--fixed {
  opacity: 0.41;
}

.block-background[style*="--d8b4c4e2:0.69"] .block-background__overlay,
.block-background[style*="--d8b4c4e2:0.69"] .block-background__overlay--fixed {
  opacity: 0.69;
}

.block-background[style*="--d8b4c4e2:0.00"] .block-background__overlay,
.block-background[style*="--d8b4c4e2:0.00"] .block-background__overlay--fixed {
  opacity: 0;
}

/* Grid layout system */
.block-layout,
.block-layout--layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: var(--width, 1224px);
  margin: 0 auto;
  padding: var(--block-padding, 16px 0);
  padding-top: var(--block-padding-top, var(--block-padding, 16px));
  padding-right: var(--block-padding-right, 0);
  padding-bottom: var(--block-padding-bottom, var(--block-padding, 16px));
  padding-left: var(--block-padding-left, 0);
  min-height: var(--block-min-height, auto);
  grid-template-columns: var(--grid-template-columns, repeat(12, 1fr));
  grid-template-rows: var(--grid-template-rows, auto);
  column-gap: var(--column-gap, 24px);
  row-gap: var(--row-gap, 16px);
  align-items: stretch;
}

.layout-element {
  position: relative;
  min-width: 0;
}

.layout-element--layout {
  display: flex;
  flex-direction: column;
  align-items: var(--align, flex-start);
  justify-content: var(--justify, flex-start);
  text-align: var(--text, left);
  margin: var(--m-element-margin, 0);
  z-index: var(--z-index, 1);
  grid-row: var(--grid-row, auto);
  grid-column: var(--grid-column, auto);
}

.layout-element__component {
  width: 100%;
}

/* Typography */
.text-box h1, .text-box h2, .text-box h3, .text-box h4, .text-box h5, .text-box h6, .text-box p {
  margin: 0;
  line-height: var(--lineHeightDesktop, 1.4);
  font-size: var(--fontSizeDesktop, inherit);
}

.body, .body-large {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
}

.body-large { font-size: 18px; }

/* Buttons */
.grid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: "Red Hat Display", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.grid-button--primary {
  background: #c9a227;
  color: #fff;
}

.grid-button--primary:hover { opacity: 0.9; }

/* Images */
.image-wrapper { width: 100%; }

.image-wrapper--layout,
.image-wrapper--desktop { display: block; }

.image__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image--grid { overflow: hidden; }

/* Gallery */
.gallery { width: 100%; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.gallery__image { overflow: hidden; }

/* Slideshow */
.slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  width: 100%;
  display: none;
}

.slide:first-child,
.dot--current + .slide,
.slideshow .slide:nth-child(1) { display: block; }

.slideshow-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.slideshow-nav-button--left { left: 12px; }
.slideshow-nav-button--right { right: 12px; }

.slideshow__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
}

.dot--current { background: #fff; }

/* Header / navigation */
.top-blocks { position: relative; z-index: 20; }

.top-blocks--sticky { position: sticky; top: 0; }

.block-header {
  position: relative;
  width: 100%;
  z-index: 20;
}

.block-header-layout-desktop,
.block-header-layout-mobile {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.block-header-layout-desktop { min-height: 116px; }

.block-header-layout-mobile { min-height: 117px; }

.block-header-layout-desktop__right-side {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.block-header__logo,
.block-header-logo { display: flex; align-items: center; }

.block-header-logo__image {
  height: 116px;
  width: auto;
  object-fit: contain;
}

.block-header__nav { display: flex; align-items: center; }

.block-header__nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.block-header-item { display: flex; }

.block-header-item__label {
  font-family: "Red Hat Display", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  transition: opacity 0.2s;
}

.block-header-item__label:hover { opacity: 0.8; }

.item-content-wrapper { display: flex; align-items: center; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger__bun, .burger__meat {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

.block-header-layout-mobile__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.92);
  padding: 16px;
  z-index: 30;
}

.block-header-layout-mobile__dropdown--link-align-right .block-header__nav-links {
  flex-direction: column;
  align-items: flex-end;
}

/* Social icons */
.social-icons__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
}

.social-icons__link svg { width: 24px; height: 24px; fill: currentColor; }

/* Map */
.grid-map {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.grid-map__frame {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.grid-map__pin { display: none; }

/* Transitions */
.transition--slide {
  opacity: 1;
  transform: none;
}

.transition--root-hidden { visibility: hidden; }

/* Small desktop */
@media (max-width: 1200px) {
  .block-layout--layout {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    min-height: var(--small-desktop-block-min-height, var(--block-min-height, auto));
    grid-template-rows: var(--small-desktop-grid-template-rows, var(--grid-template-rows, auto));
  }
}

/* Tablet */
@media (max-width: 992px) {
  .block-layout--layout {
    grid-template-rows: var(--t-grid-template-rows, var(--grid-template-rows, auto));
    min-height: var(--t-block-min-height, var(--block-min-height, auto));
  }

  .text-box h1, .text-box h2, .text-box h3, .text-box h4, .text-box h5, .text-box h6, .text-box p {
    line-height: var(--lineHeightMobile, var(--lineHeightDesktop, 1.4));
    font-size: var(--fontSizeMobile, var(--fontSizeDesktop, inherit));
  }
}

/* Mobile */
@media (max-width: 768px) {
  .block-header-layout-desktop { display: none; }
  .burger { display: flex; }

  .block--mobile-hidden { display: none !important; }
  .block--desktop-first-visible { display: none; }
  .block--mobile-first-visible { display: block; }

  .block-layout--layout {
    grid-template-columns: var(--m-grid-template-columns, repeat(4, 1fr));
    grid-template-rows: var(--m-grid-template-rows, auto);
    column-gap: var(--m-column-gap, 16px);
    row-gap: var(--m-row-gap, 12px);
    min-height: var(--m-block-min-height, auto);
    padding: var(--m-block-padding, 16px);
  }

  .layout-element--layout {
    grid-row: var(--m-grid-row, var(--grid-row, auto));
    grid-column: var(--m-grid-column, var(--grid-column, auto));
    width: var(--m-width, auto);
  }

  .block-header-logo__image { height: 69px; }

  .block-header-layout-mobile__dropdown.is-open { display: block; }
}

@media (min-width: 769px) {
  .block-header-layout-mobile { display: none; }
  .block--mobile-first-visible { display: none; }
  .block--desktop-first-visible { display: block; }
}

/* WhatsApp widget (from inline head styles) */
.whats-app-bubble {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 17;
  display: flex;
  cursor: pointer;
  border-radius: 100px;
  box-shadow: rgba(0, 0, 0, 0.15) 0 4px 12px;
}
