/* =======================
   GLOBAL
======================= */

* { box-sizing: border-box; }

html {
  line-height: 1.5;
  scroll-behavior: smooth;
  /* important when header is fixed */
  scroll-padding-top: 20vh;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

#app {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.page-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
p {
  font-weight: 300;
  color: rgb(85, 85, 85);
  font-size: 1.4rem;
  padding-bottom: 1rem;
  margin: 0;
}

.p_bolder { font-weight: 500; }

h1, h2, h3 {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  margin: 0;
}

h1 { font-style: italic; font-size: 4.5vw; }
h2 { font-weight: 400; font-size: 3vw; }
h3 { font-weight: 300; font-size: 2.5vw; }

a { transition: all 300ms ease; }

/* =======================
   HEADER / NAV
======================= */

header {
  background-color: white;
  border-bottom: black 3px solid;
  position: fixed;
  top: 0;
  height: 20vh;
  width: 100%;
  z-index: 999;
}

#desktop-nav {
  display: flex;
  width: 100%;
  position: absolute;
  justify-content: space-around;
  align-items: center;
  height: 20vh;
}


#hamburger-nav { position: relative; z-index: 2000; }

.menu-links {
  z-index: 3000;
}

.hamburger-icon {
  z-index: 4000;
  position: relative;
}
.menu-links { transition: all 0.3s ease-in-out; }
.hamburger-icon span { transition: all 0.3s ease-in-out; }

#hamburger-nav {
  display: none;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  height: 20vh;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.logo-link img {
  max-width: 70%;
  height: auto;
  object-fit: contain;
}

.logo-link img:hover { cursor: pointer; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-size: 1rem;
  margin: 0 0 0 50px;
  padding: 0;
  align-items: center;
}

.nav-links li { display: inline-block; }

a {
  font-weight: 300;
  color: black;
  text-decoration: none;
  text-decoration-color: white;
  text-align: left;
}

a:hover {
  color: grey;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-thickness: 3px;
  text-decoration-color: black;
}

