/* Ecran de incarcare */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #141414, #2d2d2d);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}
.loading-container {
  position: relative;
  text-align: center;
}
/* Vinil animat */
.vinyl-container {
  position: relative;
  margin: 0 auto 40px;
  width: 200px;
  height: 200px;
}
.vinyl {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(0.37turn, #1a1a1a, #585858, #1a1a1a);
  border: 2.5px solid #090909;
  animation: spin 2s linear infinite;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.377);
}
.label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(0.10turn, #f0f0f0, #858383, #f0f0f0);
  border: 2px solid #fff;
}
.center-hole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3d3d3d;
}
.microphone-arm {
  position: absolute;
  top: -70px;
  right: 90px;
  font-size: 3rem;
  color: #ffffff;
  animation: bounce 2s ease-in-out infinite;
}
/* Bara de progres */
.loading-progress {
  width: 300px;
  margin: 0 auto;
}
.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.097);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.progress-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #ffffff;
  animation: progress 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.loading-text {
  margin-top: 25px;
  color: #fff;
}
.loading-text h1 {
  font-size: 2.2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  animation: textGlow 1s ease-in-out infinite;
}
.loading-text p {
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 1px;
}
/* Animatii */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes progress {
  0% { width: 0; }
  100% { width: 100%; }
}
@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(230,126,34,0.3); }
  50% { text-shadow: 0 0 40px rgba(255, 255, 255, 0.738); }
}
/* Particule decorative */
#loading-screen::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 90%;
  background-image: radial-gradient(circle at 50% 50%, 
    rgba(255, 255, 255, 0.234) 0%, 
    transparent 70%);
  animation: particleMove 15s linear infinite;
}
@keyframes particleMove {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll smooth între sectiuni */
html {
  scroll-behavior: smooth;
}

/* Reset si stiluri de baza */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #e5e5e5;
  line-height: 1.6;
  color: #706464;
}
a {
  text-decoration: none;
  color: inherit;
}
nav ul {
  list-style: none;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header & Navigatie */
header {
  background: linear-gradient(180deg, #949494, #444);
  color: #ffffff;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
nav .logo {
  font-size: 1.2rem;
  font-weight: 600;
}
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}
nav ul {
  display: flex;
  transition: right 0.5s ease;
}
nav ul li {
  margin-left: 10px;
  font-size: 1.2rem;
}
nav ul li a {
  color: #fff;
  font-weight: 500;
  padding: 5px 5px;
  transition: background 0.3s;
}
nav ul li a:hover {
  background: rgba(255,255,255,0.2);
  border-radius: 5px;
}
.menu-close {
  display: none;
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
}
section[id] {
  scroll-margin-top: 70px;
}

/* Sectiunea Hero */
#hero {
  height: 90vh;
  position: relative;
  background-image: url('img/img12.jpeg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}
#hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#hero .content {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 1;
  animation: fadeInDown 1s ease-out;
}
#hero h1 {
  font-size: 3.0rem;
  margin-bottom: 20px;
}
#hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
#hero .btn {
  background: #fff5d4;
  padding: 12px 30px;
  border: none;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  transition: background 0.3s, transform 0.3s;
}
#hero .btn:hover {
  background: #756f69;
  transform: scale(1.1);
}
/* Ajustari pentru sectiunea Hero */
#hero {
  margin-top: 60px;
  box-shadow: none;
}
/* Sectiuni Generale */
section {
  padding: 80px 0;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.25);
}
section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #333;
}
.colored-section {
  background-color: #fff5d4;
}
#social,
#gallery {
  background-color: #ffffff;
}
.contact, .songs, .social {
  text-align: center;
  padding: 0 20px;
}
.about p {
  max-width: 800px;
  margin: auto;
  padding-top: 10px;
  font-size: 1.1rem;
  text-indent: 30px;
  display: flex;
}
.about ul {
  max-width: 800px;
  margin: auto;
  padding-left: 2rem;
  font-size: 1.1rem;
  padding-bottom: 30px;
}
.btnd{
  background: #e67e22;
  padding: 12px 30px;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  transition: background 0.3s, transform 0.3s;
  margin: 0 auto;
  display: block;
  width: auto;
  text-align: center;
}
.btnd:hover {
  background: #756f69;
  transform: scale(1.1);
}
/* Margini între sectiuni */
#about { margin-top: -30px; }
#social { margin: 50px 0; }
#songs { margin: 50px 0; }
#gallery { margin: 50px 0; }

/* Sectiunea Social Media */
.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.social-links a {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.social-links .fb {
  color: #316FF6;
}
.social-links .fb:hover {
  color: #1c3c82;
}
.social-links .yt {
  color: #FF0000;
}
.social-links .yt:hover {
  color: #b00000;
}
.social-links .tk {
  color: #000000;
}
.social-links .tk:hover {
  color: #03a8a3;
}

/* Sectiunea Melodii */
.song-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.song-wrapper iframe {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border: none;
}

/* Sectiunea Galerie - Carusel */
.carousel-container {
  position: relative;
  max-width: 800px;
  height: 500px; /* sau o valoare potrivită pentru designul tău */
  margin: auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
  flex-shrink: 0;
}

.prev, .next {
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Formular de Contact */
.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact p {
  padding-top: 20px;
  padding-bottom: 20px;
}
.contact input, .contact textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}
.contact button {
  background: #e67e22;
  padding: 12px;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  width: 100%;
  max-width: 600px;
  transition: background 0.3s, transform 0.3s;
}
.contact button:hover {
  background: #756f69;
  transform: scale(1.1);
}

/* Buton pentru scroll în sus */
.scroll-top {
  position: fixed;
  bottom: -50px; /* Start în afara ecranului */
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e67e22;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 24px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  z-index: 1000;
}
.scroll-top.visible {
  opacity: 1;
  bottom: 75px;
  transform: translateY(0);
}
.scroll-top:hover {
  background: #cf711f;
  transform: translateY(-3px) scale(1.05);
}

/* Footer */
footer {
  background: linear-gradient(180deg, #949494, #444);
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 1rem;
}
@media only screen and (max-width: 650px) {

  footer { 
     font-size: 2.4vw; 
  }
}
.social-footer a{
	padding-right: 5px;
	font-size: 20px;
}
.f-fb {
  color: #316FF6;
}
.f-yt {
  color: #FF0000;
}
.f-tk {
  color: #000000;
}

/* Responsive: Meniu mobil */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100%;
    background: #333;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.5s ease;
    z-index: 999;
  }
  nav ul.active {
    right: 0;
  }
  nav ul li {
    margin: 10px 0;
  }
  .menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
