@import url("https://fonts.cdnfonts.com/css/pp-neue-montreal");

/* ===== Base ===== */
body
{
   font-family: "PP Neue Montreal", sans-serif;
   margin: 0;
   color: #595959;
}

/* ===== Navbar ===== */
.topnav
{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
   padding: 10px 40px;
   margin: 20px;
}

.topnav a
{
   color: #595959;
   text-align: center;
   padding: 6px 15px;
   text-decoration: none;
   font-size: 18px;
   border: 2px solid transparent;
   border-radius: 8px;
   transition: 0.2s;
}

.topnav a:hover
{
   border-color: #595959;
   background-color: #595959;
   color: white;
}

.topnav a.active
{
   border-color: #595959;
   background-color: #595959;
   color: white;
}

.logo
{
   display: flex;
   flex-direction: row;
   align-items: center;
   height: 38px;
}

.logo p
{
   margin-left: 15px;
   font-size: 22px;
   font-weight: 600;
}

.logo img
{
   width: 62px;
   height: 62px;
}

/* ===== Footer ===== */
.footer
{
   margin-top: 40px;
   padding: 30px 60px;
   background-color: #595959;
   color: white;
   text-align: center;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
}

.footer-logo,
.footer-contacts
{
   display: flex;
   flex-direction: row;
   align-items: center;
}

.footer-logo img
{
   width: 62px;
   height: 62px;
}

.footer-contacts img
{
   width: 30px;
   height: 30px;
}

.footer-logo p
{
   margin-left: 15px;
   font-size: 20px;
   font-weight: 600;
}

.footer-contacts
{
   gap: 15px;
}

.footer-copyright
{
   font-weight: bold;
   margin-top: 10px;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px)
{
   .topnav
   {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px 20px;
      margin: 10px 0;
   }

   .logo img
   {
      width: 42px;
      height: 42px;
   }

   .logo p
   {
      font-size: 16px;
      margin-left: 10px;
   }

   .topnav a
   {
      font-size: 14px;
      padding: 4px 10px;
   }

   .footer
   {
      flex-direction: column;
      gap: 15px;
      text-align: center;
      padding: 20px;
   }

   .footer-logo img
   {
      width: 45px;
      height: 45px;
   }

   .footer-logo p
   {
      font-size: 16px;
   }

   .footer-contacts img
   {
      width: 22px;
      height: 22px;
   }

   .footer-copyright
   {
      font-size: 14px;
   }
}