* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container, .contact .contact-container, .site-footer .footer-container, .about .about-container, .hero .hero-content, .site-header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

button {
  font-family: "Poppins", sans-serif;
  background: #b50024;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: #82001a;
}

.site-header {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.site-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .header-container .logo img {
  max-height: 50px;
}
.site-header .header-container .main-nav {
  display: flex;
  gap: 1.5rem;
}
.site-header .header-container .main-nav a {
  font-weight: 600;
  color: #000;
  transition: color 0.3s;
}
.site-header .header-container .main-nav a:hover {
  color: #b50024;
}

.hero {
  background: linear-gradient(120deg, #f9f9f6 0%, #ffffff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.hero .hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero .hero-content .hero-text {
  flex: 1 1 500px;
  animation: fadeInLeft 1s ease forwards;
}
.hero .hero-content .hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero .hero-content .hero-text p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2rem;
}
.hero .hero-content .hero-text .reservation-form {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  max-width: 420px;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}
.hero .hero-content .hero-text .reservation-form:hover {
  transform: translateY(-4px);
}
.hero .hero-content .hero-text .reservation-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #222;
}
.hero .hero-content .hero-text .reservation-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.hero .hero-content .hero-text .reservation-form .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #444;
}
.hero .hero-content .hero-text .reservation-form .form-group input,
.hero .hero-content .hero-text .reservation-form .form-group select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s;
}
.hero .hero-content .hero-text .reservation-form .form-group input:focus,
.hero .hero-content .hero-text .reservation-form .form-group select:focus {
  border-color: #0072ce;
  outline: none;
}
.hero .hero-content .hero-text .reservation-form button {
  width: 100%;
  background: #0072ce;
  color: #fff;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.hero .hero-content .hero-text .reservation-form button:hover {
  background: #00569b;
}
.hero .hero-content .hero-image {
  flex: 1 1 500px;
  text-align: center;
  animation: fadeInRight 1s ease forwards;
}
.hero .hero-content .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.about {
  padding: 5rem 0;
  background: #f9f9f9;
}
.about .about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.about .about-container .about-text {
  flex: 1 1 500px;
  animation: fadeInUp 0.8s ease-in-out;
}
.about .about-container .about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b50024;
  margin-bottom: 1rem;
}
.about .about-container .about-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.about .about-container .about-image {
  flex: 1 1 500px;
  text-align: center;
}
.about .about-container .about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.8s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.entertainment {
  padding: 5rem 0;
  background: #fff;
}
.entertainment h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #b50024;
  margin-bottom: 1rem;
}
.entertainment .entertainment-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}
.entertainment .entertainment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.entertainment .entertainment-grid .entertainment-item {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.entertainment .entertainment-grid .entertainment-item:hover {
  transform: translateY(-6px);
}
.entertainment .entertainment-grid .entertainment-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.entertainment .entertainment-grid .entertainment-item h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.entertainment .entertainment-grid .entertainment-item p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.2rem;
}
.entertainment .entertainment-grid .entertainment-item .btn {
  display: inline-block;
  background: #0072ce;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s;
}
.entertainment .entertainment-grid .entertainment-item .btn:hover {
  background: #00569b;
}

.reviews {
  padding: 5rem 0;
  background-color: #f9f9f9;
}
.reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #b50024;
  font-weight: 700;
  margin-bottom: 3rem;
}
.reviews .review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.reviews .review-grid .review-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s;
}
.reviews .review-grid .review-card:hover {
  transform: translateY(-5px);
}
.reviews .review-grid .review-card .review-stars {
  color: #f4c542;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.reviews .review-grid .review-card .review-stars i {
  margin: 0 2px;
}
.reviews .review-grid .review-card .review-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.reviews .review-grid .review-card .review-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

.site-footer {
  background: #111;
  color: #fff;
  padding: 3rem 0;
  font-size: 0.95rem;
}
.site-footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.site-footer .footer-container .footer-links,
.site-footer .footer-container .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.site-footer .footer-container .footer-links a,
.site-footer .footer-container .footer-legal a {
  color: #ccc;
  transition: color 0.3s;
}
.site-footer .footer-container .footer-links a:hover,
.site-footer .footer-container .footer-legal a:hover {
  color: #b50024;
}
.site-footer .footer-container .footer-copy {
  color: #777;
  font-size: 0.9rem;
}

