/* RESET GENERAL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  background: linear-gradient(180deg, #fffef6 0%, #fff8e1 100%);
  color: #263238;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.site-header {
  text-align: center;
  padding: 50px 20px 30px;
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border-bottom: 2px solid #ffd54f;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-title {
  color: #f57f17; /* auriu intens */
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1px;
}

.site-sub {
  color: #f9a825; /* galben mai deschis */
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
}

.site-slogan {
  color: #f57f17;
  font-weight: 700;
  font-size: 1.3rem;
  background: linear-gradient(to right, #fff9e6, #fff3cd);
  padding: 12px 28px;
  border-radius: 12px;
  display: inline-block;
  margin-top: 20px;
  border-left: 4px solid #fbc02d;
  border-right: 4px solid #fbc02d;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  animation: pulseGold 4s ease-in-out infinite;
}

@keyframes pulseGold {
  0% { opacity: 0.9; }
  50% { opacity: 1; }
  100% { opacity: 0.9; }
}

.top-nav {
  margin-top: 20px;
  font-weight: 600;
}

.top-nav a {
  color: #795548; /* maro cald */
  text-decoration: none;
  margin: 0 10px;
}

.top-nav a:hover {
  color: #f57f17;
}

/* ===== CONȚINUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 25px;
}

.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  border-left: 5px solid #ffd54f;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
}

h2 {
  color: #f57f17;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  color: #263238;
}

a {
  color: #fbc02d;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: #f57f17;
  text-decoration: underline;
}

.services-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.services-list li {
  background: #fff8e1;
  color: #5d4037;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #ffe082;
  transition: all 0.25s ease;
}

.services-list li:hover {
  background: #ffecb3;
  transform: scale(1.03);
}

/* ===== GALERIE ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.gallery figcaption {
  text-align: center;
  font-size: 14px;
  margin-top: 8px;
  color: #5d4037;
}

/* ===== VIDEO ===== */
.video-frame {
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 15px;
  background: linear-gradient(135deg, #fffde7 0%, #fff8e1 100%);
  color: #5d4037;
  margin-top: 50px;
  border-top: 2px solid #ffe082;
}

.site-footer a {
  color: #f57f17;
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  color: #ffb300;
}

.location {
  margin-top: 8px;
  color: #f57f17;
  font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-title { font-size: 26px; }
  .site-sub { font-size: 14px; }
  .site-slogan { font-size: 1rem; padding: 8px 15px; }
  .container { padding: 15px; }
  .services-list { flex-direction: column; align-items: center; }
  .services-list li { width: 100%; text-align: center; }
  h2 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .site-title { font-size: 22px; }
  .card { padding: 18px; }
  .site-footer { font-size: 13px; }
}