@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.artist-container {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    max-width: 420px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header h1 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #222;
}

.artist-photo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: filter 0.3s ease;
}

.artist-photo img:hover {
    filter: brightness(85%);
}

.artist-location {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333;
}


.social-links {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.social-links img {
  width: clamp(48px, 6vw, 96px);
  height: auto;
  display: block;
}

.social-links a:hover img {
  transform: scale(1.06);
  transition: transform 150ms ease;
}

.social-links a:focus {
  outline: 2px solid #555;
  outline-offset: 4px;
  border-radius: 6px;
}

<!--
.social-links img {
    width: 42px;
	height: 42px;
    margin: 0 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.3);
    filter: hue-rotate(45deg);
}
--!>

@media (max-width: 600px) {
    .artist-container {
        width: 90%;
    }
}