
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f0f4f8;
  color: #333;
}


.container {
  max-width: 800px; 
  margin: 0 auto; 
  padding: 20px; 
}

.header {
  position: block;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: #1976D2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  font-weight: 600;
}

#menu-icon {
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

.navbar {
  margin-top: 68px;
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: none;
  flex-direction: column;
  box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.meniu-li {
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 1px;
  margin: 10px 0; 
}

.navbar.active {
  display: flex;
}

.navbar a {
  color: #000;
  padding: 15px 20px;
  text-decoration: none;
  transition: background 0.3s;
}

.navbar a:hover {
  background: #f0f0f0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 30px;
  color: black;
  cursor: pointer;
  align-self: flex-end;
  margin: 10px;
}

.content {
  padding: 80px 20px; 
}

@media (max-width: 768px) {
  .header {
      padding: 10px;
  }

  #menu-icon {
      display: block;
  }

  .navbar {
      width: 60%; 
  }
}

.titlu-navigatie{
    text-align: center;
    color: #1976D2;
}

.home {
    position: relative;
    width: 100%;
    height: 60vh; 
    background-image: url('ff954b10-12d1-4eb1-b8bb-0ac4eb8da620.jpg');
    background-size: cover; 
    background-position: center; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    color: white; 
}

.slider-container {
  max-width: 800px; 
  margin: 0 auto;
}

.slogan-container {
  background-color: rgba(255, 255, 255, 0.8); 
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 
}


.slogan h1 {
  font-size: 3em; 
  margin-bottom: 15px;
  color: #1976D2; 
}

.slogan p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #555;
}

.cta-button {
  margin-bottom: 10px;
  display: inline-block;
  background-color: #1976D2; 
  color: white;
  padding: 8px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.cta-button:hover {
  background-color: #1565C0; 
}


@media (max-width: 768px) {
  .slider-container {
     max-width: 90%; 
  }
  .slogan h1 {
      font-size: 2.5em;
  }
  .slogan p {
      font-size: 1.1em;
  }
  .cta-button {
      font-size: 1em;
  }
  .home {
      padding: 60px 20px;
  }
}

.cta {
  margin-top: 15px;
  padding: 10px 20px;
  background: #64B5F6;
  color: #333;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta:hover {
  background: #FFD600;
}


h2 {
  text-align: center;
  font-size: 2.5em;
  color: #1976D2;
  margin: 20px 0;
}

.about, .schedule, .pricing, .reservations {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 40px 0px;
  padding: 20px;
}


.gallery {
  display: flex; 
  flex-wrap: wrap; 
  justify-content: space-between; 
  margin-top: 20px; 
}

.gallery img {
  width: calc(50% - 10px); 
  margin: 5px; 
  max-width: 100%;
  height: auto; 
  object-fit: cover; 
}


@media (max-width: 480px) {
  .gallery img {
      width: calc(50% - 10px); 
  }
}
.schedule-table {
  margin: 20px 0;
}

.schedule-table table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th, .schedule-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.schedule-table th {
  background: #f7f7f7;
}

.note {
  text-align: center;
  font-weight: bold;
}

.additional-info {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
}


.pricing-info {
  text-align: center;
}

.price {
  background: #64B5F6;
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  margin: 20px auto;
}

.price h2 {
  font-size: 3em;
  margin-bottom: 10px;
}

.price p {
  font-size: 1.2em;
}


label {
  margin: 10px 0 5px;
}

input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#success-message {
  margin-top: 10px;
  font-weight: bold;
  display: none;
}

.site-footer {
  background-color: #1976D2; 
  color: #fff;
  padding: 40px 20px;
  font-size: 0.9em; 
}

.footer-content {
  display: flex;
  flex-wrap: wrap; 
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-around; 
  align-items: flex-start; 
  margin-bottom: 20px;
}

.footer-left,
.footer-center,
.footer-right {
  
  margin-bottom: 0px;
}

.footer-logo {
  width: 150px; 
  margin-bottom: 15px;
  display: block; 
}

.footer-description {
  margin-bottom: 20px;
  line-height: 1.5;
}

.social-links a {
  color: #ffffff;
  font-size: 1.3em; 
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #000000;
}

.footer-center h4,
.footer-right h4 {
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: bold;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #000000; 
}

