﻿/* === GLOBAL === */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  background-color: #fff;
  color: #333;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  min-height: 100vh;
  padding: 120px 20px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(16px, 2.5vw, 20px);
}

.cta-button {
  background-color: #1abc9c;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

/* === LOGO + LANGUAGE SWITCH === */
.top-bar {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 10;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.logo-left img {
  max-width: 160px;
}

.language-switch {
  font-weight: bold;
  color: white;
  font-size: 14px;
  white-space: nowrap;
  margin-left: auto;
}

.language-switch a {
  color: white;
  text-decoration: none;
  margin-left: 10px;
}

/* === FADE IN HERO === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.4s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}


/* === NAVIGATION === */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  background-color: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.main-nav a {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}

/* === SECTIONS === */
section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.event-list {
  list-style: none;
  padding: 0;
  font-size: 18px;
  margin-top: 20px;
  text-align: left;
}

.event-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* === CONTACT === */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background-color: #1abc9c;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}


/* === WHATSAPP === */
.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
}
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 12px 14px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  text-decoration: none;
}


/* === RECENZII === */
#recenzii {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.recenzii-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.recenzie {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  max-width: 300px;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
}

.recenzie strong {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #1abc9c;
}

.stele {
  margin-top: 5px;
  color: gold;
  font-size: 18px;
}

/* === FOOTER === */
footer {
  text-align: center;
  padding: 20px;
  background-color: #f6f6f6;
  font-size: 14px;
  color: #555;
}

/* === SLIDER GALERIE === */
#galerie {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.galerie-slider {
  max-width: 1000px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slide-track {
  display: flex;
  animation: galerieSlider 15s infinite ease-in-out;
}

.slide-track img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
}

/* === SLIDER ANIMATION === */
@keyframes galerieSlider {
  0%, 10% { transform: translateX(0); }
  25%, 35% { transform: translateX(-100%); }
  50%, 60% { transform: translateX(-200%); }
  75%, 100% { transform: translateX(0); }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .cta-button {
    font-size: 16px;
    padding: 10px 20px;
  }

  .language-switch {
    align-self: flex-end;
    font-size: 13px;
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .slider img,
  .slide-track img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 180px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .slide-track img {
    height: 180px;
  }
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-info {
  flex: 1;
  min-width: 280px;
  font-size: 18px;
}

.contact-info a {
  color: #1abc9c;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

form {
  flex: 1;
  min-width: 280px;
  background-color: #f8f8f8;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form button {
  background-color: #1abc9c;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

form button:hover {
  background-color: #159d82;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}
.about-section {
  padding: 60px 20px;
  background-color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  text-align: left;
}

.about-text h2 {
  font-size: 28px;
  color: #1abc9c;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Evenimente */
.events-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.events-section h2 {
  font-size: 26px;
  color: #1abc9c;
  margin-bottom: 30px;
}

.events-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  font-size: 18px;
  line-height: 2;
}

.events-cta {
  margin-top: 30px;
  font-weight: bold;
  color: #333;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text p {
    font-size: 16px;
  }

  .events-section h2 {
    font-size: 24px;
  }

  .events-list {
    font-size: 16px;
  }
}
.servicii-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.serviciu {
  background-color: #f9f9f9;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.serviciu:hover {
  transform: translateY(-5px);
}

.serviciu img {
  width: 60px;
  margin-bottom: 15px;
}

.serviciu h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1abc9c;
}

.serviciu p {
  font-size: 15px;
  color: #444;
}


\
