<<<<<<< HEAD
body {
	font-family: 'Segoe UI', sans-serif;
	background-color: #fdf9ee;
	margin: 0;
	padding: 0;
	color: #1c2b1f;
}

.container {
	max-width: 67.5%;
	margin: 40px auto;
	padding: 20px;
	background: #fffef9;
	box-shadow: 0 0 15px rgba(0,0,0,0.05);
	border-radius: 12px;
	position: relative;
}

.logo {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
}

.logo img {
	width: 180px;
}

h1 {
	text-align: center;
	color: #2a442d;
	margin-bottom: 10px;
}

.subtitle {
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 30px;
}

.section {
	margin-bottom: 30px;
}

.section h2 {
	font-size: 1.2rem;
	color: #2a442d;
	border-bottom: 2px solid #cce0d0;
	padding-bottom: 4px;
	margin-bottom: 10px;
}

.section h2 i {
	margin-right: 8px;
	color: #2a442d;
	vertical-align: middle;
}

ul {
	padding-left: 20px;
}

ul li {
	margin-bottom: 8px;
}

ul li strong {
	color: #2a442d;
	font-weight: 700;
}

.contact {
	font-weight: bold;
}

.contact a {
	color: #2a442d;
	text-decoration: none;
}

.contact a:hover {
	text-decoration: underline;
}

.contact-box {
	background: #f5f8f5;
	border-left: 3px solid #2a442d;
	padding: 1rem;
	border-radius: 6px;
	font-size: 0.95rem;
}

.gallery-header {
  margin-bottom: 30px;
  width: 100%;
}

.gallery-grid {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 3px;
}

.main-photo {
  flex: 1;
}

.main-photo img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.thumbs {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.thumbs a {
  position: relative;
  display: block;
}

.thumbs img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.thumb-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85em;
}


.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  font-size: 1em;
  color: #2a442d;
  justify-content: space-evenly;
}

.quick-facts div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-facts i {
  color: #2a442d;
}

.lokalita-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #cce0d0;
	padding-bottom: 4px;
	margin-bottom: 0.5rem;
}

.lokalita .lokalita-header h2 {
	border-bottom: none;
	padding: 0;
	margin: 15px 0 0 0;
}

.mapka-small {
	position: relative;
	width: 90px;
	height: auto;
	display: inline-block;
	margin: 2px 10px 0 0;
	line-height: 0;
}

.mapka-small img {
	display: block;
	width: 100%;
	height: auto;
}

.circle-small {
	position: absolute;
	background-color: black;
	width: .313rem;
	height: .313rem;
	border-radius: 50%;
	top: 42%;   /* prispôsobiť podľa obrázka */
	left: 48%;
	transform: translate(-50%, -50%);
}

.aktivita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.aktivita-grid li::before {
  content: "🌲 ";
  margin-right: 4px;
}

.chata-info h2, .chata-info h3 {
  margin-top: 1.5rem;
  color: #2e4830;
}


@media (max-width: 768px) {
  .gallery-grid {
    flex-direction: column;
  }

  .thumbs {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .guick-facts {
	justify-content: center
  }
}

@media (max-width: 600px) {
  .quick-facts {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95em;
  }
}


/* Prepínač vzhľadu */
.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  transition: color 0.3s ease;
}

.theme-toggle:hover {
  color: #555;
}

.theme-icon {
  transition: transform 0.3s ease;
}

.theme-toggle:active .theme-icon {
  transform: scale(1.2);
}

/* --- Animácia pre prepínanie témy --- */
body, .container, .main-photo img, .thumbs img, .section, footer {
  transition: background-color 0.4s ease, color 0.4s ease;
}


/* DARK mód */
body.dark-mode {
  background-color: #1a1a1a;
  color: #eeeeee;
  transition: background-color 0.3s, color 0.3s;
}

body.dark-mode .container {
  background-color: #262626;
  color: #eeeeee;
  transition: background-color 0.3s, color 0.3s;
}

/* Nadpisy */
body.dark-mode h1,
body.dark-mode .subtitle,
body.dark-mode .section h2,
body.dark-mode .section h2 i {
  color: #b2ffb2;
}

