@font-face {
  font-family: 'ChypreExtBlack';
  src: url('fonts/fonnts.com-Chypre_Ext_Black.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'ChypreExtBlack';
}

/* Header */
.header {
  position: relative;
  width: 100%;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  gap: 2rem;
  position: relative;
}

/* Logo */
.logo a {
  text-decoration: none;
  color: black;
  font-size: 2rem;
  font-weight: normal;
}
.logo {
  display: flex;
  align-items: center;
  margin-left: 48px; /* priestor na hamburger */
}

/* Instagram */
.social-icon {
  width: 24px;
  height: 24px;
}
.social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

/* Nav + IG spolu */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* medzera medzi IG ikonou a nav linkami */
}

.nav-right .social {
  margin: 0; /* nech IG pekne sedí pri linkoch */
}

.main-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.main-menu a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
}

/* Hamburger button */
.toggle-menu {
  position: absolute;
  top: 1rem;
  left: 16px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.toggle-menu .icon {
  display: none;
}
.toggle-menu .open {
  display: inline;
}
.header.menu-open .toggle-menu .open {
  display: none;
}
.header.menu-open .toggle-menu .close {
  display: inline;
}

/* Side panel (mobile menu) */
.side-panel {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  transition: left 0.3s ease;
  z-index: 1000;
}
.side-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.side-panel li {
  margin-bottom: 1rem;
}
.side-panel a {
  text-decoration: none;
  color: #333;
  font-size: 1.3rem;
}

.header.menu-open .side-panel {
  left: 0;
}
/* Responsive */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .toggle-menu {
    display: block;
  }
  .text{
    margin-top:50px;
    margin-bottom:150px;
  }
}

@media (min-width: 769px) {
  .wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .logo {
    order: 1;
    margin-left: 7rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
  }

  /* Instagram + nav napravo */
  .nav-right {
    order: 2;
    margin-left: auto; /*posun uplne doprava*/
    padding-right: 32px;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }
}
.text{
    text-align: center;
}

main{
  padding: 2rem;
  line-height: 1.5;
}

main p{
  font-weight:lighter;
  width: auto;
  font-size: larger;
  font-family: 'ChypreExtBlack';
}

.line{
  text-align: left;
  padding-left: 6rem;
}

.line a{
  text-decoration: none;
  color: black;
  font-family: 'ChypreExtBlack';
}
.social-icon-contact{   /*insta logo pri kontaktoch*/
  width:24px;
  height: 24px;
}

footer p{
    text-align: center;
    color: #b3b3b3;
    font-weight: lighter;
    font-size: small;
    padding-bottom: 4rem;
}
footer{
  padding-top: 50%;
}