/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #00a651, #0072bc); /* მწვანე + ლურჯი */
  color: #FFD700 !important; /* ყვითელი ტექსტი ყველა ელემენტისთვის */
  line-height: 1.6;
  min-height: 100vh;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  padding: 0 20px;
}

.hero h1, .hero p, nav a {
  color: #FFD700 !important; /* ყვითელი ტექსტი */
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Navigation */
nav {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, color 0.3s;
}

nav a:hover {
  color: #fff; /* hover-ზე თეთრი */
  transform: scale(1.1);
}

/* Cards Section */
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 60px 20px;
}

.card {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
  color: #FFD700 !important; /* ყვითელი ტექსტი */
}

.card:hover {
  transform: translateY(-10px);
  background: rgba(0, 0, 0, 0.4);
}

.card h2 {
  margin-bottom: 10px;
}

.definition {
  font-size: 0.95rem;
}

/* Files Section */
.files {
  padding: 40px 20px;
  overflow-x: auto;
  color: #FFD700 !important; /* ყვითელი ტექსტი */
}

.files h2 {
  text-align: center;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  color: #FFD700 !important; /* ყვითელი */
}

th, td {
  padding: 10px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

a {
  color: #FFD700 !important;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #fff; /* hover-ზე თეთრი */
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #FFD700 !important;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
