:root {
  --bg-dark: #000a23;
  --accent: #fc7600;
  --accent-light: #fcd27a;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-family: "Montserrat", sans-serif;
  background: radial-gradient(ellipse at 20% 10%, rgba(255, 200, 120, 0.04), transparent 10%),
    linear-gradient(#000a23 0%, #000014 60%, #000010 100%);
  color: var(--accent-light);
  text-align: center;
  scroll-behavior: smooth;
}

/* LOGO */
.logo {
  width: 420px;
  height: 420px;
  margin: 40px auto;
  border-radius: 50%;
  display: block;
  max-width: 90%;
}

/* NAV */
nav {
  position: fixed;
  top: 35px;
  right: 40px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* keep right alignment */
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

nav a {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
}

/* HAMBURGER */
/* HAMBURGER — always visible on mobile, fixed position */
#hamburger {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
  /* NAD rozwiniętym menu */
}

/* inverted colors: orange square, dark bars */
#hamburger .box {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

#hamburger .box span {
  width: 100%;
  height: 4px;
  background: var(--bg-dark);
  margin: 3px 0;
  border-radius: 3px;
}


@media (max-width: 768px) {
  nav {
    top: 18px;
    right: 18px;
  }

  #hamburger {
    display: block;
  }

  nav ul {
    display: none;
    /* hide desktop menu */
  }

  #menuList {
    position: absolute;
    right: 0;
    top: 64px;
    display: none;
    flex-direction: column;
    background: #001648;
    padding: 14px;
    border-radius: 10px;
    min-width: 190px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    z-index: 1000;
  }

  #menuList.show {
    display: flex;
  }

  #menuList li {
    padding: 10px 6px;
  }

  /* remove separators in mobile menu as requested */

  .logo {
    width: 300px;
    height: 300px;
  }
}

h1 {
  font-size: clamp(32px, 10vw, 52px);
  color: var(--accent);
  margin: 6px 0 4px;
}

h2 {
  font-size: 30px;
  color: var(--accent-light);
  margin: 0 0 12px;
}

/* subtle separator between headings and content */
.heading-sep {
  width: 60%;
  margin: 6px auto 18px;
  border-bottom: 1px dashed rgba(252, 118, 0, 0.25);
}

.content {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  font-size: 20px;
  line-height: 1.6;
}

/* SOCIAL ICONS */
.social-container {
  position: fixed;
  right: 20px;
  top: 160px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 900;
}

.social-container a svg {
  /* color social icons to accent-light */
  width: 42px;
  height: 42px;
  display: block;
  fill: var(--accent-light);
}

.contact {
  margin-top: 60px;
}

/* contact links style */
.contact a {
  color: var(--accent);
  font-weight: bold;
  font-size: 22px;
  text-decoration: underline dashed;
}

.contact-info {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--accent-light);
}

/* inline svg icons */
.icon-svg {
  vertical-align: middle;
  margin-right: 10px;
  width: 28px;
  height: 28px;
  fill: var(--accent-light);
}

iframe {
  width: 90%;
  height: 350px;
  border: none;
  border-radius: 10px;
  margin-top: 25px;
}

.catalog-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 16px 34px;
  background: var(--accent);
  color: var(--bg-dark);
  font-weight: bold;
  font-size: 22px;
  border-radius: 10px;
  text-decoration: none;
}

/* menu click highlight effect */
.menu-click {
  background: rgba(252, 118, 0, 0.12);
  border-radius: 6px;
  transition: background 0.5s ease-out;
}