

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
		background-color:#f5ede6;
}

footer {	
    background-color: #f5ede6;
    color: #333;
    text-align: center;
    padding: 6px 0;
}
footer .social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .social .icon {
    width: 24px;
    height: 24px;
    transition: 0.3s;
}

footer .social .icon:hover {
    transform: scale(1.2);
}





#logoimage {
    	height:50px;
}


a{
	text-decoration: none;
	}
nav {    
    position: fixed; 
    top: 0;
	left: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
	justify-content: space-between;
    padding: 15px 18px;
    background-color: #f5ede6; 
}
.menu {
	margin-right: 100px;
    display: flex;  
    gap: 70px;	
}
.menu a {  
    transition: 0.3s; 
	text-decoration: none;
    color: purple;
   	font-weight: bold;
   	font-size: 20px;
   	font-family: "Segoe Print";
}
.menu a:hover {
    color: #A155B9;                     
    transform: translateY(-2px);   
}




.logo-contact{
    position: absolute;
    left: 18px;
	top:15px;
}

.head{
	padding-top:60px;	
}

.header-text{
	margin:0px;
}

.header-text h1 {
    margin-bottom: 6px;
}

.header-text p {
	text-align: center;
    margin-top: 0;
    margin-bottom:0px;
}



.special-text{
	text-align: center;
    font-family: "Courier New";
    font-size: 36px;    
	font-weight: bold;
    color: purple;
}
.title{
	text-align: center;
	font-family: "Courier";
    font-size: 25px;    
	font-weight: bold;
	color: #A155B9;
    	
}
.head .text{
	text-align: center;
}
.text{
	
	font-family: "Segoe Print";
	font-weight: bold;
	font-size: 20px;	
	
}
.text-small{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 5px;
	font-size:22px;
	font-weight: bold;
    font-family: "Courier";
	color: #A155B9;
}



.box{
    display: flex;
    justify-content: center;
    gap: 20px;
    
    margin-top: 32px;
}

