/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e31c5f;
}

.user-actions {
    display: flex;
    gap: 1rem;
}

.btn-login,
.btn-register {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
}

.btn-login {
    color: #e31c5f;
    border: 1px solid #e31c5f;
}

.btn-register {
    background-color: #e31c5f;
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/bg-2.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.search-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.search-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.search-input i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-input input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.search-btn {
    background-color: #e31c5f;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

/* Featured Destinations */
.featured-destinations {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-destinations h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.destination-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    margin-bottom: 0.5rem;
}

.btn-explore {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #e31c5f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 2.5rem;
    color: #e31c5f;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: grid;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .search-form {
        flex-direction: column;
    }

    .search-input {
        width: 100%;
    }
}

/* About Page Styles */
.about-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.about-content {
    padding: 4rem 2rem;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

/* Casinos Page Styles */
.casinos-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hotels.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.casino-filters {
    padding: 2rem;
    background-color: #f8f9fa;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.filter-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.casinos-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.casino-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.casino-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.casino-card:hover {
    transform: translateY(-5px);
}

.casino-image {
    position: relative;
}

.casino-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.casino-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #e31c5f;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.casino-content {
    padding: 1.5rem;
}

.casino-rating {
    color: #ffc107;
    margin: 1rem 0;
}

.casino-rating span {
    color: #666;
    margin-left: 0.5rem;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.casino-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

/* Deals Page Styles */
.deals-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/deal-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.deals-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.deal-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.deal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.deal-card:hover {
    transform: translateY(-5px);
}

.deal-card.hot-deal {
    border: 2px solid #e31c5f;
}

.deal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #e31c5f;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.deal-image {
    position: relative;
}

.deal-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.deal-content {
    padding: 1.5rem;
}

.deal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.deal-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.deal-price {
    margin: 1rem 0;
}

.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.discounted-price {
    color: #e31c5f;
    font-size: 1.5rem;
    font-weight: 600;
}

.savings {
    color: #28a745;
    font-size: 0.9rem;
}

.deal-categories {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.deal-categories h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.category-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card i {
    font-size: 2.5rem;
    color: #e31c5f;
    margin-bottom: 1rem;
}

.btn-book,
.btn-explore {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #e31c5f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-book:hover,
.btn-explore:hover {
    background-color: #c41850;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero,
    .casinos-hero,
    .deals-hero {
        height: 40vh;
    }

    .filter-container {
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
    }

    .casino-features,
    .deal-features {
        flex-direction: column;
    }
}

/* Animation Classes */
.animate-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Newsletter Section */
.newsletter-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 0.8rem 2rem;
    background-color: #e31c5f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #c41850;
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Booking Page Styles */
.booking-page {
    margin-top: 80px;
}

.booking-hero {
    height: 40vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/book-bg.avif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.booking-form-section {
    padding: 4rem 2rem;
}

.booking-form-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-summary {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.summary-details {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.summary-details img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.summary-content {
    flex: 1;
}

.summary-price {
    margin-top: 1rem;
    font-size: 1.5rem;
}

.price-label {
    color: #666;
}

.price-amount {
    color: #e31c5f;
    font-weight: 600;
    margin-left: 1rem;
}

.booking-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    margin-bottom: 1rem;
    color: #333;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

/* Updated Destination Page Styles */
.destinations-page {
    margin-top: 80px;
}

.destinations-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/dest-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.destinations-search {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 1000px;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-image {
    position: relative;
    height: 250px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.destination-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.destination-details {
    padding: 1.5rem;
}

.destination-features {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.destination-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.destination-price {
    font-size: 1.25rem;
    color: #e31c5f;
    font-weight: 600;
} 

.p-container{

    padding: 100px 50px;
}

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }

            .disclaimer{
            margin-left: 50px !important;
            margin-right: 50px !important;
            }

            .bottom-bar p {
            margin: 5px 150px;
            color: #cbd5e0;
        }

        .disclaim-img{
            display: grid !important;
            justify-items: center;
        }


        }


        .disclaimer {
            margin-left: 350px;
            margin-right: 350px;
            font-size: 12px;
        }

        .resp-play {
            width: 90px;
            margin-left: 15px;
        }

        .gamb-aware {
            width: 100px;
            margin-left: 15px;

        }

        .disclaim-img{
                    display: flex;
                    align-items: center;
                    justify-content: center;
        }

        .disclaim-img img{
                margin: 10px 50px;
        }



 /* Mobile Navigation Styles */
.menu-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    /* transform: rotate(0deg);
    transition: .25s ease-in-out; */
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}


/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    background: white;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 10px 0;
    box-sizing: border-box;
    z-index: 1000;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin: 0;
}

.mobile-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 12px 20px;
}

.mobile-menu li a:hover {
    background-color: #f5f5f5;
}

.mobile-menu .book-now {
    color: #ff6b6b;
    font-weight: bold;
}

.mobile-menu.active {
    display: block;
}

/* Media queries for responsive navigation */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-icon {
        display: flex;
        align-items: center;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .mobile-menu.active {
        display: block;
    }

    .mobile-menu ul {
            display: grid;
            justify-items: center;
    }
}

.c-hotels {
    display: flex
;
    justify-content: center;
}