/* Reset stiluri implicite */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Header */
  .header {
    background-color: #000000;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ff3131;
  }

  /* Secțiunea Contact */
.contact-section {
    background-color: #ff3131; /* Fundal negru */
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .contact-section h2 {
    font-size: 2.5rem;
    color: #fff; /* Titlu alb */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .contact-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc; /* Textul descriptiv deschis la culoare */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Informatii de contact */
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Detalii contact */
  .contact-item {
    font-size: 1.2rem;
    color: #fff;
    margin: 10px 0;
  }
  
  /* Subtitluri pentru contact */
  .contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff; /* Subtitluri albe */
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Linkuri de contact */
  .contact-item a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 1.2rem;
  }
  
  .contact-item a:hover {
    color: #ff3131; /* Roșu la hover pentru linkuri */
    text-decoration: underline;
  }
  
  /* Secțiunea Instagram */
.instagram-section {
    background-color: #ffffff; /* Fundal negru */
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
  }
  
  .instagram-section h3 {
    font-size: 2rem;
    color: #ff3131; /* Roșu pentru titlu */
    margin-bottom: 20px;
  }
  
  .instagram-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #000000;
  }
  
  .instagram-feed {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .instagram-feed iframe {
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  
  .instagram-feed iframe:hover {
    transform: scale(1.05); /* Efect de zoom la hover */
  }
  


  
  
  /* Contact Section */
  .contact-section {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
  }
  
  /* Footer */
  .footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
  }