/* Global Styles */
* {
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #333333; /* Standard text color */
    background-color: #f5f5f5;
}

.title, .subtitle {
    word-break: keep-all;
}

.has-text-white {
    color: #e0e0e0 !important;
}

.has-text-white-ter {
    color: #f0f0f0 !important;
}

.has-text-grey-light {
    color: #b0b0b0 !important;
}

.has-text-grey-dark {
    color: #555555 !important;
}

.has-text-grey-darker {
    color: #444444 !important;
}

/* Custom Color Palette for Sport Theme */
.has-background-dark {
    background-color: #1a1a2e !important; /* Deep Blue/Purple */
}

.has-background-light {
    background-color: #f5f5f5 !important;
}

.has-background-white-ter {
    background-color: #f0f0f0 !important;
}

.has-background-white-bis {
    background-color: #ffffff !important;
}

.is-primary {
    background-color: #00bcd4 !important; /* Cyan/Turquoise */
    border-color: #00bcd4 !important;
    color: #ffffff !important;
}

.is-primary:hover {
    background-color: #00acc1 !important;
    border-color: #00acc1 !important;
}

.is-primary.is-light {
    background-color: rgba(0, 188, 212, 0.1) !important;
    color: #00bcd4 !important;
}

.is-primary.is-light:hover {
    background-color: rgba(0, 188, 212, 0.2) !important;
}

.has-text-primary {
    color: #00bcd4 !important;
}

.has-text-info {
    color: #3273dc !important;
}

.has-text-info-light {
    color: #92b8f8 !important;
}

.has-text-success {
    color: #48c78e !important;
}

.has-text-warning {
    color: #ffdd57 !important;
}

.has-text-danger {
    color: #f14668 !important;
}

.highlight-text {
    color: #76ff03; /* Lime Green */
    font-weight: 600;
}