.btn-login:hover,
.btn-sign:hover {
    background: linear-gradient(135deg, #8b5cf6, red);
    color: #FFF;
    border-color: #67085A;
}

.butn, .btn-login, .btn-sign {
	font-family: "Courier";
	cursor: pointer;
	transition: 0.2s;
	text-align: center;
	font-weight: bold;
	border-radius: 8px;
	border: none;
}
.butn {
	width: 220px;
	padding: 20px;
	background: purple;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.butn:hover {
	transform: translateY(-4px);
	background: linear-gradient(135deg, #8b5cf6, red);
	box-shadow: 0 6px 18px rgba(139, 92, 246, 0.4);
}



.btn-login {
	width: 100%;
	padding: 12px;
	background: #FFFFFF;
	color: purple;
	border: 1px solid #094183;
}
.btn-sign {
	display: block;
	width: 100%;
	padding: 12px;
	margin-top: 10px;
	background: purple;
	color: #FFF;
}
.btn-sign a{
	color:#FFF;
}



.form-box {
	
    width: 550px;
    max-width: 90%;
    margin: 0px auto 0px;
    background: #FFFFFF;
    padding: 20px 30px;
    border-radius: 12px;
    border: 2px solid #094183;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-box fieldset {
    border: 1px solid #094183;
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 20px;
}

.form-box label {
    display: block;
    margin-bottom: 8px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #A155B9;
}

.form-box input[type="text"],
.form-box input[type="email"],
.form-box input[type="password"],
.form-box textarea
 {
    width: 97%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #094183;
    border-radius: 8px;
    background: #F7F7F7;
    font-size: 15px;
}
.form-box fieldset label {
    display: inline-block;
    margin-right: 15px; 
    cursor: pointer;
}
.form-box legend {
    font-weight: bold;
    color: #A155B9;
    font-size: 18px;
}
.form-box input[type="radio"],
.form-box input[type="checkbox"] {
    margin-right: 5px;
	vertical-align: center;
	 cursor: pointer;
}
label{
	font-family: "Courier";
	}



.top-song-list{ 
	display: grid;
	grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	width: 1000px;
	margin-bottom:50px;
	
	
	}
.top-song-card{
	height: 120px;
	background: linear-gradient(135deg, #8b5cf6, #f43f5e);
	color: white;
	font-family: "Courier";
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition:transform 0.3s,box-shadow 0.3s;
	
	}


.top-song-card h2{
	margin: 0px;
	font-size: 18px;
  
}

.top-song-card p{
	font-weight: bold;
	font-size: 15px;
  

}
.top-song-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}












.artist-header {
  background: linear-gradient(135deg, purple, #8b5cf6);
  color: white;
  text-align: center;
  padding: 40px 20px;
}


main {
	flex: 1;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}



.artist-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;      
    justify-content: center;  
}


.small-artist-img {
  
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.artist-bio h2 {
  color: purple;
  margin-bottom: 10px;
}


.quote {
  text-align: center;
  font-style: italic;
  margin: 40px 0;
  font-size: 20px;
  color: purple;
}


.timeline h2 {
  text-align: center;
  margin-bottom: 15px;
}
.event {
  background-color:white;
  border-left: 4px solid purple;
  padding: 12px;
  margin: 10px auto;
  max-width: 600px;
}

.artist-songs ul {
  list-style: none;
  text-align: center;
}
.artist-songs li {
  font-size: 18px;
  font-weight: bold;
  padding: 6px;
}

.artist-video {
  text-align: center;
  margin: 40px 0;
}
.artist-video video {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
}












.music-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn {
  padding: 15px;
  width: 200px;
  background: purple;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 12px;
  font-weight: bold;
}
.btn:hover {
  background: linear-gradient(135deg, #8b5cf6, red);
}

.artist-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.artist-nav a {
  text-decoration: none;
  color: purple;
  font-weight: bold;
}

.top-button {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: purple;
  color: white;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
}
.artist-songs{
  text-align:center;
  margin:40px 0;
}
/*mariem elloumi*/
.song-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  margin-top:20px;
}

.song-card{
  background: linear-gradient(135deg, #8b5cf6, #f43f5e);
  color:white;
  font-weight:bold;
  padding:12px 20px;
  border-radius:12px;
  font-size:1rem;
  cursor:pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.song-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}



.category { 
		margin-bottom:36px;
	}
	
	.category h2 {
		margin-bottom:12px;
		font-family: "Segoe Print";
		font-weight: bold;
		font-size: 1.3rem;
		color:#333;
	}

  
    .artists-container {
      display:flex;
      gap:18px;
      overflow-x:auto;
      padding-bottom:10px;
      scroll-behavior:smooth;
    }
    .artists-container::-webkit-scrollbar { 
		height:10px;
	}
    .artists-container::-webkit-scrollbar-thumb {
		background:#bdbdbd;
		border-radius:6px;
	}

  
    .artist {
      flex:0 0 auto;
      width:220px;
      height:220px;
      border-radius:12px;
      overflow:hidden;
      position:relative;
      background:#fff;
      box-shadow:0 6px 16px rgba(0,0,0,0.12);
      cursor:pointer;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .artist img {
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      transition: transform .45s ease;
    }
    .artist p {
      position:absolute;
      bottom:0;
      left:0; right:0;
      margin:0;
      padding:6px 6px;
      background:rgba(0,0,0,0.45);
      color:#fff;
      font-weight:700;
      font-size:0.95rem;
      text-align:center;
      transition: color .25s ease, background-color .25s ease;
    }
	
	
    .artist:hover,
    .artist:focus {
      transform: translateY(-6px);
      box-shadow:0 14px 36px rgba(0,0,0,0.22);
    }
    .artist:hover img,
    .artist:focus img { transform: scale(1.08); }
    .artist:hover p,
    .artist:focus p {
      color:#ffd7e6;
      background-color: rgba(0,0,0,0.6);
    }


#unlockPopup {
    position: fixed;
    top: 90px; 
    right: 20px;
    background: linear-gradient(135deg, purple, #8b5cf6);
    color: white;
    padding: 16px 26px;
    border-radius: 14px;
    font-family: "Courier";
    font-size: 18px;
    font-weight: bold;
    display: none;
    z-index: 2000;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.5);
}
.popup {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: purple;
  color: white;
  padding: 15px 30px;
  border-radius: 0 0 18px 18px;
  font-size: 18px;
  font-weight: bold;
  z-index: 2000;
  transition:0.5s ;
}

.popup button {
    background: white;
    color: purple;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.popup button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


.popup.error { background-color: #f44336; color: white; }



.news-column .title {
  text-align: center;
  font-size: 26px;          
  
  color: purple;
  
}
.news-card .text-small {
  font-size: 18px;          
  font-weight: bold;
  color: #5b21b6;
  text-align: center;
  margin: 0 0 6px 0;        
}



.news-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top:0px;
  margin-bottom:100px;
}

.news-column {

  width: 280px; 
  
  background: white;
  border-radius: 16px;
  padding: 16px;            
  border: 2px solid purple;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  display: flex;              
  flex-direction: column;   
  gap: 14px;
}



.news-card .text {
    text-align: center;
    font-size: 15px;
}

 .news-card {
	flex: 1; 
	background: #f5ede6;
	border-radius: 12px;
	padding: 10px 12px;       
	
	border-left: 5px solid purple;
	transition: 0.2s;
}


.news-card:hover {
  background: linear-gradient(135deg, #8b5cf6, pink);
  transform: translateY(-3px);
}