
/* 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/HK_BodyBG_1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-header {
    background: linear-gradient(90deg, #0097b2, #05acca);
    
    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;
}


/* SERVICE CARDS */

.service-card {
    width: 300px;
    height: 580px;
    border: 1px solid #2a2a2d;
    background: rgba(15, 15, 18, 0.7);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* Header */

.service-header {
    height: 48px;
    background: linear-gradient(90deg, #0097b2, #05acca);
    color: #ffffff;
    font-family: "Inter", "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: center;

    border-bottom: 1px solid #1f2126;
    
}

.card-icon {
width: 24px; /* adjust size */
height: 24px;
margin-right: 8px; /* space between icon and text */
vertical-align: middle;
}

/* 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');
}





