/*SERVICES CSS FILES FOR IHM BRIGHTON*/


.services{
  background-color: black;
  
}
.mss-container{
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
  margin-top: 0;
}

.mss-container h2{
  margin-top: 0;
}

.service-container {
  display: grid;
  /* Automatically adjusts column count; minimum card width is 300px */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;

}

.service-card {
  background-color: #333;
  padding: 2.0rem;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #FFD700;
}

/* Hover effect for interactivity */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #FFD700;
  text-transform: uppercase;
  line-height: 1.8em;
  letter-spacing: 2px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.service-card p {
  font-family: "Roboto", sans-serif;
  color: #eee;
  line-height: 1.6;
}

/*  XXXXXXXXXXXXXXX  MAP CSS XXXXXXXXXXX */

#maps {
    width:100%; 
    background-color:#333; 
    padding: 3.0rem 2.0rem;
    font-family: "Roboto", sans-serif;
   
}

.frame{
    width:100%;
    display:flex; 
    flex-wrap: wrap; 
    align-items: center; 
    justify-content: center
}

.g-map-item{
    width: 48vw; 
    min-width: 320px; 
    position: relative; 
    
}

.maps-content{
    background-color: #333; 
    width:50%; 
    min-width: 320px; 
    display: flex; 
    flex-direction: column; 
    align-items:center; 
    align-content: flex-start;  
    flex-basis: 48%; 
    color: #FFF;
    padding: 4.0rem 2.0rem;
}

@media only screen and (max-width: 700px) {
    
    .frame{
        flex-direction: column;
    }
    
    .g-map-item{
        width:100%;
    }
    
    .maps-content{
        width:100%;
    }
    
    
    
    
    
    
    
    
}



























