body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;

    

    main {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
         
        div {
            gap: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 1210px;
            align-self: center;
            height: 1375px;

            div {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                gap: 20px;
                height: 230px;
                box-shadow: -1px 12px 15px 5px rgba(0, 0, 0, 0.61);
                -webkit-box-shadow: -1px 12px 15px 5px rgba(0, 0, 0, 0.61);
                -moz-box-shadow: -1px 12px 15px 5px rgba(0, 0, 0, 0.61);

                h1 {
                    font-size: 50px;
                    font-family: "Oswald", sans-serif;
                    font-optical-sizing: auto;
                    font-weight: 600;
                    font-style: normal;
                }

                p {
                    font-size: 28px;
                    font-family: "Oswald", sans-serif;
                    font-optical-sizing: auto;
                    font-weight: 300;
                    font-style: normal;
                }
            }


            .center {
                display: flex;
                flex-wrap: wrap;
                flex-direction: row;
                height: 1100px;
                box-shadow: 23px 11px 0px -74px rgba(0, 0, 0, 0.75);
                -webkit-box-shadow: 23px 11px 0px -74px rgba(0, 0, 0, 0.75);
                -moz-box-shadow: 23px 11px 0px -74px rgba(0, 0, 0, 0.75);

                img {
                    width: 222px;
                }
            }
    
        }
        section {
            text-align: center;
            line-height: 1.2;
            p {
                 font-size: 50px;
                    font-family: "Oswald", sans-serif;
                    font-optical-sizing: auto;
                    font-weight: 600;
                    font-style: normal;
            }
            .thanks{
                font-size: 27px;
                    font-family: "Oswald", sans-serif;
                    font-optical-sizing: auto;
                    font-weight: 300;
                    font-style: normal;
                    margin-left: 15px;
                    margin-right: 15px;
            }
        }
    }
    footer {
        margin-top: 100px;
        font-family: sans-serif;
        font-weight: 200;
        font-style: normal;

        display: flex;
        justify-content: space-evenly;
        align-items: center;


        div {
            margin-top: 27px;
            margin-left: 64px;
            display: flex;
            flex-direction: column;
            gap: 15px;

            p {
                font-size: 25px;
            }
        }

        .vertline {
            width: 2px;
            height: 200px;
            background-color: gray;
        }

        img {

            width: 250px;
            margin-right: 50px;

        }
    }

}
body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* Body lock როცა drawer-ია ღია */
.no-scroll { overflow: hidden; }

/* -------- Header / Hero -------- */



/* -------- Top Navigation (შენი სტილები + მცირე safe ცვლილებები) -------- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: #fff;          /* რომ ჰამბურგერის შავი ხაზები დაინახოს */
  min-height: 60px;
  padding-right: 16px;       /* ადგილი მარჯვნივ ჰამბურგერისთვის */
}

nav .navlogo { display: flex; align-items: center; }
nav .navlogo img { margin-left: 50px; }
nav .navlogo p {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin-top: 30px;
  font-size: 33px;
}