/* Shadows */
.shadow-sm {
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

.shadow-md {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

/* Navbar */
.navbar {
    background-color: #1a1a2e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-item img {
    max-height: 2.75rem; /* Adjust logo size */
}

.footer a{
    font-size: 16px !important;
}

.columns.is-mobile{
    flex-wrap: wrap;
}

.navbar-item, .navbar-link {
    color: #e0e0e0;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar-item:hover, .navbar-link:hover {
    color: #00bcd4;
    background-color: transparent;
}

.navbar-burger {
    color: #e0e0e0;
}

/* Hero Section */
.hero-bg-image {
    background-image: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.7)), url('pictures/content/Strong-Training-Mask-A-Athlete-Black-Male-Black-A-On-Wall-In.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #e0e0e0;
}

.hero .title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero .subtitle {
    font-weight: 400;
}

.hero .button {
    height: 100%;
    flex-wrap: wrap;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero .button:hover {
    transform: translateY(-3px);
    background-color: #00acc1;
}

.hero .button span{
    white-space: normal;
}


/* Animations for Hero Text */
.animated-title, .animated-subtitle, .animated-cta, .animated-cta-2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.animated-title {
    animation-delay: 0.2s;
}

.animated-subtitle {
    animation-delay: 0.4s;
}

.animated-cta {
    animation-delay: 0.6s;
}

.animated-cta-2 {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Us Section */
.about-image {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Featured Products Slider */
.slider-container {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.slider-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 40px;
    background-color: #2a2a4e; /* Darker background for slider items */
}

.slider-image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-content {
    color: #e0e0e0;
}

.slider-nav-left, .slider-nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 2rem;
    transition: background-color 0.3s ease;
}

.slider-nav-left {
    left: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.slider-nav-right {
    right: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.slider-nav-left:hover, .slider-nav-right:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: #00bcd4; /* Primary color */
    transform: scale(1.2);
}

/* Product Card Grid */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards in a row have equal height */
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18) !important;
}

.product-card .card-image img {
    object-fit: cover;
    height: 100%; /* Fixed height for product images */
    width: 100%;
}

.product-card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card .price {
    color: #00bcd4; /* Primary color */
}

.add-to-cart-btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    background-color: #00acc1;
}

/* Review Cards */
.review-card {
    border-radius: 10px;
    padding: 20px;
    background-color: #2a2a4e;
    color: #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18) !important;
}

.review-card .media-content .title {
    color: #e0e0e0;
}

.media-content{
    overflow-x: unset !important;
}

.review-card .media-content .subtitle {
    color: #b0b0b0;
}

.review-card .rating .material-symbols-outlined {
    font-size: 1.2rem;
}

/* Call to Action Section */
.cta-section {
    background-image: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('pictures/content/Colors-For-Big-Football-Gambling-Bookmaker-With-Copy-Advertisement-For-Mockup-Ads-Banner-Sports-Template-Win-American-Football-With-Player-Betting-Bookmaker.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: #e0e0e0;
}

.cta-section .title, .cta-section .subtitle {
    color: #e0e0e0;
}

.cta-section .button {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-section .button:hover {
    transform: translateY(-3px);
    background-color: #00acc1;
}

/* Footer */
.footer {
    padding: 3rem 1.5rem 3rem;
    background-color: #1a1a2e;
}

.footer a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00bcd4;
}

.footer .social-icons .material-symbols-outlined {
    font-size: 1.8rem;
}

/* Modals (Cart, Checkout, Confirmation, Cookie Settings) */
.modal-card {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.modal-card-head {
    background-color: #f5f5f5;
    border-bottom: 1px solid #dbdbdb;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.modal-card-title {
    color: #333333;
    font-weight: 600;
}

.modal-card-body {
    padding: 20px;
    background-color: #ffffff;
}

.modal-card-foot {
    background-color: #f5f5f5;
    border-top: 1px solid #dbdbdb;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

#cart-items-container .box {
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#cart-items-container .box .media-left img {
    border-radius: 4px;
}

.cart-item-quantity-input {
    width: 60px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #dbdbdb;
    padding: 5px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    max-width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateX(120%); /* Start off-screen */
    transition: transform 0.6s ease-out;
}

.cookie-banner.is-active {
    transform: translateX(0); /* Slide in */
}

.cookie-banner .card-content {
    padding: 1.25rem;
}

.cookie-banner .buttons {
    justify-content: flex-end;
}

/* Cookie Settings Modal */
#cookie-settings-modal .field {
    margin-bottom: 1.5rem;
}

#cookie-settings-modal .switch[type="checkbox"] + label {
    padding-left: 2.5em;
}

#cookie-settings-modal .switch[type="checkbox"] + label::before {
    background-color: #dbdbdb;
}

#cookie-settings-modal .switch[type="checkbox"]:checked + label::before {
    background-color: #00bcd4; /* Primary color */
}

#cookie-settings-modal .switch[type="checkbox"]:checked + label::after {
    background-color: #ffffff;
}

#cookie-settings-modal .switch[type="checkbox"][disabled] + label {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .hero .title {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

    .navbar-menu {
        background-color: #1a1a2e;
        padding: 1rem;
    }

    .navbar-item {
        padding-left: 1rem;
    }

    .slider-item {
        padding: 20px;
    }

    .slider-image {
        max-width: 90%;
    }

    .slider-nav-left, .slider-nav-right {
        padding: 10px 5px;
        font-size: 1.5rem;
    }

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        width: calc(100% - 20px);
    }
}

@media screen and (min-width: 769px) {
    .navbar-menu {
        background-color: #1a1a2e;
    }
}
/* Styles for the content grid container */
.consentTunnelGrid {
    padding-top: 3rem;    /* Top padding for the grid */
    padding-left: 1.5rem;  /* Left padding for the grid */
    padding-right: 1.5rem; /* Right padding for the grid */
    margin-left: auto;     /* Center the grid horizontally */
    margin-right: auto;    /* Center the grid horizontally */
    max-width: 960px;      /* Maximum width for content within the grid */
    box-sizing: border-box; /* Include padding in element's total width and height */
}

