/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  background-color: #006747;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  width: 100%;
}

/* ROW MAIN met achtergrond */
.main-bg {
    background-color: #006747;
    background-image: url(img/HaKD2025_Damast-BG_Landscape.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 80vh;
    margin: 10vh 0;
    padding-top: 25vh;
    position: relative;
}

/* FOOTER ROW */
.row-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
}

.main-footer {
    position: absolute;
    bottom: -60px;
    width: 100%;
}

.main-logo {
  max-height: 250px;
  height: auto;
  margin-bottom: 40px;
}

.kato-logo {
    max-width: 220px;
    height: auto;
    margin-top: 85px;
    float: right;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.session-button {
  background-color: #b2a6d4;
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  /* border-radius: 8px; */
  font-weight: bold;
  transition: background-color 0.3s;
}

.session-button:hover {
  background-color: #9986c2;
}

.sharpness-logo {
  max-width: 250px;
  height: auto;
}

/* FOOTER LOGO rechts onder */
footer {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

footer img {
  max-width: 150px;
  height: auto;
}

/* 📱 Mobiel */
@media (max-width: 768px) {
  body {
    background-image: url('img/HaKD2025_Damast-BG_Mobile.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
  }

  .main-bg{
    padding-top: 15px;
    background-image: none;
    background-color: transparent;
  }

  .main-logo{
    width: 85vw;
    margin-bottom: 60px;
  }

.main-footer {    
    bottom: inherit;
}

  .kato-logo {
      max-width: 200px;
      position: fixed;
      bottom: 15px;
      right: 15px;
    }
  .sharpness-logo {
    max-width: 200px;
    width: 200px;
  }
}
