

@font-face {
    font-family:'cooper-hewitt';
    src: url(../webfonts/CooperHewitt-Bold.otf); 
    font-weight: 700;
  }

  @font-face {
    font-family:'cooper-hewitt';
    src: url(../webfonts/CooperHewitt-Light.otf); 
    font-weight: 200;
  }

  @font-face {
    font-family:'cooper-hewitt';
    src: url(../webfonts/CooperHewitt-Book.otf);
    font-weight: 400;

  }
  /* ==========================
   BASE
========================== */

  html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'cooper-hewitt', sans-serif;
    background-color:#e6eff6;
    color: #000000;
    font-size: 1.2em;

    body {
        overflow-x: hidden;
      }
      
}

main {
    flex: 1;
    width: 100%;
    margin: auto;
}
/* ==========================
   HEADER — FINAL CLEAN VERSION
========================== */

.white-header {
    width: 100%;
    background: #ffffff;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
  }
  

/* შიგნით ვქმნით კონტეინერს */
.header-inner {
    width: 90%;
    max-width: 1400px; /* ✅ აღარ გაწელავს ეკრანის კიდემდე */
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO + TEXT BLOCK */
.logo-block {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* LOGO SIZE */
.logo img {
    height: 130px;
    width: auto;
  }

  /* MOBILE ADAPTATION */
@media (max-width: 768px) {
    .logo-block {
        gap: 10px;         /* მცირე დაშორება */
        justify-content: center; /* ცენტრირება */
    }

    .logo img {
        height: 100px;       /* პატარა სურათი მობილურზე */
        width: auto;
    }
}

  

/* NAME + ROLE (STACKED) */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-transform: uppercase;
}

.logo-text .name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.20em;
    color: #000000;
}

.logo-text .role {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: #cfcfcf;
    margin-top: 4px;
}

/* NAVIGATION */
.navbar {
  display: flex;
  align-items: center;
  gap: 28px;
}

.encadre-nav {
  padding: 6px 12px;
  border: 1px solid transparent;
  transition: background 0.3s ease, color 0.3s ease;
  letter-spacing: 2px;
}

/* hover */
.encadre-nav:hover {
  background: #005aa3;
}

.encadre-nav:hover a {
  color: #ffffff;
}

/* ACTIVE STATE */
.encadre-nav.active {
  background: #005aa3; /* აქტიური ფონი */
}

.encadre-nav.active a {
  color: #ffffff; /* აქტიური ტექსტი */
  font-weight: bold;
  border-bottom: 2px solid #ffffff; /* optional underline */
}

/* ნორმალური ლინკი */
.encadre-nav a {
  text-decoration: none;
  color: #005aa3;
  font-size: 0.9rem;
  font-weight: 700;
}

/* BREADCRUMBS - Desktop */
.breadcrumbs {
  font-size: 0.9rem;
  margin: 15px 0;
  margin-left: 100px;
}

.breadcrumbs a {
  text-decoration: none;
  color: #005aa3;
}