.footer-right p {
  margin-bottom: 8px;
}

.footer-right a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #000000; 
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ffffff;
}

.footer-bottom p {
  margin-bottom: 5px;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #000000; 
}


@media (max-width: 768px) {
  .footer-content {
      flex-direction: column; 
      align-items: center; 
  }

  .footer-left,
  .footer-center,
  .footer-right {
      text-align: center;  
  }
  .social-links {
      justify-content: center;
  }
}


@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      text-align: center; 
  }
  .footer-section {
      margin-bottom: 30px;
  }
  .social-links {
      justify-content: center; 
  }
}


@media (max-width: 768px) {
  .slogan {
      font-size: 1.5em;
  }

  h2 {
      font-size: 2em;
  }
}

.responsive {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}


.schedule-table {
  margin: 20px 0;
  border-collapse: collapse;
  width: 100%;
}

.schedule-table table {
  width: 100%;
  border: 1px solid #007bff; 
}

.schedule-table th,
.schedule-table td {
  padding: 10px;
  text-align: center;
}

.schedule-table th {
  background-color: #007bff; 
  color: white;
}

.schedule-table tr:nth-child(even) {
  background-color: #f2f2f2; 
}

.schedule-table tr:hover {
  background-color: #d1e7fd; 
}


.price {
  background-color: transparent; 
  border: 2px solid #007bff; 
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}

.price h2 {
  font-size: 36px;
  color: #007bff; 
}

.features {
  list-style-type: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: #333;
}

.features li {
  margin-bottom: 10px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.column {
  flex-basis: 48%; 
  padding: 20px;
  box-sizing: border-box; 
}
@media (max-width: 768px) {
  .column {
      flex-basis: 100%;
  }
}
.pricing-table {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap; 
  padding: 20px;
}

.pricing-column {
  flex: 1; 
  padding: 20px;
  border: 1px solid #ddd;
  text-align: center;
  margin: 10px;
  border-radius: 8px;
}


.blue-column {
  background-color: #e6f2ff; 
}


.pricing-column h3 {
  margin-bottom: 10px;
  font-size: 1.5em;
}

.pricing-column p {
  margin-bottom: 15px;
  font-size: 1em;
}

.pricing-column ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-column li {
  padding: 8px 0;
}

.pricing-column .price {
  font-size: 1.8em;
  font-weight: bold;
  color: #007bff; 
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #0056b3;
}



@media (max-width: 768px) {
  .pricing-row {
      flex-direction: column; 
  }
  .pricing-column {
      margin: 10px 0;
  }
}

.preturi-pachete{
  color: #ffffff;
}


.informative-section {
  background-color: #f4f4f4;
  padding: 40px 20px; 
  text-align: center;
}

.informative-container {
  display: flex;
  flex-wrap: wrap; 
  max-width: 1000px;
  margin: 0 auto; 
  justify-content: center; 
}

.informative-item {
  background-color: #fff; 
  border-radius: 8px; 
  padding: 30px 20px;
  margin: 15px;
  width: 280px; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; 
}

.informative-item:hover {
  transform: translateY(-5px); 
}

.informative-icon {
  font-size: 3em; 
  color: #1976D2;
  margin-bottom: 15px;
}

.informative-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.informative-description {
  font-size: 1em;
  line-height: 1.5;
  color: #555;
}


@media (max-width: 768px) {
  .informative-item {
      width: calc(100% - 30px);
      margin: 15px 15px;
  }
}


.two-box-section {
  background-color: #f9f9f9; 
  padding: 60px 20px; 
}

.two-box-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto; 
  justify-content: center;
}

.two-box-item {
  background-color: #fff; 
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); 
  padding: 40px;
  margin: 20px;
  width: 460px; 
  transition: transform 0.3s ease; 
  text-align: left; 
}

.two-box-item:hover {
  transform: translateY(-5px);
}

.two-box-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #1976D2;
  margin-bottom: 15px;
}

.two-box-text {
  font-size: 1.05em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.two-box-link {
  display: inline-block; 
  background-color: #3498db; 
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.two-box-link:hover {
  background-color: #2980b9; 
}



@media (max-width: 992px) {
  .two-box-item {
      width: calc(100% - 40px); 
  }
}