.white{
    color: azure;
}
.gundi{
    color:azure;
}
.dabruneba{
    color: azure;

}
.zestafoni{
    color: azure;
}
.satauri{
    color: darkgray;
    font-family: 'Times New Roman', Times, serif;
}
.zemologo{
    font-family: 'Times New Roman', Times, serif;
    color:darkgray;
}
.cta{
    color: wheat;
    border-radius: 100%;

}
.adgili {
  display: inline-block;           /* works like a button/link */
  padding: 12px 20px;              /* spacing inside */
  background: #0b63d8;             /* primary blue color */
  color: #fff;                     /* white text */
  font-weight: 700;
  text-decoration: none;           /* remove underline if link */
  border-radius: 30px;             /* rounded corners */
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;       /* smooth hover */
  box-shadow: 0 6px 12px rgba(11,11,11,0.25);
}

.adgili:hover {
  background: #094ea1;             /* darker blue on hover */
  transform: translateY(-3px);     /* lift effect */
  box-shadow: 0 8px 18px rgba(11,11,11,0.35);
}

.adgili:active {
  transform: translateY(0);        /* pressed effect */
  box-shadow: 0 4px 10px rgba(11,11,11,0.25);
}
.hero .media{
    width: 100%;
    height: 89%;
}
.card {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image fills without distortion */
}
.karta{
  width: 100%;
  height: 80%;
  object-fit: cover; /* ensures image fills without distortion */
  color: black;
}
.pa{
    font-family: 'Courier New', Courier, monospace;
}
/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown ღილაკი */
.dropbtn {
  background:#0b63d8 ;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 6px;
  transition: background 0.3s;
}

.dropbtn:hover {
  background: #0b63d8;
}

/* Dropdown კონტენტი */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #13294b;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  flex-direction: column;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}

