* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

body {
  background: url('sleepy-cat.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: background-image 0.3s ease-in-out;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 800px;
  min-height: 100dvh;
  padding-top: 40px;
  padding-bottom: 40px;
}

.message h1 {
  font-size: 2rem;
  line-height: 1.4;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  padding: 40px 20px;
}

.cv-social-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.social-links-inline {
  display: flex;
  gap: 30px;
}

.social-button img {
  width: 100%;
  max-width: 48px;
  height: auto;
  filter: invert(1) brightness(2);
  transition: transform 0.2s ease;
}

.social-button img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/* ✅ MOBILE STYLES */
@media (max-width: 600px) {
  .message h1 {
    font-size: 1.4rem;
    padding: 20px 10px;
  }

  .social-button img {
    max-width: 36px;
  }

  .container {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  body {
    background: url('sleepy-cat-mobile.png') no-repeat center top;
    background-size: cover;
    background-attachment: scroll;
  }
}