/* Button */
.btn-register {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-register:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

/* Hamburger */
.hamburger-menu { position: relative; }

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  width: 22px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger-icon span {
  width: 100%;
  height: 3px;
  background-color: black;
  transition: all 0.3s ease-in-out;
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  width: 160px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-bottom: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-links li { list-style: none; }

.menu-links a {
  display: block;
  padding: 10px;
  text-align: right;
  font-size: 1rem;
  color: black;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.menu-links a:hover { color: grey; }

.menu-links.open {
  max-height: 400px;
  border-bottom: black 3px solid;
}

.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-icon.open span:nth-child(2) { opacity: 0; }

.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =======================
   SECTIONS
======================= */

section { display: block; }

.section-divider { margin-top: 20vh; }

.title {
  color: rgb(50, 50, 50);
  font-style: normal;
  text-align: center;
}

/* Utility */
.w-full { width: 100%; }
.border-top { border-top: rgb(53, 53, 53) 0.1rem solid; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }

.tarpas {
  width: 100%;
  padding-bottom: 5rem;
  background-color: rgb(245, 239, 232);
}

/* =======================
   PROFILIS / HERO
======================= */

#profilis { position: relative; }

.profilis_main_container {
  display: flex;
  background-image: url("./assets/spa-accessories-grey.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 80vh;
  width: 100%;
}

.profilis-text_container {
  display: flex;
  width: 50%;
  margin-top: 18rem;
  margin-left: 100px;
  position: absolute;
  align-items: center;
}

.profilis-text h1 {
  color: rgb(50, 50, 50);
  text-align: left;
}

/* =======================
   PASLAUGOS
======================= */

#paslaugos { position: relative; }

.paslaugos-text_info_main_container {
  display: flex;
  flex-direction: column;
}

.paslaugos-text_info_containers {
  margin-left: 15%;
  margin-right: 15%;
  text-align: center;
}

.w-full_min {
  width: 100%;
  height: auto;
  background-color: rgb(245, 239, 232);
}

.minutes_container {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.minutes {
  margin: 0.7rem;
  width: 100%;
}

.minutes p {
  text-align: justify;
  letter-spacing: 0.1pt;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}

.minutes h3 {
  font-size: 1.2rem;
  font-weight: bold;
}

.minutes_home {
  margin-top: 2rem;
  text-align: center;
  padding-bottom: 2rem;
}

/* Service cards */
.paslaugos__item {
  border-right: rgb(53, 53, 53) 0.1rem solid;
  border-bottom: rgb(53, 53, 53) 0.1rem solid;
  padding: 2rem;
}

.bg-white100 { background: #fff; }

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
}

.paslaugos__info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding: 0.75rem;
}

.mb-3 { margin-bottom: 0.75rem; }

.pasl_subtitle { font-size: 1.5vw; }

.mb-6 {
  margin-bottom: 1.5rem;
  font-weight: 300;
  color: rgb(85, 85, 85);
}

dl, dd { margin: 0; }
dl { margin-block-end: 1rem; }

/* =======================
   KASYRA
======================= */

#kasyra {
  position: relative;
  width: 100%;
  height: auto;
}

.kasyra_main_container {
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.kasyra-info-containers {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}

.kasyra__pic-container {
  display: flex;
  border-left: rgb(53, 53, 53) 0.1rem solid;
  background-image: url(./assets/kuno.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  min-height: 100vh;
  margin: 0;
}

.kasyra_text-container {
  display: flex;
  width: 45%;
  padding-top: 20vh;
  flex-direction: column;
}

.kasyra_text p {
  margin-top: 2rem;
  margin-bottom: 3rem;
  margin-left: 2rem;
  margin-right: 2rem;
  text-align: justify;
}

.kasyra_ikureja_container {
  padding: 0 2rem;
  max-width: 62rem;
  margin: 0 auto;
}

article {
  margin: 2em 0;
  padding: 2em;
  text-align: justify;
}

.kasyra_ikureja-pic {
  width: 300px;
  height: auto;
  float: left;
  margin-right: 3rem;
  margin-bottom: 3rem;
}

.kasyra_ikureja_title {
  width: auto;
  text-align: left;
}

/* =======================
   KONTAKTAI
======================= */

#kontaktai { position: relative; }

.contact-info-upper-container {
  display: flex;
  flex-direction: row;
  padding-top: 20vh;
  margin-bottom: 10rem;
}

.contact-info-inner-container {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
}

.contact-title-container_upper {
  display: flex;
  width: 50%;
  justify-content: right;
  align-items: flex-start;
}

.contact-title-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
}

.contact-address_container_upper {
  display: flex;
  width: 50%;
  flex-direction: column;
}

.contact_map {
  width: 100%;
  height: 400px;
  background-image: url(./assets/map.png);
  background-size: cover;
  background-position: center;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  width: 40%;
  text-align: left;
  margin-left: 3rem;
}

.contact-subtitle { font-size: 1.5rem; }

.contact-info-container p {
  margin: 0;
  padding: 0;
}

.contact-socials {
  display: flex;
  width: 100%;
  justify-content: left;
  margin-left: 3rem;
  margin-top: 1rem;
}

.soc-icon img {
  width: 50px;
  height: 50px;
  margin: 0.5rem;
}

/* =======================
   FOOTER
======================= */

footer {
  width: 100%;
  background-color: rgb(245, 239, 232);
  min-height: 26vh;
  margin: 0;
  padding-bottom: 2rem;
}

footer p {
  text-align: center;
  font-size: 0.7rem;
}

.f-nav-links-container {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.f-nav-links {
  margin: 0;
  padding: 0;
  gap: 1rem;
  list-style: none;
  font-size: 1rem;
  display: flex;
}

.f-nav-links li { margin: 10px; }

/* counter container (FIXED: correct selector is ID) */
#sfc453ht98s855pjexhkphulnjwby541wcb {
  display: flex;
  justify-content: center;
  background-color: rgb(245, 239, 232);
  padding-top: 0.5rem;
}