nav .nav { margin-top: 10px; margin-right: 50px; display: flex; }
nav .menu { position: relative; }
nav .menu > a {
  text-decoration: none;
  color: black;
  padding: 10px 15px;
  display: inline-block;
}
nav .dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  min-width: 220px;
  z-index: 1;
}
nav .dropdown a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
}
nav .dropdown a:hover { background-color: #f2f2f2; }
nav .menu:hover .dropdown { display: block; }
nav a { color: black; font-size: 20px; }

/* -------- Divider -------- */
span {
  margin-top: 10px;
  display: flex;
  width: 100%;
  height: 2px;
  background-color: black;
}

/* -------- Footer (შენი სტილები) -------- */
footer {
  font-family: sans-serif;
  font-weight: 200;
  font-style: normal;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
footer div {
  margin-top: 27px;
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer p { font-size: 25px; }
footer .vertline { width: 2px; height: 200px; background-color: gray; }
footer img { width: 250px; margin-right: 50px; }

/* ===================================================== */
/*                    MOBILE NAV (RIGHT)                 */
/* ===================================================== */

/* ჰამბურგერი — ცოტა უფრო დიდი და შიგნით */
.hamburger{
  display: none;               /* desktop-ზე დამალული */
  margin-right: 20px;          /* შიგნით მოვწიეთ (ადრე 56px გქონდა) */
  width: 48px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}
.hamburger span{
  position: absolute;
  left: 6px; right: 6px;
  height: 4px;                 /* ხაზები ოდნავ სქელი */
  background: #000;
  transition: transform .3s ease, top .3s ease, opacity .3s ease;
}
.hamburger span:nth-child(1){ top: 10px; }
.hamburger span:nth-child(2){ top: 18px; }
.hamburger span:nth-child(3){ top: 26px; }
.hamburger.active span:nth-child(1){ top: 18px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ top: 18px; transform: rotate(-45deg); }

/* Overlay — დახურულზე გამჭვირვალე და არააქტიური */
.mobile-nav{
  position: fixed;
  inset: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  display: none;               /* desktop-ზე არ ჩნდება */
  z-index: 1000;
  transition: background .25s ease, opacity .25s ease;
}

/* Drawer — მარჯვნიდან გამოდის */
.mobile-nav-inner{
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(75vw, 360px);
  background: #fff;
  box-shadow: -2px 0 12px rgba(0,0,0,.15);
  padding: 60px 16px 24px;
  overflow-y: auto;
  transform: translateX(100%); /* დახურული */
  transition: transform .3s ease;
}

/* გახსნისას: overlay აქტიურდება და drawer შემოდის */
.mobile-nav.open{
  background: rgba(0,0,0,0.28);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav.open .mobile-nav-inner{ transform: translateX(0); }

/* Drawer-ის შიგნით header */
.mobile-nav-head{
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 8px; border-bottom: 1px solid #eee; margin-bottom: 12px;
}
.navlogo.mini img{ margin-left: 0; width: 36px; }
.navlogo.mini p { margin-top: 0; font-size: 24px; }
.close-btn{
  border: none; background: transparent;
  font-size: 36px; line-height: 1; cursor: pointer;
}

/* Click-to-expand ჯგუფები */
.mobile-group{ border-bottom: 1px solid #f0f0f0; }
.mobile-toggle{
  width: 100%; text-align: left; padding: 14px 6px;
  background: transparent; border: none; cursor: pointer;
  font-size: 20px; color: #000; font-weight: 700;
}
.mobile-dropdown{ display: none; flex-direction: column; padding: 0 6px 10px 6px; }
.mobile-dropdown.show{ display: flex; }
.mobile-dropdown a{
  display: block; padding: 10px 6px; font-size: 18px; color: #333; text-decoration: none; font-weight: 400;
}
.mobile-link{
  display: block; padding: 14px 6px; text-decoration: none; color: #000;
  font-size: 20px; font-weight: 700; border-bottom: 1px solid #f0f0f0;
}

/* -------- Responsive Activation -------- */
@media (max-width: 1920px) {
  main div {
    height: 100% !important;
  }
  .text {
    height: 230px !important;
  }
}
@media (max-width: 1230px) {
  main div {
    width: 100% !important;
}
.nav {
  margin-right: 0px !important;
}
section .p1 {
  font-size: 45px !important;
}
section p {
  font-size: 20px !important;
}

}
@media (max-width: 1120px) {

  main div h1 {
    font-size: 45px !important;
  }
  main div p {
    width: 550px !important;
    text-align: center !important;
    font-size: 23px !important;
  }



}
@media (max-width: 920px){
  nav .nav{ display: none; }     /* desktop-nav დამალე */

  /* Სპეციფიკური სელექტორი, რომ ნამდვილად გამოჩნდეს */
  nav .hamburger{
    display: flex;               /* flex → ხაზები ყოველთვის ჩანან */
    align-items: center;
    justify-content: center;
  }

  .mobile-nav{ display: block; } /* დახურულზე არ აფარებს (opacity:0; pointer-events:none) */

  /* სურვილისამებრ hero ზომის ადაპტაცია */
     main div h1 {
      font-size: 40px !important;
     }
     main div p {
      font-size: 20px !important;
     }

  footer {
    flex-direction: column;
    }
    .vertline {
      height: 2px !important;
      width: 100% !important;
      margin-top: 20px !important;
    }
    div {
      margin-left: 0px !important;
    }
    img {
      margin-right: 0px !important;
    }
    section .p1  {
      font-size: 22px  !important;
    }
     
}
@media (max-width: 760px) {
  main div h1 {
    font-size: 35px !important;

  }
  main div p {
    width: 450px !important;
    font-size: 20px !important;
  }
  .text {
    height: 150px !important;
  }
}
@media (max-width: 700px) {
  main div h1 {
    font-size: 35px !important;
  }
  main div p {
    font-size: 20px !important;
  }
}
@media (max-width: 485px) {
  main div h1 {
    font-size: 32px !important;
  }
  main div p {
    font-size: 18px;
    width: 400px !important;
  }
}
@media (max-width: 480px) { 

      .navlogo {
        img {
          margin-left: 15px !important;
        }
      }
}

@media (max-width: 440px) {

  main div h1 {
    font-size: 28px !important;
  }
  main div p {
    width: 300px  !important;
    font-size: 18px !important;
  }
}
@media (max-width: 387px) {
  main div h1 {
    font-size: 25px !important;
  }
}
@media (max-width: 350px) {
  main div h1 {
    font-size: 22px !important;
  }
  main div p {
    font-size: 18px !important;
    width: 250px !important;
  }
}
@media (max-width: 320px) {
 .navlogo {
        img {
          margin-left: 5px !important;
        }
      }
       h1 {
          padding-left: 5px;
          padding-right: 50px;
       }
}

 p {
  text-decoration: none;
 }