/* style.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #D4AF37;
}

/* HEADER */
.site-header {
  width: 100%;
}

/* Top bar */
.header-top {
  background: #000;
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #FFFFFF;
}

.header-socials a, .header-contact a, .header-contact span {
  color: #00ff00;
  text-decoration: none;
}

.header-socials a:hover,
.header-contact a:hover {
  color: #D4AF37;
}

/* Main nav */
.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
  background: #000;
  border-bottom: 1px solid #D4AF37;
  position: relative;
}

.logo img {
  max-height: 50px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-nav li {
  margin-left: 20px;
}

.main-nav a {
  text-decoration: none;
  font-weight: bold;
  color: #00ff00;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #66ff66;
}


@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 10px;
    background: #000;
    width: 200px;
    border: 1px solid #00ff00;
    box-shadow: 0 2px 6px rgba(0,255,0,0.3);
    flex-direction: column;
    z-index: 999;
  }}









.header-contact {
  display: flex;       /* vienoje eilutėje */
  align-items: center;
  gap: 15px;           /* tarpai tarp teksto ir vėliavėlių */
}



.header-socials {
  display: flex;
  gap: 15px;
}

.header-socials a {
  color: #FFFFFF;
  font-size: 18px;
  transition: 0.3s;
}

.header-socials a:hover {
  color: #FFFF00;
}


main img {
  width: 100%;
  height: auto;
  display: block;
}


.gold-line {
  height: 1px;
  background: linear-gradient(to right, #B8860B, #FFD700, #B8860B);
}

.gradient-bar {
  height: 60px;
  width: 100%;
  background: linear-gradient(to bottom, #000000, #ffffff);
}






.hero {
  position: relative;       /* būtina, kad absolute būtų hero viduje */
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-logo {
  position: absolute;
  top: 0%;                 /* vertikaliai per vidurį */
  left: 20px;               /* atstumas nuo kairio krašto */
  transform: translateY(-50%); /* tikslus vertikalus centras */
  display: block;
}

.hero-logo img {
  width: 200px;             /* reguliuok pagal poreikį */
  height: auto;
}





.hero-text {
  position: absolute;
  top: 30%;
  left: 5%;
  transform: translateY(-50%);
  color: #00ff00;
  max-width: 700px;
}

.hero-text h1 {
  font-size: 36px;
  margin: 0 0 0 0;
}

.hero-text p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px 0;
  color: #408000;
}