/* Resetare de bază */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
  }
  
  /* Stilizare pentru header */
  header {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  header h2 {
    font-size: 1.2rem;
    font-weight: 400;
  }
  
  /* Sectiunea Hero */
  .hero {
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .hero .call-btn {
    display: inline-block;
    background-color: #f00;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 25px;
    margin-top: 15px;
    transition: background-color 0.3s;
  }
  
  .hero .call-btn:hover {
    background-color: #c00;
  }
  
  .hero .promo-code {
    margin: 10px 0;
    font-weight: bold;
  }
  
  .hero .phone-number {
    font-size: 1.4rem;
    font-weight: bold;
  }
  
  /* Sectiunea Servicii */
  .services {
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .services h2 {
    font-size: 2rem;
    color: #f00;
    margin-bottom: 20px;
  }
  
  .services ul {
    list-style: none;
    padding: 0;
  }
  
  .services li {
    font-size: 1.1rem;
    margin: 10px 0;
  }
  
  /* Galeria */
  .gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px; /* Distanță uniformă între imagini */
    margin: 30px auto;
    max-width: 800px;
    position: relative;
  }
  
  .gallery-item {
    position: relative;
    z-index: 1;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto; /* Asigură proporții corecte pentru toate imaginile */
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  /* Imaginea de top */
  .gallery-item.highlight {
    grid-column: span 3; /* Imaginea principală să ocupe toată lățimea */
    margin-bottom: 20px; /* Adaugă spațiu între imaginea principală și celelalte */
    z-index: 2;
  }
  
  .gallery-item.highlight img {
    border: 3px solid #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  }
  /* Google Maps */
  .maps {
    margin: 30px auto;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 800px; /* Limităm lățimea la 800px */
  }
  
  .maps h2 {
    font-size: 1.5em;
    color: #f00;
    margin-bottom: 15px;
  }
  
  .maps iframe {
    border-radius: 8px;
    width: 100%; /* Iframe-ul va ocupa întreaga lățime a containerului */
    height: 300px; /* Ajustăm înălțimea pentru o proporție bună */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  
  /* Secțiunea Recenzii */
  .reviews {
    margin: 30px auto;
    padding: 20px;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .reviews h2, .reviews h3 {
    color: #f00;
    text-align: center;
  }
  
  #review-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }
  
  #review-list li {
    margin-bottom: 15px;
    background: black;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #review-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  #review-form input, #review-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  
  #review-form button {
    padding: 10px;
    background-color: #f00;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  #review-form button:hover {
    background-color: #c00;
  }
  