/* site-files/frontend.css */

/* Google Fonts: Inter is imported via CDN in HTML head */
body {
    font-family: 'Inter', sans-serif;
    color: #333333; /* Standard text color */
}

/* Custom styles for half-star */
.half-star {
    position: relative;
    display: inline-block;
    width: 0.5em; /* Half the width of a full star */
    overflow: hidden;
    vertical-align: middle;
    color: #FFD700; /* Gold color for the star */
}

.half-star::before {
    content: '⭐'; /* Full star character */
    position: absolute;
    left: 0;
    top: 0;
    width: 2em; /* Ensure the full star character is visible and then clipped */
}

/* Parallax Effect for Hero Section */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Smooth Scroll for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Remove underline from buttons */
button {
    text-decoration: none !important;
}

/* Header sticky effect */
.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
}

/* For the current layout (1 column full width), this is less critical but good practice */
.casino-card-grid {
    display: grid;
    grid-template-columns: 1fr; /* Always one column for this specific request */
    gap: 2rem;
}

.casino-card-grid > div {
    display: flex;
    flex-direction: column;
}

.casino-card-grid > div > div {
    flex-grow: 1;
}

/* Custom styles for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: #0047AB; /* Primary blue for headings */
}

/* Specific styling for the disclaimer block */
.disclaimer-block {
    background-color: #fffbeb; /* Light yellow background */
    border-left: 5px solid #ef4444; /* Red left border */
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.disclaimer-block h3 {
    color: #dc2626; /* Darker red for heading */
}

/* Cookie Banner and Modal styling adjustments for responsiveness */
#cookieBanner {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

#cookieBanner p {
    margin-bottom: 0.75rem;
}

#cookieBanner .flex {
    width: 100%;
    justify-center;
}

#cookieBanner button {
    width: 100%;
}

@media (min-width: 768px) {
    #cookieBanner {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem 2rem;
    }
    #cookieBanner p {
        margin-bottom: 0;
        margin-right: 1rem;
        text-align: left;
    }
    #cookieBanner .flex {
        width: auto;
    }
    #cookieBanner button {
        width: auto;
    }
}

/* General link styling */
a {
    color: #0047AB; /* Consistent link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Override specific button text-decoration */
.bg-green-600, .bg-blue-600, .bg-yellow-500 {
    text-decoration: none !important;
}

/* Ensure logo images in footer are centered and have consistent size */
.footer-partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center logos horizontally */
    align-items: center; /* Center logos vertically */
    gap: 1rem; /* Spacing between logos */
}

.footer-partner-logos a, .footer-partner-logos div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px; /* Fixed width for consistency */
    height: 60px; /* Fixed height for consistency, adjust as needed */
    flex-shrink: 0;
}

.footer-partner-logos img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: none; /* Ensure no grayscale or other filters */
}
/* site-files/frontend.css */

/*
 * New styles for content elements within .consentTunnelGrid.
 * These styles provide a basic, readable typography baseline
 * without overly large headings, suitable for a consent or informational tunnel.
 */

.consentTunnelGrid {
    /* Top margin for spacing the content from the section above */
    margin-top: 4rem;
    /* Horizontal padding for content on smaller screens */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    /* Max width to prevent content from stretching too wide on large screens */
    max-width: 768px; /* Example max-width, adjust as needed */
    /* Center the content block horizontally */
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments for horizontal padding */
@media (min-width: 768px) {
    .consentTunnelGrid {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Heading 1 styles */
.consentTunnelGrid h1 {
    font-size: 2.25rem; /* ~36px */
    line-height: 1.2;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700; /* Bold */
    color: #0047AB; /* Inherit primary blue from general heading styles */
}

/* Heading 2 styles */
.consentTunnelGrid h2 {
    font-size: 1.875rem; /* ~30px */
    line-height: 1.25;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 600; /* Semi-bold */
    color: #0047AB;
}

/* Heading 3 styles */
.consentTunnelGrid h3 {
    font-size: 1.5rem; /* ~24px */
    line-height: 1.3;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #0047AB;
}

/* Heading 4 styles */
.consentTunnelGrid h4 {
    font-size: 1.25rem; /* ~20px */
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500; /* Medium */
    color: #0047AB;
}

/* Heading 5 styles */
.consentTunnelGrid h5 {
    font-size: 1.125rem; /* ~18px */
    line-height: 1.5;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #0047AB;
}

/* Paragraph styles */
.consentTunnelGrid p {
    font-size: 1.125rem; /* ~18px for body text */
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333333; /* Inherit standard text color */
}

/* Unordered list styles */
.consentTunnelGrid ul {
    list-style-type: disc; /* Standard disc bullet points */
    padding-left: 1.5rem; /* Indent for bullet points */
    margin-bottom: 1rem;
    margin-top: 1rem;
    color: #333333;
}

/* List item styles */
.consentTunnelGrid li {
    font-size: 1.125rem; /* Match paragraph font size */
    line-height: 1.6;
    margin-bottom: 0.5rem; /* Spacing between list items */
    color: #333333;
}

/* Remove margin from the last paragraph or list in a sequence */
.consentTunnelGrid p:last-child,
.consentTunnelGrid ul:last-child {
    margin-bottom: 0;
}
.block-img-sized{
    height: 90px!important;
}
@media (max-width:575px) {
    .block-apadtive-com{
        flex-direction: column;
    }
    .text-4xl{
        font-size: 1.8rem!important;
    }
    .text-3xl{
        font-size: 1.4rem!important;
    }

}
@media (max-width:767px) {
        nav{
        display: none;
    }
}
