/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}
.container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}
header {
    background-color: #1a1a5e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}
nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(26, 26, 94, 0.8); /* Slightly transparent */
    backdrop-filter: blur(10px); /* Blur background */
    z-index: 1000;
    
}
.logo {
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-right: 80px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}


.hero {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff3300;
}

.intro {
    text-align: center;
    padding: 40px 20px;
}

.intro h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.hotels {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.hotel {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px;
    width: 45%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.hotel img {
    width: 100%;
    height: auto;
}

.hotel-info {
    padding: 20px;
    
}

.hotel-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.hotel-info p {
    font-size: 1em;
    margin-bottom: 20px;
}

.btn-secondary {
    background-color: #1a1a5e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #00005e;
}

footer {
    background-color: #1a1a5e;
    color: white;
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
footer a{
    text-decoration: none;
    color: white;
}
footer p{
    padding: 15px 0 0 0;
    display: flex;
    justify-content: center;
    border-top: 1px solid #ffffff1a;
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3em;
    }

    .intro h2 {
        font-size: 2.2em;
    }

    .hotel {
        width: 22%;
    }
    .modal-content {
        padding: 50px;
        max-width: 30%;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero h1 {
        font-size: 2.5em;
    }

    .intro h2 {
        font-size: 2em;
    }

    .hotel {
        width: 45%;
    }
    .modal-content {
        padding: 40px;
        max-width: 50%;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    nav {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .hero p {
        font-size: 1em;
    }

    .hotel {
        width: 90%;
        margin: 10px auto;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 25px;
        font-size: 1.2em;
    }
    .modal-content {
        padding: 20px;
        max-width: 90%;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(5px); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    
}
.modal-content {
    padding: 50px;
    -webkit-transition: -webkit-transform ease-in-out .2s;
    transition: transform ease-in-out .2s;
    background: white; 
    border-radius: 10px;
    text-align: center;
    max-width: 30%;
    color: black;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.modal-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
}
.modal-content p {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 300;
    color: #000000;
    font-size: 16px;
    line-height: 1.55;
    margin-top: 14px;
}
.modal-content button {
    background: #8A2BE2;
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.modal-content button:hover {
    background: #9B30FF;
}

    
.cookie-modal {
    display: none;
    position: fixed;
    left: 0%;
    top: 0%;
    width: 100%;
    max-width: 350px;
    margin: auto;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 20px;
    border-radius: 10px;
  }
  
  .cookie-modal-content {
    text-align: center;
  }
  
  .cookie-modal h2 {
    margin-bottom: 15px;
  }
  
  .cookie-modal p {
    margin-bottom: 15px;
  }
  
  .cookie-buttons {
    display: flex;
    justify-content: space-between;
  }
  
  .cookie-buttons button {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .cookie-buttons button:last-child {
    background-color: transparent;
    color: #333;
  }
  

.cookie-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .cookie-buttons {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
  

.cookie-modal-content h2 {
    font-size: 24px;
    font-weight: bold;
  }
  
  .cookie-modal-content p {
    font-size: 16px;
    text-align: center;
  }
  
  .cookie-modal-content label {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
  }
  
  .cookie-modal-content button {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
  }
.responsible-gambling {
    max-width: 800px;
    margin: 0 auto;
}

.responsible-gambling h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.responsible-gambling h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.responsible-gambling p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.responsible-gambling ul {
    margin-bottom: 20px;
}

.responsible-gambling li {
    font-size: 18px;
    line-height: 1.6;
}

.responsible-gambling a {
    color: #333;
    text-decoration: underline;
}