/* style.css */

.date-wrapper{
  position: relative;
  display: inline-block;
  width: 100%;
}

.date-wrapper input{
  width: 100%;
  padding-right: 35px; /* vieta simboliui */
  box-sizing: border-box;
}

.date-wrapper::after{
  content: "📅";  /* kalendoriaus simbolis */
  position: absolute;
  right: 10px;
  top: 33%;
  transform: translateY(-50%);
  pointer-events: none; /* kad spustelėjimas eitų į input */
  font-size: 18px;
  color: #00ff00;
}





.popup-overlay{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.popup-form{
  background:#000;
  padding:30px;
  border:2px solid #00ff00;
  border-radius:15px; /* apvalinti kampai formos */
  width:90%;
  max-width:400px;
  text-align:center;
  position:relative; /* būtina close mygtukui */
}

.popup-form h2{
  color:#00ff00;
  margin-bottom:20px;
}

.popup-form input,
.popup-form textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:1px solid #00ff00;
  background:#000;
  color:#fff;
  border-radius:8px;
  font-size:14px;
}

.popup-form textarea{
  min-height:80px;
  resize:vertical;
}

.popup-form button{
  width:100%;
  padding:14px;
  background:#00ff00;
  border:none;
  font-weight:bold;
  cursor:pointer;
  border-radius:30px; /* apvalinti kampus */
  transition:all 0.3s ease;
}

.popup-form button:hover{
  background:#00cc00;
  box-shadow:0 0 15px rgba(0,255,0,0.7);
}

.close-btn{
  position:absolute;
  top:10px;
  right:15px;
  font-size:24px;
  color:#00ff00;
  cursor:pointer;
  font-weight:bold;
}

























.register-btn{
  display:inline-block;
  padding:14px 34px;
  background:#00ff00;
  color:#000;
  font-weight:bold;
  text-decoration:none;
  border-radius:30px;
  font-size:16px;
  transition:all 0.3s ease;
  box-shadow:0 0 10px rgba(0,255,0,0.6);
  margin-top: 20px;
}

.register-btn:hover{
  background:#00cc00;
  box-shadow:0 0 20px rgba(0,255,0,0.9);
  transform:translateY(-2px);
}












.hero-logos {
  display: flex;
  flex-wrap: wrap;   /* leidžia logotipams pereiti į kitą eilę */
  gap: 70px;         /* normalus tarpas */
  align-items: center;

  width: 100%;
  position: absolute;
  top: 20px;
  padding: 0 20px;
}

.hero-logo-left img,
.hero-logo-right img {
  height: 50px;
  width: auto;
}



*{
  box-sizing:border-box;
}

body{
  margin:0;
  overflow-x:hidden;
}





.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: #1da13c;
  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: #1d74a1;
}










/* wrapper aplink adresa ir popup */
.map-popup-wrapper {
  position: relative;
  display: inline-block;
}

/* popup slepiamas iš pradžių */
.map-popup {
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  z-index: 10;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* parodyti popup, kai hover ant wrapperio (ne tik span) */
.map-popup-wrapper:hover .map-popup {
  display: block;
}

/* opcionaliai: footer su nuoroda */
.map-popup-footer {
  text-align: center;
  padding: 5px;
  background: #f0f0f0;
}







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);
}