.contact {
  padding: 5rem 0;
  background: #fff;
}
.contact .contact-container {
  max-width: 700px;
  text-align: center;
}
.contact .contact-container h2 {
  font-size: 2.5rem;
  color: #b50024;
  margin-bottom: 1rem;
}
.contact .contact-container p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.contact .contact-container .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact .contact-container .contact-form .form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.contact .contact-container .contact-form .form-group label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}
.contact .contact-container .contact-form .form-group input,
.contact .contact-container .contact-form .form-group textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s;
}
.contact .contact-container .contact-form .form-group input:focus,
.contact .contact-container .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #b50024;
}
.contact .contact-container .contact-form button {
  align-self: center;
  background: #b50024;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.contact .contact-container .contact-form button:hover {
  background: #82001a;
}
.contact .contact-container .thank-you-popup {
  display: none;
  margin-top: 2rem;
  background: #e6ffe6;
  color: #2c662d;
  padding: 1rem 2rem;
  border: 1px solid #b6e8b6;
  border-radius: 6px;
  font-weight: 600;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.privacy-policy {
  padding: 5rem 0;
  background: #fff;
}
.privacy-policy .container, .privacy-policy .site-header .header-container, .site-header .privacy-policy .header-container, .privacy-policy .hero .hero-content, .hero .privacy-policy .hero-content, .privacy-policy .about .about-container, .about .privacy-policy .about-container, .privacy-policy .site-footer .footer-container, .site-footer .privacy-policy .footer-container, .privacy-policy .contact .contact-container, .contact .privacy-policy .contact-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: #333;
}
.privacy-policy .container h1, .privacy-policy .site-header .header-container h1, .site-header .privacy-policy .header-container h1, .privacy-policy .hero .hero-content h1, .hero .privacy-policy .hero-content h1, .privacy-policy .about .about-container h1, .about .privacy-policy .about-container h1, .privacy-policy .site-footer .footer-container h1, .site-footer .privacy-policy .footer-container h1, .privacy-policy .contact .contact-container h1, .contact .privacy-policy .contact-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #b50024;
  text-align: center;
}
.privacy-policy .container h2, .privacy-policy .site-header .header-container h2, .site-header .privacy-policy .header-container h2, .privacy-policy .hero .hero-content h2, .hero .privacy-policy .hero-content h2, .privacy-policy .about .about-container h2, .about .privacy-policy .about-container h2, .privacy-policy .site-footer .footer-container h2, .site-footer .privacy-policy .footer-container h2, .privacy-policy .contact .contact-container h2, .contact .privacy-policy .contact-container h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #222;
}
.privacy-policy .container p, .privacy-policy .site-header .header-container p, .site-header .privacy-policy .header-container p, .privacy-policy .hero .hero-content p, .hero .privacy-policy .hero-content p, .privacy-policy .about .about-container p, .about .privacy-policy .about-container p, .privacy-policy .site-footer .footer-container p, .site-footer .privacy-policy .footer-container p, .privacy-policy .contact .contact-container p, .contact .privacy-policy .contact-container p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.privacy-policy .container ul, .privacy-policy .site-header .header-container ul, .site-header .privacy-policy .header-container ul, .privacy-policy .hero .hero-content ul, .hero .privacy-policy .hero-content ul, .privacy-policy .about .about-container ul, .about .privacy-policy .about-container ul, .privacy-policy .site-footer .footer-container ul, .site-footer .privacy-policy .footer-container ul, .privacy-policy .contact .contact-container ul, .contact .privacy-policy .contact-container ul {
  margin-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1.5rem;
}
.privacy-policy .container ul li, .privacy-policy .site-header .header-container ul li, .site-header .privacy-policy .header-container ul li, .privacy-policy .hero .hero-content ul li, .hero .privacy-policy .hero-content ul li, .privacy-policy .about .about-container ul li, .about .privacy-policy .about-container ul li, .privacy-policy .site-footer .footer-container ul li, .site-footer .privacy-policy .footer-container ul li, .privacy-policy .contact .contact-container ul li, .contact .privacy-policy .contact-container ul li {
  margin-bottom: 0.5rem;
}

.terms-section {
  padding: 5rem 0;
  background: #fff;
}
.terms-section .container, .terms-section .site-header .header-container, .site-header .terms-section .header-container, .terms-section .hero .hero-content, .hero .terms-section .hero-content, .terms-section .about .about-container, .about .terms-section .about-container, .terms-section .site-footer .footer-container, .site-footer .terms-section .footer-container, .terms-section .contact .contact-container, .contact .terms-section .contact-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: #333;
}
.terms-section .container h1, .terms-section .site-header .header-container h1, .site-header .terms-section .header-container h1, .terms-section .hero .hero-content h1, .hero .terms-section .hero-content h1, .terms-section .about .about-container h1, .about .terms-section .about-container h1, .terms-section .site-footer .footer-container h1, .site-footer .terms-section .footer-container h1, .terms-section .contact .contact-container h1, .contact .terms-section .contact-container h1 {
  font-size: 2.5rem;
  color: #b50024;
  margin-bottom: 2rem;
  text-align: center;
}
.terms-section .container h2, .terms-section .site-header .header-container h2, .site-header .terms-section .header-container h2, .terms-section .hero .hero-content h2, .hero .terms-section .hero-content h2, .terms-section .about .about-container h2, .about .terms-section .about-container h2, .terms-section .site-footer .footer-container h2, .site-footer .terms-section .footer-container h2, .terms-section .contact .contact-container h2, .contact .terms-section .contact-container h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #222;
}
.terms-section .container p, .terms-section .site-header .header-container p, .site-header .terms-section .header-container p, .terms-section .hero .hero-content p, .hero .terms-section .hero-content p, .terms-section .about .about-container p, .about .terms-section .about-container p, .terms-section .site-footer .footer-container p, .site-footer .terms-section .footer-container p, .terms-section .contact .contact-container p, .contact .terms-section .contact-container p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}/*# sourceMappingURL=style.css.map */