/* Dropdown Links */
.dropdown-content a {
  color: #f0f0f0;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}

.dropdown-content a:hover {
  background-color: #1da1f2;
  color: #fff;
}

/* Hover ან Click–ზე გამოჩენა */
.dropdown:hover .dropdown-content,
.dropdown.show .dropdown-content {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* მობილური მხარდაჭერა */
@media (max-width: 680px) {
  .nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .dropdown-content {
    position: relative;
    transform: translateY(0);
    opacity: 1;
    display: none;
  }
}
/* ძირითადი ფონად body */
body {
    background-color: darkgray!important; /* ერთგვაროვანი მსუბუქი ნაცრისფერი */
    color: #111;
}

/* ტოპბარი */
.topbar {
    background-color:  black; /* წაშალე გამჭვირვალე შავი */
    color: #111;
    backdrop-filter: none; /* ბლერი გამორთულია */
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* hero */
.hero {
    background-color: darkgray!important;
}
.hero::after {
    background: none !important; /* წაშალე მუქი გრედიენტი */
}

/* კარტები, ისტორია, გალერეა, ფუტერი */
.card, .history, .gallery img, footer {
    background-color: beige !important;
    color: #111;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

/* მთავარი ფერი რჩება */
a, .btn, .score {
    color: black;
}
.btn {
    background-color: #0b63d8;
    color: #fff;
}
.hero h1 {
  font-size: 3rem;
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeZoom 1s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.nav a {
  opacity: 0;
  transform: translateX(-20px);
  animation: navFade 0.5s forwards;
}

.nav a:nth-child(1){animation-delay: 0.2s;}
.nav a:nth-child(2){animation-delay: 0.4s;}
.nav a:nth-child(3){animation-delay: 0.6s;}
.nav a:nth-child(4){animation-delay: 0.8s;}

@keyframes navFade {
  to { opacity: 1; transform: translateX(0); }
}
.btn {
  font-weight: bold;
  background: linear-gradient(90deg, #ffd166, #f4a261);
  padding: 12px 20px;
  border-radius: 30px;
  color: #111;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
}

.btn:hover {
  transform: scale(1.1);
  background: linear-gradient(90deg, #f4a261, #ffd166);
}
.gallery img {
  transition: transform 0.5s, box-shadow 0.5s;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}
.hero h1 {
  font-size: 3rem;
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeZoom 1s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.card:hover {
  transform: perspective(600px) rotateY(5deg) scale(1.05);
  box-shadow: 0 15px 25px rgba(11,99,216,0.5);
}
.btn {
  background: linear-gradient(270deg, #0b63d8, #ffd166);
  background-size: 400% 400%;
  animation: gradientMove 5s ease infinite;
}
@keyframes gradientMove {
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}
.rotate {
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.btn{
  background: linear-gradient(90deg,#0b63d8,#ffd166);
  background-size: 400% 400%;
  animation: pulse 3s ease infinite;
}
@keyframes pulse{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}
.btn:hover{
  transform: scale(1.1);
  box-shadow:0 0 12px #ffd166;
}

.btn{
  background: linear-gradient(90deg,#0b63d8,#ffd166);
  background-size: 400% 400%;
  animation: pulse 3s ease infinite;
}
@keyframes pulse{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}
.btn:hover{
  transform: scale(1.1);
  box-shadow:0 0 12px #ffd166;
}

.btn{
  background: linear-gradient(90deg,#0b63d8,#ffd166);
  background-size: 400% 400%;
  animation: pulse 3s ease infinite;
}
@keyframes pulse{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}
.btn:hover{
  transform: scale(1.1);
  box-shadow:0 0 12px #ffd166;
}
.btn{
  background: linear-gradient(90deg,#0b63d8,#ffd166);
  background-size: 400% 400%;
  animation: pulse 3s ease infinite;
}
@keyframes pulse{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}
.btn:hover{
  transform: scale(1.1);
  box-shadow:0 0 12px #ffd166;
}
.btn{
  background: linear-gradient(90deg,#0b63d8,#ffd166);
  background-size: 400% 400%;
  animation: pulse 3s ease infinite;
}
@keyframes pulse{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}
.btn:hover{
  transform: scale(1.1);
  box-shadow:0 0 12px #ffd166;
}
.btn{
  background: linear-gradient(90deg,#0b63d8,#ffd166);
  background-size: 400% 400%;
  animation: pulse 3s ease infinite;
}
@keyframes pulse{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}
.btn:hover{
  transform: scale(1.1);
  box-shadow:0 0 12px #ffd166;
}
.btn{
  background: linear-gradient(90deg,#0b63d8,#ffd166);
  background-size: 400% 400%;
  animation: pulse 3s ease infinite;
}
@keyframes pulse{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}
.btn:hover{
  transform: scale(1.1);
  box-shadow:0 0 12px #ffd166;
}
.istoria{
  background-color: beige;
  
}

.istoria li strong {
  display: inline-block;
  animation: glow 2s infinite alternate;
}

.istoria h3 {
  animation: slideFade 1.2s ease forwards;
  opacity: 0;
}
.istoria {
  transition: transform 0.4s ease, box-shadow 0.7s ease;
}
.istoria:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
/* Dropdowns */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  padding: 8px 12px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: steelblue;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
  z-index: 100;
}

.dropdown-content a {
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background: rgba(255,255,255,0.1);
}

/* Hover trigger */
.dropdown:hover .dropdown-content {
  display: block;
}

/* ქვე-ქვე მენიუ (გუნდი → U14, U13, U12) */
.submenu {
  position: relative;
}

.submenu-content {
  display: none;
  position: absolute;
  left: 100%; /* გვერდზე გაიშლება */
  top: 0;
  background: black;
  min-width: 140px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.submenu-content a {
  padding: 10px 12px;
}

.submenu:hover .submenu-content {
  display: block;
}
.social-links {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  margin-left: 5px;
}

.social-links {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  margin-left: 5px;
}

.social-links img {
  height: 24px;
  width: 24px;
}
/* კონტეინერი, სადაც ანგარიშია */
.match-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* მარჯვენა ყუთი ანგარიშისთვის */
.score-wrap {
  margin-left: auto;
  text-align: right;
  min-width: 88px;           /* სურვილისამებრ: რომ არ დაიჭიროს ძალიან ვიწრო */
}

/* თვითონ ანგარიში */
.score {
  font-weight: 900;
  font-size: 28px;
  line-height: 1;               /* სიმაღლე სტაბილური */
  white-space: nowrap;          /* არ გადაიტანოს ახალ ხაზზე */
  font-variant-numeric: tabular-nums; /* ყველა ციფრი თანაბარ სიგანეში */
  font-family: 'Courier New', monospace, Inter, sans-serif; /* უზრუნველყოფს ტაბულარულ ციფრებს */
  letter-spacing: 2px;          /* სურვილისამებრ little space */
}


/* პატარა ქვეტექსტი, თუ გაქვს (მაგ. 90') */
.score-note {
  font-size: 12px;
  color: #6b7280;
}
.subaru{ 
  color: black;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-style: italic;
  shape-outside: margin-box;
  color-scheme: calc(darker);
}
  /* მხოლოდ ტელეფონებისთვის */
@media (max-width: 680px) {
  body {
    font-size: 14px;
    line-height: 1.5;
    padding: 0;
    margin: 0;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
  }

  .brand img {
    height: 40px;
  }

  .brand h1 {
    font-size: 16px;
  }

  .nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .nav a,
  .dropbtn {
    font-size: 14px;
    padding: 10px;
    width: 100%;
    text-align: left;
  }

  .dropdown-content,
  .submenu-content {
    position: relative;
    min-width: 100%;
    box-shadow: none;
  }

  .hero {
    min-height: 300px;
    padding: 20px;
    text-align: center;
  }

  .hero h2 {
    font-size: 22px;
  }

  .cards {
    grid-template-columns: 1fr;
    margin: 20px;
  }

  .card {
    padding: 14px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery img {
    height: 120px;
  }

  footer .foot-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .social-links {
    justify-content: center;
    margin: 10px auto;
  }
}
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
  body { font-size: 14px; line-height: 1.5; }

  .topbar { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px; }
  .brand img { height: 40px; }
  .brand h1 { font-size: 16px; }

  .nav { flex-direction: column; gap: 8px; width: 100%; }
  .nav a, .dropbtn { font-size: 14px; padding: 10px; width: 100%; text-align: left; }

  .dropdown-content, .submenu-content { position: relative; min-width: 100%; box-shadow: none; }
  
  .hero { min-height: 300px; padding: 20px; text-align: center; }
  .hero h1 { font-size: 22px; }

  .cards { grid-template-columns: 1fr; margin: 20px; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 120px; }

  footer { text-align: center; }
  .social-links { justify-content: center; margin: 10px auto; }
}
