@charset "utf-8";

/* Bloc */
.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 24px;
}

.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 20px;
	box-shadow: var(--shadow-soft);
	animation: fadeIn .6s ease both;
	backdrop-filter: blur(12px);  
}

.card--glow {box-shadow: 0 0 18px rgba(217, 164, 65, .22), var(--shadow-soft);}

@keyframes fadeIn {
	from {opacity: 0; transform: translateY(6px);}
	to {opacity: 1; transform: none;}
}

.grid {display: grid; gap: 16px;}

@media (min-width: 900px) {
	.grid-2 {grid-template-columns: 1fr 1fr;}
}

/* Profil */
#profil,

#profil header {display: grid; grid-template-columns: 220px 1fr; gap: 20px; align-items: center;}

#profil > div:last-child,

#profil header > div:last-child {display: flex; flex-direction: column; justify-content: center;}

@media (max-width: 640px) {
	#profil,
	#profil header {grid-template-columns: 1fr; gap: 16px;text-align: center;}
    .avatar-glow {margin-inline: auto;}
}

.avatar {
	width: 220px;
	height: 220px;
	border-radius: 20px;
	object-fit: cover;
	border: 2px solid var(--border);
	display: block;
}

.avatar-glow {
	border-radius: 24px;
	padding: 4px;
	box-shadow: 0 0 20px rgba(217, 164, 65, .22);
}

.tagline {
	font-size: 1rem;
	margin: 0;
	max-width: 78ch;
}

/* Youtube */
.note {font-size: 1rem;}

.sc-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
}

.sc-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Songs */
ul {margin: 8px 0 0 0; padding-left: 1rem;}

li {margin: 6px 0;}

.songs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-top: 1rem;
}

.songs-grid ul {
	list-style: disc;
	padding-left: 1.2rem;
	margin: 0;
}

.songs-grid li {margin-bottom: 0.4rem;}

.songs-grid em {font-style: normal;}

.songs-flyer .link-flyer {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.songs-flyer .link-flyer em {transition: color 0.25s ease;}

.songs-flyer .link-flyer:hover em {color: #8b5cf6;}

.flyer-preview {
    position: absolute;
    top: 50%;
    left: 120%;
    transform: translateY(-85%);
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background: #AC8B50;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);

    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.flyer-preview img {
    width: 240px;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.link-flyer:hover .flyer-preview {
    opacity: 1;
    visibility: visible;
}

/* Social Network */
.social-network-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-logo {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid var(--border);
  display: block;
}

.social-logo-glow {
  border-radius: 24px;
  padding: 0px;
  box-shadow: none;
}

.social-network-content {
  flex: 1;
  min-width: 0;
}

.social-network-content h2 {margin-top: 0;}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
}

@media (max-width: 640px) {
  .social-network-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-logo-glow {margin-inline: auto;}

  .socials {justify-content: center;}
}

/* Contact */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.contact-form input, .contact-form textarea, .contact-form button {
	font-family: inherit;
	font-size: 0.95rem;
}

.contact-form input,

.contact-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid rgba(217, 164, 65, .28);
	border-radius: 12px;
	background: rgba(255, 255, 255, .45);
	color:var(--text);
	line-height: 1.4;
	resize: vertical;
	transition: all 0.25s ease;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .20);
}

.contact-form input:focus,

.contact-form textarea:focus {
	outline: none;
	border-color: #D9A441;
	background: #FFF9EA;
	box-shadow:0 0 0 3px rgba(217, 164, 65, .22);
}

.form-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-top: .5rem;
}