/* Sekcie a hrany */
body.dark-mode .section {
  border-color: #444;
  transition: border-color 0.3s;
}

body.dark-mode hr {
  border-color: #444;
}

/* Odkazy */
body.dark-mode a,
body.dark-mode .contact a {
  color: #9fdc9f;
  transition: color 0.3s;
}

/* Kontakt */
body.dark-mode .contact-box {
  background: #333333;
  border-left: 3px solid #79b679;
  color: #eeeeee;
  transition: background-color 0.3s, border-color 0.3s;
}

/* Quick facts */
body.dark-mode .quick-facts {
  color: #cfcfcf;
}

body.dark-mode .quick-facts i {
  color: #9fdc9f;
}

body.dark-mode strong {
  color: #9fdc9f;
}

body.dark-mode #readMoreBtn,
body.dark-mode #readLessBtn {
  color: #9fdc9f;
}

body.dark-mode .main-photo img,
body.dark-mode .thumbs img {
  filter: brightness(0.9);
  transition: filter 0.3s;
}


#moreContent {
  display: none;
}

#moreContent.more-shown {
  display: inline;
}

#moreContents {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.5s cubic-bezier(0.5,0,0.5,1), opacity 0.3s;
  display: none;
}

#moreContents.more-shown {
  opacity: 1;
  display: block;
}

#readMoreBtn, #readLessBtn {
  background: none;
  border: none;
  color: #57a057;
  font-weight: bold;
  cursor: pointer;
  margin-left: 8px;
  font-size: inherit;
  padding: 0;
  vertical-align: baseline;
}

#readMoreBtn:hover, #readLessBtn:hover {
  color: #246f2f;
  text-shadow: 0 2px 8px #98e6a566, 0 0px 1px #fff;
  text-decoration: none;
}
#readMoreBtn i, #readLessBtn i {
  transition: transform 0.23s;
}
#readMoreBtn:hover i {
  transform: translateY(3px) rotate(180deg);
}
#readLessBtn:hover i {
  transform: translateY(-3px) rotate(180deg);
}
=======
body {
	font-family: 'Segoe UI', sans-serif;
	background-color: #fdf9ee;
	margin: 0;
	padding: 0;
	color: #1c2b1f;
}

.container {
	max-width: 67.5%;
	margin: 40px auto;
	padding: 20px;
	background: #fffef9;
	box-shadow: 0 0 15px rgba(0,0,0,0.05);
	border-radius: 12px;
	position: relative;
}

.logo {
	display: flex;
	justify-content: center;
	margin-bottom: 0;
}

.logo img {
	width: 180px;
}

h1 {
	text-align: center;
	color: #2a442d;
	margin-bottom: 10px;
}

.subtitle {
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 30px;
}

.section {
	margin-bottom: 30px;
}

.section h2 {
	font-size: 1.2rem;
	color: #2a442d;
	border-bottom: 2px solid #cce0d0;
	padding-bottom: 4px;
	margin-bottom: 10px;
}

.section h2 i {
	margin-right: 8px;
	color: #2a442d;
	vertical-align: middle;
}

ul {
	padding-left: 20px;
}

ul li {
	margin-bottom: 8px;
}

ul li strong {
	color: #2a442d;
	font-weight: 700;
}

.contact {
	font-weight: bold;
}

.contact a {
	color: #2a442d;
	text-decoration: none;
}

.contact a:hover {
	text-decoration: underline;
}

.contact-box {
	background: #f5f8f5;
	border-left: 3px solid #2a442d;
	padding: 1rem;
	border-radius: 6px;
	font-size: 0.95rem;
}

.gallery-header {
  margin-bottom: 30px;
  width: 100%;
}

.gallery-grid {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 3px;
}

.main-photo {
  flex: 1;
}

.main-photo img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.thumbs {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.thumbs a {
  position: relative;
  display: block;
}

.thumbs img {
  width: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.thumb-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.85em;
}


.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  font-size: 1em;
  color: #2a442d;
  justify-content: space-evenly;
}

.quick-facts div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-facts i {
  color: #2a442d;
}

.lokalita-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 2px solid #cce0d0;
	padding-bottom: 4px;
	margin-bottom: 0.5rem;
}

