:root{
    --grid-size: 28px;
    --grid-color: rgba(255, 255, 255, 0.03);
    --bg: #0f0b14; /* ciemny fioletowy bg */
    --dot1: rgba(168, 85, 247, 0.25);
    --dot2: rgba(139, 92, 246, 0.20);
    --dot3: rgba(124, 58, 237, 0.18);
}

@font-face {
    font-family: epicpro;
    src: url(/fonts/gc-epicpro.ttf);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 11, 20, 0.5);
}

::-webkit-scrollbar-thumb {
    background: #a855f7;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9333ea;
}

::-webkit-scrollbar-button {
    display: none;
}

/* Firefox */
* {
    scrollbar-color: #a855f7 rgba(15, 11, 20, 0.5);
    scrollbar-width: thin;
}

@keyframes fade-in{
    0%{ opacity: 0; }
    100%{ opacity: 1; }
}

body{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at 15% 30%, var(--dot1) 0px, rgba(168, 85, 247, 0.12) 220px, transparent 620px),
        radial-gradient(circle at 80% 65%, var(--dot2) 0px, rgba(139, 92, 246, 0.1) 260px, transparent 720px),
        radial-gradient(circle at 55% 8%,  var(--dot3) 0px, rgba(124, 58, 237, 0.08) 200px, transparent 560px),
        linear-gradient(0deg, var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: auto, auto, auto, var(--grid-size) var(--grid-size), var(--grid-size) var(--grid-size);
    background-attachment: fixed;
    background-repeat: no-repeat;
    animation: fade-in 1.5s ease-out;
}

#floating-dots{
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

body > *{
    position: relative;
    z-index: 1;
}

.dot{
    position: absolute;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 12px #a855f7;
    opacity: 0;
    transform: translate(0,0) scale(1);
    animation: float var(--dur) linear infinite;
}

@keyframes float{
    0%{
        transform: translate(0,0) scale(1);
        opacity: 0;
    }
    8%{ opacity: 0.85; }
    90%{ opacity: 0.6; }
    100%{
        transform: translate(var(--dx), var(--dy)) scale(var(--s));
        opacity: 0;
    }
}

#header1-tex1{
 color: white;
 font-weight: 900; 
 font-family: epicpro;
 font-size: 70px;
 margin-top: 200px;
}

#header1-text1-span1{
  background: linear-gradient(90deg, #a855f7, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.7);
}

#header1-text1-p1{
    color: rgba(180, 150, 255, 0.6);
    font-size: 20px;
    margin-top: 20px;
    max-width: 600px;
}

.header1-main-btns{
    justify-content: center;
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.header1-main-btn{
    margin-top: 100px;
    height: 50px;
    width: 200px;
    background: linear-gradient(90deg, #a855f7, #7c3aed);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.7);
    transition: 0.5s;
}

.header1-main-btn-secondary{
    width: 300px;
    background: transparent;
    border: 2px solid #a855f7;
    box-shadow: none;
    transition: 0.5s;
}

.header1-main-btn-secondary:hover{
    background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    transform: scale(1.05);
    border:none ; 
}

.header1-main-btn:hover{
    background: linear-gradient(90deg, #a855f7, #7c3aed);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.9);
    transform: scale(1.05);
}

#header2-text1{
    color: white;
    font-weight: 900; 
    font-family: epicpro;
    font-size: 50px;
    margin-top: 400px;
}

.dlaczegomy-cards-container{
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.dlaczegomy-card{
    color: white;
    width: 350px;
    height: 400px;
    background-color: #22172c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    border: 3px, solid rgb(109, 66, 110);
    border-radius: 10px;
    display: flex;
    flex-direction: column; /* to robi całą robotę */
    align-items: center;    /* wyśrodkowanie poziome */
    text-align: center;     /* tekst na środku */
    gap: 15px;              /* odstępy między elementami */
}

.svg-tanio{
    width: 100px;
    height: 100px;
    fill: #a855f7;


    }

.dlaczegomy-card:hover{
    background-color: #2e1f3c;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.7);
    transform: translateY(-10px);
    cursor: pointer;
}

.footer {
 margin-top: 200px;
  background: #0f0a1a;
  color: #ccc;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-section h2,
.footer-section h3 {
  color: #a855f7;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.footer-section a:hover {
  color: #c084fc;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-bottom {

  border-top: 1px solid #2a1f40;
  text-align: center;
  padding: 15px;
  background: #0a0612;
  font-size: 13px;
  color: #888;
}
