*{
    margin: 0;
    padding: 0;
  }
  
  body {
      font-family: Arial, Helvetica, sans-serif;
      min-height: 100vh;
      background-image: url(./images/17.jpg);
      background-repeat: repeat-y;
      background-position: center;
      background-attachment: fixed;
      background-size: cover;
      }
  
  #logo_image{
    width: 300px; /*set the width or max-width*/
    height: auto; /*this makes sure to maintain the aspect ratio*/
    cursor: pointer;
    margin-left: auto;
  }
  
  /*top menu*/
    .topnav {
      background-color: white;
      background-image: none;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1; /*sets the vertical stacking order of a positioned element along the z-axis*/
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
    }
  
    .topnav a {
      color: black;
      text-align: center;
      padding: 41px 43px;
      text-decoration: none;
      font-size: 17px;
      white-space: nowrap;
    }
  
    .topnav a:hover {
      background-color: rgba(62, 180, 137, 0.877);
      color: black;
    }

  div.menu-bar li:hover > ul {
    display: block;
    }

  /*side menu*/
  .sidebar {
     height: 100%;
     width: 0;
     position: fixed;
     z-index: 1;
     top: 0;
     left: 0;
     background-color: #111;
     overflow-x: hidden;
     transition: 0.5s;
     padding-top: 60px;
    }

  /*inside sidebar*/
  .sidebar a {
     padding: 8px 8px 8px 32px;
     text-decoration: none;
     font-size: 25px;
     color: #818181;
     display: block;
     transition: 0.3s;
    }
        
  .sidebar a:hover {
     color: rgba(62, 180, 137, 0.877);
    }
        
  .sidebar .closebtn {
     background: transparent;
     border: none;
     color: #fff;
     outline: none;
     position: absolute;
     top: 0;
     right: 25px;
     font-size: 36px;
     margin-left: 50px;
     cursor: pointer;
    }
        
  .closebtn:hover{
     color: #4CAF50;
  }
        
  .openbtn {
     font-size: 20px;
     cursor: pointer;
     background-color: white;
     color: black;
     padding: 37.5px 35.5px; /*size of sidebar button(height and lenght)*/
     border: none;
     flex-shrink: 0;
    }
  
  .openbtn:hover {
     background-color: rgba(62, 180, 137, 0.877);
    }
  
  /*example with icons*/
  .stickyicon-list {  
    position: fixed;  
    top: 200px;   
    transform: translateY(-50%);           
    }         
    .stickyicon-list a {   
    display: block; 
    text-align: center;   
    padding: 8px;   
    transition: all 0.5s ease;   
    color: white;   
    font-size: 20px; 
    }         

    /* Hover affect on sticky social media icons   */
    .stickyicon-list a:hover {   
    color: #000;  
    } 
  
    .gmail {
      border: none;
      color: #fff;
      background-color: #e40707;
      display: block;
    }

   .facebook {      
    color: white;  
    background: #3b5998;
    }  

   .instagram {   
    color: white;  
    background: #3f729b;   
    }     
    
    .phone {
    color: white; 
    background: #e40707; 
    }    
 
  iframe{
    width: 80%;
    height: 500px;
  }

  #footer {
    position: fixed;
    bottom: 0px;
    background: #333;
    color: #ffffff;
    width: 100%;
    height: 23px;
    text-align: center;
  }

  /* main contact container */
.contact-section {
  padding-top: 140px; /* for the top nav */
  padding-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.contact-container {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* info card & map card */
.contact-card, .map-card {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
}

/* letterpress */
.contact-card h1 {
  font-size: 28px;
  color: #1a252c;
  text-align: left;
  padding: 0 0 15px 0;
}

.contact-intro {
  font-size: 16px;
  color: #555;
  padding: 0 0 20px 0;
  line-height: 1.5;
}

.contact-info-box p {
  font-size: 18px;
  padding: 8px 0;
  color: #2c3e50;
}

/* copy phone button */
.copy-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #bd5555;
  cursor: pointer;
  text-decoration: underline;
  padding: 0 5px;
}

.call-icon {
  color: #3eb489;
  font-size: 20px;
  margin-left: 8px;
  text-decoration: none;
}

/* Schedule */
.schedule-box {
  margin-top: 25px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.schedule-box h3 {
  font-size: 18px;
  color: #1a252c;
  margin-bottom: 12px;
}

.schedule-box ul {
  list-style: none;
  padding: 0;
}

.schedule-box li {
  font-size: 16px;
  padding: 6px 0;
  display: flex;
  justify-content: space-between;
  color: #444;
}

/* Map */
.map-card {
  padding: 0;
  overflow: hidden;
  height: 450px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive for small screens */
@media (max-width: 1000px) {
  .contact-container {
    flex-direction: column;
  }

  .map-card {
    height: 300px;
    width: 100%;
  }
  
  .contact-section {
    padding-top: 110px;
  }

  .hideOnMobile{
    display: none;
  }

  .hideOnPC {
    display: block;
  }

  .topnav {
    justify-content: space-between;
  }

  #logo_image {
    margin-left: auto;
  }
}

