/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-color: #3b0064; /* Purple background */
    color: white;
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

header .logo a {
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #f7931e; /* Orange for Slot */
}

header .logo span {
    color: white; /* White for Museum */
}

/* Navbar Styles */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.navbar ul li a:hover {
    text-decoration: underline;
}

/* Search Bar Styles */
.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-bar {
    padding: 8px;
    border: none;
    border-radius: 5px;
    width: 200px;
    font-size: 14px;
}

.search-btn {
    padding: 8px 16px;
    background-color: #f7931e;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.search-btn:hover {
    background-color: #f56d00;
}

/* Mobile Menu Styles */
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-icon span {
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 2px;
}

/* For Mobile Screens */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .navbar ul {
        display: none; /* Hidden by default */
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .navbar.active {
        display: flex; /* Show menu when active */
    }

    .mobile-menu-icon {
        display: flex;
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .search-container {
        margin-top: 10px;
    }
}




/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
    background-color: #333;
}

.hero-slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 1s ease;
}

.hero-img-container {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    background-image: url('https://www.therosegamingresort.com/wp-content/uploads/2024/10/Gaming-Floor-Game-A-1091-Edit.jpg'); /* Add your background image path */
    background-size: cover; /* Ensures the image covers the whole section */
    background-position: center; /* Keeps the image centered */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}


/* Online Casino Section Styles */
.online-casino {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.section-heading h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 10px;
}

/* Casino Cards Styles */
.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.casino-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.casino-card {
    width: 30%;
    height: 250px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.casino-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .casino-card {
        width: 45%; /* For tablets, 2 cards per row */
    }

    .section-heading h2 {
        font-size: 2.5rem;
    }

    .section-heading p {
        font-size: 1rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .casino-card {
        width: 100%; /* For smaller screens, 1 card per row */
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .section-heading p {
        font-size: 0.9rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
        font-size: 0.9rem;
        max-width: 100%;
    }
}



/* Our Games Section Styles */
.our-games {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    background-image: url('https://www.gammastack.com/wp-content/uploads/2024/12/Types-of-Slot-Game-Choosing-the-Right-Game-for-Beginners-1.jpg'); /* Add your background image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.games-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
}

.games-content p {
    font-size: 1.5rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .games-content h2 {
        font-size: 2.5rem;
    }

    .games-content p {
        font-size: 1rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .games-content h2 {
        font-size: 1.8rem;
    }

    .games-content p {
        font-size: 0.9rem;
        max-width: 100%;
    }
}



/* Reviews Section Styles */
.reviews {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-heading h2 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
      margin-bottom: 10px;
}

/* Review Cards Styles */
.review-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.review-card {
    width: 30%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.review-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 2px solid #f1f1f1;
}

.review-text {
    padding: 20px;
}

.review-text h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.review-text p {
    font-size: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .review-card {
        width: 45%; /* For tablets, 2 cards per row */
    }

    .section-heading h2 {
        font-size: 2.5rem;
    }

    .section-heading p {
        font-size: 1rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .review-card {
        width: 100%; /* For smaller screens, 1 card per row */
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .section-heading p {
        font-size: 0.9rem;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
        font-size: 0.9rem;
        max-width: 100%;
    }
}






/* General Footer Styling */
footer {
  background-color: #212121;
  color: white;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;  /* Ensures content wraps on small screens */
}

.footer-about, .footer-quick-links, .footer-contact {
  width: 30%;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #00bcd4; /* Light blue color */
}

p, ul {
  font-size: 14px;
  line-height: 1.6;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin: 8px 0;
}

ul li a {
  color: #999;
  text-decoration: none;
}

ul li a:hover {
  color: #00bcd4;
}

/* Social Icons Styling */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.social-icon:hover {
  color: #00bcd4;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p a {
  color: #00bcd4;
  text-decoration: none;
}

.footer-bottom p a:hover {
  text-decoration: underline;
}

/* Media Queries for Responsiveness */

/* For small screens (max-width 768px) */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column; /* Stacks the content vertically */
    text-align: center;
  }

  .footer-about, .footer-quick-links, .footer-contact {
    width: 100%; /* Takes full width on small screens */
    margin-bottom: 20px;
  }

  .footer-social {
    justify-content: center; /* Center social media icons */
  }
}

/* For very small screens (max-width 480px) */
@media (max-width: 480px) {
  .footer-container {
    padding: 20px;
  }

  h3 {
    font-size: 16px;
  }

  p, ul {
    font-size: 12px;
  }

  .footer-social a {
    font-size: 18px;
  }
}