/* Heading 1 styles within the consent grid */
.consentTunnelGrid h1 {
    font-size: 2.2rem;     /* Font size for H1 */
    font-weight: 700;      /* Bold font weight */
    line-height: 1.2;      /* Line height for readability */
    margin-top: 2.5rem;    /* Top margin for spacing */
    margin-bottom: 1.2rem; /* Bottom margin for spacing */
    color: #333333;        /* Dark text color */
}

/* Heading 2 styles within the consent grid */
.consentTunnelGrid h2 {
    font-size: 1.8rem;     /* Font size for H2 */
    font-weight: 600;      /* Semi-bold font weight */
    line-height: 1.3;      /* Line height for readability */
    margin-top: 2rem;      /* Top margin for spacing */
    margin-bottom: 1rem;   /* Bottom margin for spacing */
    color: #333333;        /* Dark text color */
}

/* Heading 3 styles within the consent grid */
.consentTunnelGrid h3 {
    font-size: 1.5rem;     /* Font size for H3 */
    font-weight: 600;      /* Semi-bold font weight */
    line-height: 1.4;      /* Line height for readability */
    margin-top: 1.8rem;    /* Top margin for spacing */
    margin-bottom: 0.9rem; /* Bottom margin for spacing */
    color: #333333;        /* Dark text color */
}

/* Heading 4 styles within the consent grid */
.consentTunnelGrid h4 {
    font-size: 1.25rem;    /* Font size for H4 */
    font-weight: 500;      /* Medium font weight */
    line-height: 1.5;      /* Line height for readability */
    margin-top: 1.5rem;    /* Top margin for spacing */
    margin-bottom: 0.8rem; /* Bottom margin for spacing */
    color: #333333;        /* Dark text color */
}

/* Heading 5 styles within the consent grid */
.consentTunnelGrid h5 {
    font-size: 1.1rem;     /* Font size for H5 */
    font-weight: 500;      /* Medium font weight */
    line-height: 1.5;      /* Line height for readability */
    margin-top: 1.2rem;    /* Top margin for spacing */
    margin-bottom: 0.7rem; /* Bottom margin for spacing */
    color: #333333;        /* Dark text color */
}

/* Paragraph styles within the consent grid */
.consentTunnelGrid p {
    font-size: 1rem;       /* Standard font size for paragraphs */
    line-height: 1.6;      /* Line height for readability */
    margin-bottom: 1rem;   /* Bottom margin for spacing between paragraphs */
    color: #333333;        /* Standard text color */
}

/* Unordered list styles within the consent grid */
.consentTunnelGrid ul {
    list-style-type: disc; /* Default disc bullet for unordered lists */
    margin-left: 1.5rem;   /* Indent list items */
    margin-bottom: 1rem;   /* Bottom margin for spacing after the list */
    padding-left: 0;       /* No extra padding for the ul itself */
}

/* List item styles within the consent grid */
.consentTunnelGrid li {
    font-size: 1rem;       /* Standard font size for list items */
    line-height: 1.6;      /* Line height for readability */
    margin-bottom: 0.5rem; /* Spacing between list items */
    color: #333333;        /* Standard text color */
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .consentTunnelGrid {
        padding-top: 2rem;     /* Adjust top padding for smaller screens */
        padding-left: 1rem;    /* Adjust side padding for smaller screens */
        padding-right: 1rem;   /* Adjust side padding for smaller screens */
    }

    .consentTunnelGrid h1 {
        font-size: 1.8rem;     /* Smaller H1 for mobile */
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .consentTunnelGrid h2 {
        font-size: 1.5rem;     /* Smaller H2 for mobile */
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .consentTunnelGrid h3 {
        font-size: 1.3rem;     /* Smaller H3 for mobile */
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .consentTunnelGrid h4 {
        font-size: 1.1rem;     /* Smaller H4 for mobile */
        margin-top: 1rem;
        margin-bottom: 0.6rem;
    }

    .consentTunnelGrid h5 {
        font-size: 1rem;       /* Smaller H5 for mobile */
        margin-top: 0.8rem;
        margin-bottom: 0.5rem;
    }
}
