/* frontend/frontend.css */

/* General Body Styles */
body {
    color: #333;
    /* Standard text color */
}

/* Primary Button Style */
.btn-primary {
    background: linear-gradient(to right, #4F46E5, #6366F1);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(to right, #6366F1, #4F46E5);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Slider Specific Styles */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.7s ease-in-out;
    /* Smooth transition for slides */
}

.slider-item {
    flex-shrink: 0;
    width: 100%;
    /* Default to full width for mobile */
}

@media (min-width: 768px) {
    .slider-item {
        width: calc(100% / 2);
        /* 2 items per row on medium screens */
    }
}

@media (min-width: 1024px) {
    .slider-item {
        width: calc(100% / 3);
        /* 3 items per row on large screens */
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #d1d5db;
    /* gray-300 */
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #4F46E5;
    /* Indigo-600 */
}

/* FAQ Section Styles */
.faq-item h3 {
    transition: color 0.3s ease;
}

.faq-item h3:hover {
    color: #4F46E5;
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
}

.faq-item .faq-answer.open {
    max-height: 500px;
    /* Adjust as needed for content */
    opacity: 1;
}

.faq-item h3 i {
    transition: transform 0.3s ease;
}

.faq-item h3 i.rotate {
    transform: rotate(180deg);
}

/* Cookie Banner Styles */
#cookie-banner.show {
    transform: translateY(0);
}

/* Cookie Settings Modal Styles */
#cookie-settings-modal.show {
    opacity: 1;
    pointer-events: auto;
}

#cookie-settings-modal.show > div {
    transform: scale(1);
}

/* Footer Logos */
footer .flex-wrap img {
    max-width: 150px;
    /* Set max-width for logos */
    height: auto;
    /* Maintain aspect ratio */
    filter: none;
    /* Ensure no grayscale or other filters */
}

/* Specific adjustment for 18+ logo if needed */
footer .flex-wrap img[alt="18+ Only"] {
    max-width: 60px;
    /* Smaller size for 18+ icon */
    height: auto;
    /* Maintain aspect ratio */
}
/* Typography styles scoped within .policyScopeWrap */
.policyScopeWrap {
    padding: 4rem 1.5rem; /* Top/bottom padding and side padding for content */
    max-width: 1200px; /* Max width for content to prevent it from stretching too wide */
    margin-left: auto; /* Center the content horizontally */
    margin-right: auto; /* Center the content horizontally */
    line-height: 1.6; /* Default line height for readability */
    color: #333; /* Default text color for the policy content */
}

.policyScopeWrap h1 {
    font-size: 2rem; /* Moderate size for main headings */
    font-weight: 700; /* Bold weight */
    margin-bottom: 1.5rem; /* Space below heading */
    color: #222; /* Slightly darker color for headings */
}

.policyScopeWrap h2 {
    font-size: 1.75rem; /* Slightly smaller than h1 */
    font-weight: 600; /* Semi-bold weight */
    margin-top: 2rem; /* Space above heading, for section breaks */
    margin-bottom: 1rem; /* Space below heading */
    color: #222;
}

.policyScopeWrap h3 {
    font-size: 1.5rem; /* Further reduced size */
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #222;
}

.policyScopeWrap h4 {
    font-size: 1.25rem; /* Even smaller */
    font-weight: 500; /* Medium weight */
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.policyScopeWrap h5 {
    font-size: 1.125rem; /* Smallest heading size */
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.policyScopeWrap p {
    font-size: 1rem; /* Standard paragraph text size */
    margin-bottom: 1rem; /* Space between paragraphs */
}

.policyScopeWrap ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-left: 1.5rem; /* Indentation for bullet points */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 0; /* Ensure no extra padding from browser defaults */
}

.policyScopeWrap ol {
    list-style-type: decimal; /* Default numbered list */
    margin-left: 1.5rem; /* Indentation for numbered list */
    margin-bottom: 1rem; /* Space below the list */
    padding-left: 0; /* Ensure no extra padding from browser defaults */
}

.policyScopeWrap li {
    margin-bottom: 0.5rem; /* Space between list items */
}

/* Optional: Add some basic link styling if needed within policy content */
.policyScopeWrap a {
    color: #4F46E5; /* Indigo-600, matching your button primary color */
    text-decoration: underline; /* Underline links for clarity */
}

.policyScopeWrap a:hover {
    color: #6366F1; /* Lighter indigo on hover */
    text-decoration: none; /* Remove underline on hover */
}
.logo {
    font-size: 28px;
}
@media screen and (width < 576px){
    .logo {
    font-size: 21px;
}

}
h1 {
    /* padding-top: 80px; */
    /* padding-bottom: 60px; */
}
.nav-list li {
    margin-left: 20px;
}