.our-story-section {
  padding: 80px 20px;
  background-color: #0d0d0d;
  color: #fff;
}

.story-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.story-left {
  flex: 1;
  text-align: left;
}

.story-image {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.story-right {
  flex: 1;
  padding-left: 20px;
}

.story-title {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.story-description {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.8;
}

.story-btn {
  display: inline-block;
  background-color: #ffcc00;
  color: #000;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.story-btn:hover {
  background-color: #e6b800;
}

@media (max-width: 768px) {
  .story-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .story-left {
    margin-bottom: 20px;
  }

  .story-right {
    padding-left: 0;
  }

  .story-image {
    max-width: 100%;
  }
}



.about-casino-section {
  padding: 80px 20px;
  background-color: #0d0d0d;
  color: #fff;
  text-align: center;
}

.about-casino-title {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.about-casino-description {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-casino-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-casino-list li {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.about-casino-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-weight: bold;
}
.casino-facts-section {
  padding: 80px 20px;
  background-color: #1c1c1c;
  color: #fff;
}

.casino-facts-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.casino-facts-left {
  flex: 1;
  padding-right: 20px;
}

.facts-title {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 20px;
}

.facts-list {
  list-style: none;
  padding: 0;
}

.facts-list li {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.facts-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffcc00;
  font-size: 1.2rem;
}

.casino-facts-right {
  flex: 1;
  text-align: center;
}

.facts-image {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .casino-facts-content {
    flex-direction: column;
    text-align: center;
  }

  .casino-facts-left {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .facts-image {
    max-width: 100%;
  }
}



.booking-section {
  padding: 60px 20px;
  background-color: #0d0d0d;
  color: #fff;
}

.booking-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #ffcc00;
  margin-bottom: 20px;
}

.booking-description {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ccc;
}

.booking-calculator {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.calendar-section {
  flex: 1;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffcc00;
}

#calendar {
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calendar-nav {
  cursor: pointer;
  color: #ffcc00;
  font-size: 1.5rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-grid div {
  width: 40px;
  height: 40px;
  background-color: #444;
  color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.calendar-grid div.booked {
  background-color: #ff3333;
  text-decoration: line-through;
  color: #fff;
  cursor: not-allowed;
}

.calendar-grid div.selected {
  background-color: #ffcc00;
  color: #000;
}

.calendar-grid div:hover:not(.booked):not(.selected) {
  background-color: #ffcc00;
  color: #000;
  transform: scale(1.1);
}

.details-section {
  flex: 1;
}

.booking-form {
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 1rem;
  color: #ffcc00;
  display: block;
  margin-bottom: 10px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #2d2d2d;
  color: #fff;
  font-size: 1rem;
}

.guests-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.control-btn {
  background-color: #ffcc00;
  color: #000;
  border: none;
  padding: 5px 15px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.control-btn:hover {
  background-color: #e6b800;
}

.booking-btn {
  width: 100%;
  padding: 12px;
  background-color: #ffcc00;
  color: #000;
  font-size: 1rem;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.booking-btn:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.visible {
  display: flex;
}

.modal-content {
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 1.2rem;
  color: #ddd;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #ffcc00;
  font-size: 1.5rem;
}

.modal-close-btn {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #ffcc00;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-close-btn:hover {
  background-color: #e6b800;
}
.calendar-grid div {
  width: 40px;
  height: 40px;
  background-color: #444;
  color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer; /* Добавляет указатель-курсор при наведении */
}

.calendar-grid div.booked {
  background-color: #ff3333;
  text-decoration: line-through;
  color: #fff;
  cursor: not-allowed; /* Для забронированных дат курсор не активен */
}

.calendar-grid div:hover:not(.booked) {
  background-color: #ffcc00;
  color: #000;
  transform: scale(1.1);
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Header Styles */
  .page-header {
    padding: 40px 20px;
  }

  .header-title {
    font-size: 2rem;
  }

  .header-description {
    font-size: 0.9rem;
  }

  /* How It Works Section */
  .steps {
    flex-direction: column;
    gap: 20px;
  }

  .step {
    padding: 15px;
  }

  .step h3 {
    font-size: 1.3rem;
  }

  /* Booking Section */
  .booking-section {
    padding: 40px 20px;
  }

  .calendar-section,
  .details-section {
    flex: 1 1 100%;
  }

  .booking-calculator {
    flex-direction: column;
    gap: 20px;
  }

  .details-section {
    margin-top: 20px;
  }

  /* FAQ Section */
  .faq-section {
    padding: 40px 20px;
  }

  /* Offers Section */
  .offers {
    flex-direction: column;
  }

  .offer {
    margin-bottom: 20px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  /* Header Styles */
  .header-title {
    font-size: 1.8rem;
  }

  .header-description {
    font-size: 0.85rem;
  }

  /* How It Works Section */
  .section-title {
    font-size: 1.5rem;
  }

  .step h3 {
    font-size: 1.2rem;
  }

  /* Booking Section */
  .calendar-header span {
    font-size: 1rem;
  }

  .calendar-grid div {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select {
    font-size: 0.9rem;
    padding: 8px;
  }

  .control-btn {
    font-size: 0.9rem;
    padding: 5px 10px;
  }

  .booking-btn {
    font-size: 0.9rem;
    padding: 10px;
  }

  /* Offers Section */
  .offer i {
    font-size: 2rem;
  }

  .offer h3 {
    font-size: 1.3rem;
  }

  .offer p {
    font-size: 0.9rem;
  }
}



.why-choose-us-section {
  padding: 60px 20px;
  background-color: #0d0d0d;
  color: #fff;
}

.why-choose-us-section .section-title {
  text-align: center;
  color: #ffcc00;
  margin-bottom: 40px;
}

.benefits {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.benefit {
  background-color: #1c1c1c;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}

.benefit i {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 15px;
}

.benefit h3 {
  color: #ffcc00;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.benefit p {
  color: #ccc;
  font-size: 1rem;
}
