/*.navigation-wrapper{
    display: flex; align-items: center;    justify-content: space-between;    background-color: #101013;    color: #ccc;}*/
/* Default layout for large screens */
.navigation-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Ensures wrapping if needed */
  padding: 10px 20px;
  background-color: #101013;
  color: #ccc;
}

/* Optional styling for columns */
.left-column,
.center-column,
.right-column {
  flex: 1;
  padding: 10px;
}

/* Center the logo section */
.center-column {
  text-align: center;
}

/* Responsive behavior for small screens */
@media (max-width: 615px) {
  .navigation-wrapper {
    flex-direction: column;
    height:100%;
  }

  /* Reorder the columns */
   .navigation-wrapper >.center-column {
    order: 1; /* Top */
    width:100%;
  }
   .navigation-wrapper >.left-column {
    order: 2; /* Middle */
     width:100%;
  }
   .navigation-wrapper >.right-column {
    order: 3; /* Bottom */
     width:100%;
  }

  /* Make sure each column takes full width */
  .left-column,
  .center-column,
  .right-column {
    width: 100%;
    text-align: center; /* optional for small screens */
  }
}

/*center column*/
.navigation-wrapper > .center-column > .logo-banner img{
    width: 400px;
    height:220px;
}
.navigation-wrapper >.center-column{
    display: grid;
    grid-gap: 36px;
    width: 100%px;
}
/*Left column*/
.media{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
}
.logo-banner{
    align-items: center;
}
.right-column{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 30px;
}
.contact-icon{
    margin-right: 30px;
}
.menu-links{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.left-column{
    display: grid;
    grid-template-columns: 1 fr;
    grid-gap: 10px;
}
.nav-link a{
    text-align: center;
    text-decoration: none;
    color:#fff;
    font-size: 0.9em;
}
.nav-link a:hover{
    color: #cea135;
   letter-spacing: 2px;
}
.navigation-wrapper >.left-column >.media >.social-icon{
    font-size: 1.2em;

}
.navigation-wrapper >.right-column >.address-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:#ccc;
}
.navigation-wrapper >.right-column >.address-wrapper >.contact-link{
    margin: 20px;
}
.navigation-wrapper > .left-column > .media-link a{
    color: #fff;
    text-decoration: none;
}
.navigation-wrapper > .left-column > .media >.media-link a:hover{
    color: #cea135;
   letter-spacing: 2px;
}
.navigation-wrapper > .left-column > .media >.media-link a:visited{
    color: #ce3556;
    background-color: #f0f992;
   
}
.navigation-wrapper > .right-column > .address-wrapper >.contact-link a:hover{
color: #cea135;
   letter-spacing: 2px;
}
.navigation-wrapper > .right-column > .address-wrapper >.contact-icon a:hover{
color: #cea135;
   letter-spacing: 2px;
}
.navigation-wrapper > .right-column > .address-wrapper >.contact-icon {
    font-size: 1.6em;
}
navigation-wrapper > .right-column > .address-wrapper{
    color: #fff;
}
.navigation-wrapper > .left-column > .media > .social-icon a:hover {
color: #cea135;
   letter-spacing: 2px;
}
.navigation-wrapper > .left-column >.media >.media-link{
    font-size: 1.2em;
}

.menu-links {
    display: flex;
    flex-direction: row; /* stack links vertically */
    align-items: center; /* center horizontally */
    gap: 10px;
  }

  .nav-link a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd; /* optional separator line */
  }

  .nav-link:last-child a {
    border-bottom: none; /* remove line from last link */
  }
 

/* Responsive (small screens) */
@media (max-width: 615px) {
  .menu-link {
    display: flex;
    flex-direction: column; /* stack links vertically */
    align-items: center; /* center horizontally */
    gap: 10px;
  }

  .nav-link a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd; /* optional separator line */
  }

  .nav-link:last-child a {
    border-bottom: none; /* remove line from last link */
  }
}
