:root {
  --color-orange: #FF7700;
  --color-black: #1A1A1A;
  --color-gold: #D4AF37;
  --color-cream: #F5F5DC;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Roboto', sans-serif;
}

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

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-cream);
}

.header {
  background-color: var(--color-black);
  padding: 1rem;
  color: var(--color-cream);
}

.logo {
  text-align: center;
  padding: 1rem 0;
}

.logo h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-gold);
}

.tagline {
  color: var(--color-orange);
  font-style: italic;
}

.nav {
  padding: 1rem 0;
}

.nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--color-cream);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-gold);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.slider {
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.welcome,
.amenities {
  padding: 4rem 2rem;
  text-align: center;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.amenity-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.amenity-card:hover {
  transform: translateY(-5px);
}

.amenity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.amenity-card h3 {
  color: var(--color-black);
  padding: 1rem;
}

.amenity-card p {
  padding: 0 1rem 1rem;
  color: #666;
}

.newsletter {
  background-color: var(--color-black);
  color: var(--color-cream);
  padding: 4rem 2rem;
  text-align: center;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.newsletter-form input {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  min-width: 300px;
}

.newsletter-form button {
  padding: 0.5rem 2rem;
  background-color: var(--color-orange);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #ff8800;
}

/* Contact Page Styles */
.contact-hero,
.booking-hero,
.responsible-hero,
.terms-hero,
.privacy-hero,
.cookies-hero {
  background-color: var(--color-black);
  color: var(--color-cream);
  text-align: center;
  
}

.contact-hero h2,
.booking-hero h2,
.responsible-hero h2,
.terms-hero h2,
.privacy-hero h2,
.cookies-hero h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.contact-content,
.booking-content,
.responsible-content,
.terms-content,
.privacy-content,
.cookies-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-info,
.booking-info {
  display: grid;
  gap: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.contact-form,
.booking-form {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-black);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
}

.contact-form button,
.booking-form button {
  background-color: var(--color-orange);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.contact-form button:hover,
.booking-form button:hover {
  background-color: #ff8800;
}

.map-section {
  padding: 2rem;
  background-color: var(--color-black);
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsible Gaming Styles */
.responsible-list,
.support-list,
.policy-list {
  list-style: none;
  margin-top: 1rem;
}

.responsible-list li,
.support-list li,
.policy-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.responsible-list li:before,
.support-list li:before,
.policy-list li:before {
  content: "•";
  color: var(--color-gold);
  position: absolute;
  left: 0;
}

/* Terms, Privacy, and Cookies Pages Styles */
.terms-section,
.privacy-section,
.cookies-section {
  margin-bottom: 2rem;
}

.terms-section h3,
.privacy-section h3,
.cookies-section h3 {
  color: var(--color-gold);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.terms-section ul,
.privacy-section ul,
.cookies-section ul {
  list-style: none;
  margin: 1rem 0;
}

.terms-section li,
.privacy-section li,
.cookies-section li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.terms-section li:before,
.privacy-section li:before,
.cookies-section li:before {
  content: "•";
  color: var(--color-gold);
  position: absolute;
  left: 0;
}

.footer {
  background-color: var(--color-black);
  color: var(--color-cream);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--color-cream);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--color-orange);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }

  .nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-cream);
    margin: 5px 0;
    transition: 0.3s;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .contact-content,
  .booking-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    min-width: 200px;
  }
}
/* Entertainment & Events */
.entertainment {
    padding: 60px 20px;
    background-color: #f9f5f0;
    text-align: center;
}
.entertainment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}
.event-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 300px;
    overflow: hidden;
    text-align: left;
}
.event-card img {
    width: 100%;
    height: auto;
    display: block;
}
.event-card h3 {
    margin: 15px;
    font-size: 1.2rem;
}
.event-card p {
    margin: 0 15px 15px;
    color: #555;
}

/* Guest Reviews */
.reviews {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}
.reviews-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}
.review-card {
    background-color: #f1f1f1;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    max-width: 600px;
}
.review-card p {
    font-style: italic;
    margin-bottom: 10px;
}
.review-card h4 {
    font-weight: 500;
    color: #333;
}
/* Best Hotel Choices */
.best-hotels {
    padding: 60px 20px;

    background-color: #f5f5dc;
    text-align: center;
}
  

.best-hotels h2 {
    margin-bottom: 50px;
    font-size: 2rem;
}

.hotel-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.hotel-block.reverse {
    flex-direction: row-reverse;
}
.hotel-img, .hotel-text {
    flex: 1 1 500px;
    max-width: 500px;
    padding: 15px;
}
.hotel-img img {
    width: 100%;
    height: 280px;
    border-radius: 10px;
}
.hotel-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.hotel-text p {
    color: #555;
    line-height: 1.6;
}