.lokalita .lokalita-header h2 {
	border-bottom: none;
	padding: 0;
	margin: 15px 0 0 0;
}

.mapka-small {
	position: relative;
	width: 90px;
	height: auto;
	display: inline-block;
	margin: 2px 10px 0 0;
	line-height: 0;
}

.mapka-small img {
	display: block;
	width: 100%;
	height: auto;
}

.circle-small {
	position: absolute;
	background-color: black;
	width: .313rem;
	height: .313rem;
	border-radius: 50%;
	top: 42%;   /* prispôsobiť podľa obrázka */
	left: 48%;
	transform: translate(-50%, -50%);
}

.aktivita-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.aktivita-grid li::before {
  content: "🌲 ";
  margin-right: 4px;
}

.chata-info h2, .chata-info h3 {
  margin-top: 1.5rem;
  color: #2e4830;
}


@media (max-width: 768px) {
  .gallery-grid {
    flex-direction: column;
  }

  .thumbs {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .guick-facts {
	justify-content: center
  }
}

@media (max-width: 600px) {
  .quick-facts {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95em;
  }
}


/* Prepínač vzhľadu */
.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  transition: color 0.3s ease;
}

.theme-toggle:hover {
  color: #555;
}

.theme-icon {
  transition: transform 0.3s ease;
}

.theme-toggle:active .theme-icon {
  transform: scale(1.2);
}

/* --- Animácia pre prepínanie témy --- */
body, .container, .main-photo img, .thumbs img, .section, footer {
  transition: background-color 0.4s ease, color 0.4s ease;
}


/* DARK mód */
body.dark-mode {
  background-color: #1a1a1a;
  color: #eeeeee;
  transition: background-color 0.3s, color 0.3s;
}

body.dark-mode .container {
  background-color: #262626;
  color: #eeeeee;
  transition: background-color 0.3s, color 0.3s;
}

/* Nadpisy */
body.dark-mode h1,
body.dark-mode .subtitle,
body.dark-mode .section h2,
body.dark-mode .section h2 i {
  color: #b2ffb2;
}

/* Sekcie a hrany */
body.dark-mode .section {
  border-color: #444;
  transition: border-color 0.3s;
}

body.dark-mode hr {
  border-color: #444;
}

/* Odkazy */
body.dark-mode a,
body.dark-mode .contact a {
  color: #9fdc9f;
  transition: color 0.3s;
}

/* Kontakt */
body.dark-mode .contact-box {
  background: #333333;
  border-left: 3px solid #79b679;
  color: #eeeeee;
  transition: background-color 0.3s, border-color 0.3s;
}

/* Quick facts */
body.dark-mode .quick-facts {
  color: #cfcfcf;
}

body.dark-mode .quick-facts i {
  color: #9fdc9f;
}

body.dark-mode strong {
  color: #9fdc9f;
}

body.dark-mode #readMoreBtn,
body.dark-mode #readLessBtn {
  color: #9fdc9f;
}

body.dark-mode .main-photo img,
body.dark-mode .thumbs img {
  filter: brightness(0.9);
  transition: filter 0.3s;
}


#moreContent {
  display: none;
}

#moreContent.more-shown {
  display: inline;
}

#moreContents {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.5s cubic-bezier(0.5,0,0.5,1), opacity 0.3s;
  display: none;
}

#moreContents.more-shown {
  opacity: 1;
  display: block;
}

#readMoreBtn, #readLessBtn {
  background: none;
  border: none;
  color: #57a057;
  font-weight: bold;
  cursor: pointer;
  margin-left: 8px;
  font-size: inherit;
  padding: 0;
  vertical-align: baseline;
}

#readMoreBtn:hover, #readLessBtn:hover {
  color: #246f2f;
  text-shadow: 0 2px 8px #98e6a566, 0 0px 1px #fff;
  text-decoration: none;
}
#readMoreBtn i, #readLessBtn i {
  transition: transform 0.23s;
}
#readMoreBtn:hover i {
  transform: translateY(3px) rotate(180deg);
}
#readLessBtn:hover i {
  transform: translateY(-3px) rotate(180deg);
}
>>>>>>> 05481ac036ebf45c92d3e0af872f3efc3d76bee5
