/* RESET + FONT */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #fff0f5;
  color: #333;
  scroll-behavior: smooth;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe6f0, #fce4ec);
  text-align: center;
  padding: 100px 20px;
}
.hero-content h1 {
  font-size: 3.5rem;
  color: #e91e63;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.btn {
  background: #e91e63;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 40px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}
.btn:hover {
  background: #c2185b;
}

/* SECTIUNI GENERALE */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 30px;
}
.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 40px;
  color: #e91e63;
}

/* SERVICII */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.service-card img {
  width: 60px;
  margin-bottom: 20px;
}
.service-card h3 {
  margin-bottom: 15px;
  color: #e91e63;
}
.service-card p {
  margin-bottom: 15px;
}
.service-card a {
  color: #e91e63;
  font-weight: 600;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-10px);
}

/* PARALLAX SECTION */
.parallax-section {
  background-image: url('../images/hero-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
}
.parallax-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.parallax-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.btn-parallax {
  background: white;
  color: #e91e63;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.btn-parallax:hover {
  background: #fce4ec;
  color: #111;
}

/* FOOTER */
footer {
  background: #222;
  color: #fff;
  padding: 30px 10px;
  text-align: center;
  font-size: 14px;
}

/* FADE IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* MENIU FIX PE TOATĂ PAGINA */
.sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 30px;
  z-index: 999;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.sticky-navbar .logo {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
}
.sticky-navbar nav {
  float: right;
}
.sticky-navbar nav a {
  color: #fff;
  margin: 0 15px;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease;
}
.sticky-navbar nav a:hover {
  color: #e91e63;
  transform: scale(1.1);
}

/* Efecte la hover */
.sticky-navbar nav a i {
  margin-right: 8px;
  transition: 0.3s;
}
.sticky-navbar nav a:hover i {
  transform: rotate(45deg);
}

/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.spinner {
  border: 10px solid #f3f3f3;
  border-top: 10px solid #e91e63;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Animație la scroll */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Formularul de programare */
#programare-form {
  background: #fce4ec;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

#programare-form input,
#programare-form select,
#programare-form button {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  font-size: 1.1rem;
  border-radius: 10px;
  border: 1px solid #e91e63;
  box-sizing: border-box;
}

#programare-form input:focus,
#programare-form select:focus {
  border: 2px solid #e91e63;
  outline: none;
}

#programare-form button {
  background-color: #e91e63;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

#programare-form button:hover {
  background-color: #c2185b;
  transform: scale(1.05);
}

#programare-form h2 {
  color: #e91e63;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

#programare-form label {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

#programare-form input,
#programare-form select {
  background-color: #fff;
  border: 1px solid #ddd;
}

#programare-form input::placeholder {
  color: #aaa;
}

/* Efecte pe hover pe butoane */
#programare-form button:focus {
  outline: none;
  box-shadow: 0 0 5px #e91e63;
}
button {
  background-color: #e91e63;
  color: white;
  font-size: 18px;
  border: none;
  padding: 15px 30px;
  margin-top: 30px;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: inline-block;
}

button:hover {
  background-color: #c2185b;
}
/* Design pentru tabelul de programări */
.programari-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.programari-table th, .programari-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #ddd;
}

.programari-table th {
  background-color: #4CAF50;
  color: white;
}

.programari-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Stiluri butoane */
.btn {
  padding: 10px 15px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.validate-btn {
  background-color: #28a745;
  color: white;
}

.validate-btn:hover {
  background-color: #218838;
}

.delete-btn {
  background-color: #dc3545;
  color: white;
}

.delete-btn:hover {
  background-color: #c82333;
}

/* Alte stiluri */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.section-title {
  font-size: 24px;
  color: #333;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s;
}

.social-links a:hover {
  color: var(--gold);
  transform: translateY(-3px);
}
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #ffeef5;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.slider {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slide 15s infinite;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slide {
  0% { transform: translateX(0%); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0%); }
}

.hero-text {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding-top: 20vh;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: bold;
  color: #e91e63;
}

.hero-text span {
  color: #111;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}

.hero-text .btn {
  background-color: #e91e63;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.hero-text .btn:hover {
  background-color: #c2185b;
}
.hero-slider-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
  background: #fcdde9;
}

.fade-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fade-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.fade-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-text-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 15vh;
  color: #222;
}

