

@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;
    }
}



/* 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;
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
    .mobile-menu-toggle {
      display: none;
    }
  
    .navbar {
      display: flex;
    }
  }
  
  /* ===== 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;
    }
  }

/* 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; /* მცირე სივრცე სიტყვებს შორის */
  }
}
  /* SECTION LAYOUT */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 60px;
    background-color:#e6eff6;
  }
  
  /* MINI TITLE */
  .mini-title {
    color: #005aa3;
    font-size: 12px;
    letter-spacing: 2px;
  }
  
  /* LEFT SIDE */
  .contact-left h5 {
    font-size: 32px;
    color: #005aa3;
    margin: 10px 0 30px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    border: none;
    background: #ffffff;
    padding: 18px;
    border-radius: 6px;
    margin-bottom: 50px;
    font-size: 16px;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .contact-form textarea {
    height: 180px;
    resize: none;
  }
  
/* ღილაკი */
.btn-primary {
    background: #005aa3;
    color: white;
    font-size: 18px;
    padding: 16px 40px;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
  }
  
  
  
  .btn-primary:hover {
    background-color: #003f6b;
  }
  
  /* RIGHT SIDE */
  .contact-right h5 {
    font-size: 32px;
    color: #005aa3;
    margin: 10px 0 20px;
  }
  
  .contact-desc {
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  
  /* CONTACT BOX */
  .contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  /* Email link */
.contact-box a {
    color: #000;              /* შავი ტექსტი */
    text-decoration: none;    /* ხაზის გარეშე */
    transition: 0.3s;
  }
  
  /* Hover effect */
  .contact-box a:hover {
    color: #005aa3;           /* hover-ზე ლურჯი (შეგიძლია შეცვალო) */
  }
  
  .icon {
    width: 60px;
    height: 60px;
    color: #005aa3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
  }
  
  /* =========================
   FORM MOBILE / TABLET 768px
========================= */

@media (max-width: 768px) {

    /* მთლიანად section 1 column */
    .contact-section {
      grid-template-columns: 1fr;
      padding: 40px 20px;
      gap: 40px;
    }
  
    /* Name + Email -> 1 column */
    .form-row {
      grid-template-columns: 1fr !important;
      gap: 15px;
    }
  
    /* Inputs full width */
    .contact-form input,
    .contact-form textarea {
      width: 93%;
      margin-bottom: 40px;
      font-size: 16px;
    }
  
    /* textarea height smaller mobile */
    .contact-form textarea {
      height: 140px;
    }
  
    /* Button full width (optional but better mobile UX) */
    .btn-primary {
      width: 100%;
      text-align: center;
      padding: 14px;
      margin-bottom: 40px;
    }
  
    /* Right side spacing */
    .contact-right {
      margin-top: 10px;
    }
  
  }
  
  

  /* ==========================
   FOOTER
========================== */
footer {
    background-color: #005aa3;
    color: #ffffff;
    padding: 60px 40px;        /* საკმარისი სივრცე შიგნით */
    box-sizing: border-box;
    min-height: 100px;         /* მინიმალური სიმაღლე */
    padding: 0 40px;                /* გვერდებზე სივრცე */
    position: relative;
  }

  /* ======================
   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;
    }
  }
  