.breadcrumbs span {
  color: #333;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* MOBILE ADAPTATION */
@media (max-width: 768px) {
  .breadcrumbs {
    margin-left: 15px;   /* ნაკლები მარცხენა სივრცე */
    margin-right: 15px;
    font-size: 0.85rem;  /* ცოტა პატარა ტექსტი */
    white-space: normal; /* ტექსტი არ გადაიჭრას */
    overflow-wrap: break-word; /* სიტყვები არ იჭრებოდეს */
  }

  .breadcrumbs a, 
  .breadcrumbs span {
    display: inline-block;
    margin-right: 5px; /* მცირე სივრცე სიტყვებს შორის */
  }
}
/* ==========================
   SERVICE DETAIL PAGE
========================== */

.service-detail {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
  }
  
  /* Section titles */
  .service-detail h2 {
    font-size: 1.8rem;
    text-align: center;
    color: #005aa3;
    margin: 80px 0 40px 0;  /* ზემოთ სივრცე, ქვემოთ ახლოს ტექსტთან */
    line-height: 1.25;
  }
  
  /* Paragraphs */
  .service-detail p {
    margin: 0 0 30px 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
  }
  
  /* Lists */
  .service-detail ul {
    margin: 0 0 30px 0;
    padding-left: 20px;
  }
  
  .service-detail li {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
  }
  
  /* Strong text inside list */
  .service-detail strong {
    font-weight: 600;
    color: #000;
  }
  

/* DESKTOP — hamburger menu დამალული */
@media (min-width: 769px) {
    .mobile-menu-toggle {
      display: none !important;
    }
  
    .navbar {
      display: flex !important;
    }
  }
  
  /* ===== MOBILE ===== */
@media (max-width: 768px) {
    /* hamburger menu */
    .mobile-menu-toggle {
      display: block;
      font-size: 38px;
      cursor: pointer;
      padding: 10px 20px;
      z-index: 9999;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
  
    .mobile-menu-toggle:hover {
      transform: scale(1.15);
      opacity: 0.7;
    }
  
    /* navbar hidden by default */
    .navbar {
      display: none;
      flex-direction: column;
      gap: 0;
      background: #ffffff;
      padding: 0;
      position: absolute;
      top: 150px;
      right: 0;
      width: 100%;
    }
  
      .navbar a {
    color: #005aa3;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 10px 20px;
    text-decoration: none;
  }
  
    .encadre-nav {
      border: none;
      padding: 10px 0;
    }
  }
  
  /* ==========================
   FOOTER
========================== */
footer {
  background-color: #005aa3;
  color: #ffffff;
  padding: 60px 40px;        /* საკმარისი სივრცე შიგნით */
  box-sizing: border-box;
  min-height: 100px;         /* მინიმალური სიმაღლე */
  padding: 0 40px;                /* გვერდებზე სივრცე */
  position: relative;
}

/* ======================
   Social Links Section
====================== */
.social-links {
    background-color: #fff; /* თეთრი ბლოკი */
    padding: 40px;           /* დაბალი padding */
    margin: 0;               /* ზედმეტი სივრცე არ დარჩეს */
  }
  .social-links h4 {
    margin: 0 0 10px 0;     /* სათაურის ქვემოთ spacing */
    font-size: 1rem;
    font-weight: 600;
  }
  
  .social-links p {
    margin: 0 0 10px 0;     /* ტელეფონის ქვემოთ spacing */
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
  }
  
  .social-links ul {
    list-style: none;       /* წერტილები გაქრება */
    padding: 0;
   
    margin: 0;
  }
  
  .social-links li {
    margin-bottom: 5px;     /* spacing ელემენტებს შორის */
     color: #000000;
  }
  
  .social-links a {
    text-decoration: none;
    color: #000000;         /* თეთრი ტექსტი */
    font-size: 0.9rem;
    transition: 0.3s;
  }
  
  .social-links a:hover {
    text-decoration: underline; /* hover underline */
  }
  .contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* კონტაქტი წავა მარჯვნივ */
    gap: 180px;
  }
  
  /* Logo */
  .logo {
    width: 220px;
    height: auto;
  }
  
  /* Adresse */
  .address {
    margin-left: auto;
  }
  
  /* Contact à droite */
  .contact {
    text-align: left;
  }
  
  /* Link style */
  .contact a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  /* Hover */
  .contact a:hover {
    color: #005aa3;        /* ლურჯი */
    text-decoration: underline;
  }
  
  
  .address h4,
  .contact h4 {
    color: #005aa3;
    font-weight: 600;
    margin-bottom: 6px;
  }
  


/* ===== MOBILE ===== */
@media (max-width: 768px) {

    .contact-container {
      flex-direction: column; /* stacked layout */
      align-items: center;
      gap: 20px;
    }
  
   
  .logo {
    width: 150px;
    align-items: center;
    margin-bottom: 10px;
  }
  
    .address {
      margin-left: 0;
      text-align: center;
    }
  
    .contact {
      text-align: center;
    }
  
    .address h4,
    .contact h4 {
      font-size: 1.1rem;  /* smaller headings */
    }
  
    .address p,
    .contact p,
    .contact a {
      font-size: 0.95rem;
      line-height: 1.4;
    }
  
    .contact a {
      color: #000000;
      text-decoration: none;
      -webkit-tap-highlight-color: transparent; /* mobile tap fix */
    }
  
    .contact a:hover {
        color: #005aa3;        /* ლურჯი */
        text-decoration: underline;
      }
  }


/* ======================
   Footer Legal (ქვედა ნაწილი)
====================== */
.footer-legal {
  display: flex;
  justify-content: space-between; /* მარცხნივ ↔ მარჯვნივ */
  align-items: flex-start;        /* ყველა ელემენტი ზედა ხაზზე იწყება */
  flex-wrap: wrap;  
  margin-top: 40px;              /* მობილურზე ქვემოთ ჩამოშლა */
  padding: 0;                      /* padding უკვე footer-ზეა */
  gap: 10px;                        /* სექციებს შორის მცირე spacing */
}

.footer-legal p {
  margin: 0;                        /* აღარ ჭირდება margin-top */
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 1;
}

.footer-legal ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;                        /* აქაც აღარ ჩაწეროთ margin-top */
  padding: 0;
}

.footer-legal a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-legal a:hover {
  text-decoration: underline;
}



/* COPYRIGHT */
.site-footer p {
  margin-top: 20px;
  font-weight: 200;
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}

@media (max-width: 768px) {

    /* Footer legal stacked layout */
    .footer-legal {
      flex-direction: column;   /* სექციები ზედიზედ */
      align-items: center;      /* ცენტრში */
      gap: 15px;                /* spacing მეტი mobile */
      margin-top: 30px;
    }
  
    /* paragraph smaller */
    .footer-legal p {
      font-size: 0.85rem;
      text-align: center;
    }
  
    /* list items stacked vertically or still horizontal with smaller gap */
    .footer-legal ul {
      flex-direction: row;      /* თუ ციფრები ცოტაა, შეგიძლიათ row */
      gap: 15px;
      flex-wrap: wrap;          /* თუ არ ეტევა ერთ ხაზზე */
      justify-content: center;
    }
  
    /* links font smaller */
    .footer-legal a {
      font-size: 0.85rem;
    }
  
    /* COPYRIGHT */
    .site-footer p {
      font-size: 0.8rem;
      text-align: center;
      margin-top: 15px;
    }
  }
  
