
/* ===================== */
/* Structură pagină verticală */
/* ===================== */

/* Banner principal */
.banner {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.banner img {
    width: 100%;
    border-radius: 10px;
}

.banner-text {
    position: relative; /* nu absolute */
    margin-top: -50px; /* dacă vrei să fie peste imagine */
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 15px 25px;
    border-radius: 6px;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
}
 
  /* Titlu pagină sub banner */
.page-title {
    text-align: center;       /* centrează textul */
    font-size: 3em;           /* mărime titlu */
    font-weight: bold;
    margin: 10px 0;           /* spațiu sus și jos */
    color: rgb(15, 112, 183); /* culoare principală */
}
  
.category h1 {
    margin-bottom: 20px;
    text-align: center;
  	font-weight: bold;
    color: rgb(243, 146, 0); /* culoare principală */
}

  .category {
    width: 100%;
    margin-bottom: 50px;
    padding: 0 15px;
  	font-weight: bold;
    color: rgb(243, 146, 0); /* culoare principală */
}

.category h2 {
    margin-bottom: 20px;
    text-align: center;
  	font-weight: bold;
    color: rgb(243, 146, 0); /* culoare principală */
}

/* Grid servicii */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    color: #000;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card span {
    font-weight: bold;
    padding: 15px 10px;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Butoane și call-to-action */
.cta a,
.reservation-form button {
    background: rgb(15, 112, 183);
}

.cta a:hover,
.reservation-form button:hover {
    background: rgb(10, 85, 140); /* nuanță mai închisă la hover */
}

/* FAQ */
.faq {
    max-width: 900px;
    margin: 0 auto 50px auto;
    padding: 0 15px;
}

.faq h2 {
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.faq-item summary {
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    display: block;
    background: #f0f0f0;
    border-radius: 6px;
}

.faq-item details[open] summary {
    background: #d9f0ff;
}

.faq-item p {
    padding: 10px;
    margin: 0;
}

/* Banner rezervare */
.reservation-banner {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.reservation-banner img {
    width: 100%;
    border-radius: 10px;
}

.reservation-text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 15px 25px;
    border-radius: 6px;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
}

/* Formular rezervare */
/* Hero centralizat */
.hero-central {
  position: relative;
  width: 100%;
  height: 600px; /* Înălțime totală hero */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-central img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%); /* întunecă imaginea pentru a evidenția formularul */
  position: absolute;
  top: 0;
  left: 0;
}

.reservation-form-central {
  position: relative;
  background-color: rgba(255,255,255,0.95);
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  width: 400px;
  max-width: 90%;
  z-index: 10;
  text-align: center;
}

.reservation-form-central h2 {
  color: rgb(15,112,183);
  margin-bottom: 10px;
  font-size: 1.6em;
}

.reservation-form-central p {
  font-size: 1em;
  margin-bottom: 15px;
  color: #333;
}

.reservation-form-central input,
.reservation-form-central select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
}

.reservation-form-central button {
  width: 100%;
  padding: 14px;
  background-color: rgb(243,146,0);
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.reservation-form-central button:hover {
  background-color: rgb(220,130,0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-central {
    height: auto;
    padding: 50px 0;
  }
  .reservation-form-central {
    width: 90%;
  }
}

