/* =====================
   RESET
   ===================== */
* {
  box-sizing: border-box;
}

/* =====================
   BODY + FONS
   ===================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('http://sikulis.lv/img/bg.png')
    no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  padding-top: 80px; /* vieta navigācijai */
}

/* =====================
   NAVIGĀCIJA
   ===================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
  padding: 15px 40px;
  z-index: 1000;
}

header nav {
  display: flex;
  gap: 30px;
}

header nav a {
  color: white;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  position: relative;
}

header nav a:hover {
  color: #ff8a00;
}

header nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  transition: 0.4s;
  transform: translateX(-50%);
}

header nav a:hover::after,
header nav a.active::after {
  width: 100%;
}

/* =====================
   CENTRĒŠANAS WRAPPER
   ===================== */
.main-wrapper {
  min-height: calc(100vh - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =====================
   PAR MANI BLOKS
   ===================== */
.about-card {
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 700px;
  width: 95%;
  box-shadow: 0 0 30px rgba(0,0,0,0.7);
}

.about-logo {
  width: 180px;
  margin-bottom: 20px;
}

.about-card h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.about-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* =====================
   SOCIĀLĀS POGAS
   ===================== */
.about-buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.about-buttons a {
  padding: 14px 28px;
  border-radius: 10px;
  background: linear-gradient(
    45deg,
    rgba(44,44,44,0.8),
    rgba(68,68,68,0.8),
    rgba(34,34,34,0.8)
  );
  background-size: 400% 400%;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.5s, transform 0.2s;
}

.about-buttons a:hover {
  background-position: right;
  transform: scale(1.05);
}

/* =====================
   INFO BOX
   ===================== */
.info-box {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 10px;
  font-size: 12px;
  border-radius: 5px;
}

/* =====================
   MOBILE
   ===================== */
@media (max-width: 768px) {
  .about-card {
    padding: 25px 20px;
  }

  .about-card h2 {
    font-size: 22px;
  }

  .about-card p {
    font-size: 14px;
  }

  .about-buttons a {
    flex: 1 1 auto;
    min-width: 120px;
    font-size: 14px;
    padding: 12px;
  }
}