.hero-text-overlay h1 {
  font-size: 42px;
  color: #e91e63;
  margin-bottom: 15px;
}

.hero-text-overlay span {
  color: #111;
}

.hero-text-overlay p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-text-overlay .btn {
  background-color: #e91e63;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.hero-text-overlay .btn:hover {
  background-color: #c2185b;
}
.contact-page {
  background: #fff0f5;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-info, .contact-form {
  flex: 1 1 400px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.contact-info h2 {
  margin-bottom: 20px;
  color: #e91e63;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

.contact-info a {
  color: #e91e63;
  text-decoration: none;
}

.contact-info i {
  margin-right: 10px;
  color: #e91e63;
}

.contact-map {
  margin-top: 20px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #333;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background: #fdfdfd;
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form .btn {
  background-color: #e91e63;
  color: white;
  padding: 12px 26px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.contact-form .btn:hover {
  background-color: #c2185b;
}
#map, .contact-map {
  height: 350px;
  width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 40px 10px rgba(0 ,0, 0, 0.1)
}
.btn-parallax {
  position: relative;
  overflow: hidden;
}
.btn-parallax::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255, 255, 255, 0.7);
}
.btn-parallax:active::after {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
/* Badge stilizat */
.badge-available {
  text-align: center;
  margin-top: 30px;
  font-size: 20px;
  background: #f8f8f8;
  padding: 10px 20px;
  border-radius: 30px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #e91e63;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Micro-interacțiuni */
.btn-parallax {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.btn-parallax::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  pointer-events: none;
  animation: ripple 0.6s ease-out;
  opacity: 0;
}

.btn-parallax:active::after {
  transform: translate(-50%, -50%) scale(4);
  opacity: 1;
}

@keyframes ripple {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* Fade slider fix */
.fade-slide {
  position: absolute;
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-slide.active {
  opacity: 1;
  z-index: 2;
}
.fade-slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
/* Fix meniul să fie întotdeauna vizibil deasupra sliderului */
.sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 30px;
  z-index: 9999 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.galerie-wrapper {
  padding: 60px 0;
  background: #fefefe;
}

.galerie-wrapper .subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
  font-size: 18px;
}

.galerie-categorie {
  margin-bottom: 50px;
}

.galerie-categorie h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #e91e63;
  display: flex;
  align-items: center;
  gap: 10px;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out;
}

.galerie-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.galerie-item:hover img {
  transform: scale(1.1);
  opacity: 0.9;
}
.galerie-modern {
  padding: 80px 0;
  background: #f8f9fa;
}

.galerie-modern .subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #777;
  font-size: 17px;
}

.categorie-titlu {
  font-size: 22px;
  font-weight: 600;
  color: #e91e63;
  margin: 50px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.galerie-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.galerie-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.galerie-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.galerie-card:hover img {
  transform: scale(1.08);
}

.galerie-card .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galerie-card:hover .overlay {
  opacity: 1;
}
/* RESPONSIVE: telefoane mici */
@media (max-width: 768px) {
  header.sticky-navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }

  nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  nav a {
    margin: 10px 0;
    font-size: 16px;
  }

  .container {
    padding: 15px;
  }

  .section-title {
    font-size: 24px;
    text-align: center;
  }

  .service-grid, .galerie-grid-modern {
    grid-template-columns: 1fr;
  }

  .btn, .btn-parallax {
    width: 100%;
    text-align: center;
  }

  .hero-text-overlay {
    text-align: center;
    padding: 40px 20px;
  }

  .serviciu-flex {
    flex-direction: column;
  }

  .serviciu-img img {
    width: 100%;
    height: auto;
  }
}
button, a {
  touch-action: manipulation;
}
nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

nav a:hover {
  color: #e91e63;
  transform: scale(1.05);
}
body {
  padding-top: 80px; /* înălțimea headerului fix pe mobil */
}
/* AICI /
.hero-slider-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #fcdde9;
}

.fade-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fade-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.fade-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  padding: 20px;
  width: 100%;
  max-width: 90%;
}

.hero-text-overlay h1 {
  font-size: 2.5rem;
  color: #e91e63;
  margin-bottom: 10px;
}

.hero-text-overlay span {
  color: #111;
}

.hero-text-overlay p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
}

.hero-text-overlay .btn {
  background-color: #e91e63;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}
