/* =====================
   FONTURI SI RESET
===================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #1a1a1a;
  --accent: #ff8800;
  --text: #ffffff;
  --muted: #cccccc;
  --card: rgba(255,255,255,0.05);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

/* =====================
   HEADER
===================== */
header {
  text-align: center;
  background: linear-gradient(90deg, #ff0000, #ff8800);
  padding: 50px 20px;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  font-weight: 500;
}

/* =====================
   BUTON ÎNAPOI LA INDEX
===================== */
.back-btn-container {
  text-align: center;
  margin: 20px 0;
}

.back-btn {
  text-decoration: none;
  background: linear-gradient(45deg, #ff8800, #ff0000);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.back-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ff0000, #ff8800);
}

/* =====================
   ABOUT RALUCA
===================== */
.aboutRaluca {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  gap: 30px;
}

.profile-img {
  width: 300px;
  max-width: 80%;
  border-radius: 15px;
  border: 5px solid rgb(75,75,75);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.about-text {
  max-width: 800px;
  text-align: justify;
  background: var(--card);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid rgba(255,255,255,0.1);
  line-height: 1.6;
}

/* =====================
   GALERIE PROIECTE
===================== */
.projectsRaluca {
  padding: 50px 20px;
  text-align: center;
}

.projectsRaluca h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--accent);
}

.projects-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.project-card {
  width: 100%;
  max-width: 900px;
  background: var(--card);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.project-card video{
  width: 100%;
}
.project-card h3 {
  margin-bottom: 15px;
  color: var(--accent);
}

/* Video responsive */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 15px;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 0;
}

/* =====================
   DECORATIE
===================== */
.decoration img {
  position: fixed;
  left: 0;
  bottom: 0;
  max-width: 6vw;
  z-index: 1;
}

/* =====================
   FOOTER
===================== */
footer {
  text-align: center;
  padding: 30px 20px;
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  header h1 {
    font-size: 2.2rem;
  }
  header p {
    font-size: 1rem;
  }
  .profile-img {
    width: 250px;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }
  .profile-img {
    width: 200px;
  }
  .about-text {
    font-size: 0.9rem;
  }
  .project-card {
    padding: 15px;
  }
}
