
/* Page Body */

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  
}

.site-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 150px;
  
  background-image: url('/image/ContactWallpaper.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-header {
    background: linear-gradient(90deg, #3d579a, #4d66a5);
    
    padding: 16px 18px;
    text-align: center;
    border-bottom: 1px solid #1f2126;
    display: flex;
    flex-direction: column;
    align-items: center;  /* centers content horizontally */
    justify-content: center; /* centers content vertically */
    gap: 8px; /* space between title, subtitle, and icons */
}

.card-body {
    flex: 1;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover; /* fills the area without distortion */
    display: flex;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    justify-items: center;
    align-items: center;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    background: rgba(28, 48, 98, 0.85);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0,0,0,0.5);
    background: rgba(28, 48, 98, 1);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}


/* Body (image goes here) */

.service-body {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.umzug-card .service-body {
    background-image: url('/image/HK_CardBG_1_Mod2.png');
}

.reinigung-card .service-body {
    background-image: url('/image/HK_CardBG_2.png');
}


