/* style.css */

/* Navbar Styles */
.custom-navbar {
    background-color: #4A90E2; /* Custom blue color */
    color: white; /* Text color */
}

.custom-navbar .navbar-item {
    color: white; /* Navbar item text color */
}

.custom-navbar .navbar-item:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Light hover effect */
}

/* Accordion Styles */
.accordion {
    margin: 20px 0;
}

.accordion-item {
    border: 1px solid #ddd; /* Border around each item */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 10px; /* Space between items */
}

.accordion-header {
    background-color: #f5f5f5; /* Light background for headers */
}

.accordion-button {
    background: none; /* Remove default button background */
    border: none; /* Remove default button border */
    width: 100%; /* Full width */
    text-align: left; /* Align text to the left */
    padding: 15px; /* Padding for better spacing */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Font size */
    transition: background-color 0.3s; /* Smooth background transition */
}

.accordion-button:hover {
    background-color: #e0e0e0; /* Darker background on hover */
}

.accordion-body {
    padding: 15px; /* Padding for body content */
    display: none; /* Initially hidden */
    background-color: #fff; /* White background for body */
}

/* Footer Styles */
.footer {
    padding: 2rem 0; /* Padding for the footer */
}

.footer h3 {
    margin-bottom: 1rem; /* Space below the headings */
}

.footer ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

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

.footer a {
    text-decoration: none; /* Remove underline from links */
    transition: color 0.3s; /* Smooth color transition */
}

.footer a:hover {
    color: #ffcc00; /* Change color on hover */
}

.social-icons {
    display: flex; /* Flexbox for social icons */
    gap: 1rem; /* Space between icons */
    margin-top: 0.5rem; /* Space above icons */
}

.social-icons a {
    font-size: 1.5rem; /* Size of social icons */
    color: white; /* Icon color */
}

/* Pricing Section Styles */
.pricing-card {
    border: 1px solid #ddd; /* Light border around cards */
    border-radius: 8px; /* Rounded corners */
    padding: 2rem; /* Padding inside the card */
    transition: box-shadow 0.3s; /* Smooth shadow transition */
}

.pricing-card:hover {
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.2); /* Shadow on hover */
}

.pricing-header {
    background-color: #007bff; /* Background color for the header */
    color: white; /* Text color for the header */
    padding: 1rem; /* Padding for the header */
    border-radius: 8px 8px 0 0; /* Rounded corners at the top */
    position: relative; /* Position relative for the tag */
}

.pricing-header h3 {
    margin: 0; /* Remove margin */
    color: white;
}

.price {
    font-size: 2rem; /* Larger font size for price */
    font-weight: bold; /* Bold price */
    margin: 0; /* Remove margin */
}

ul {
    list-style: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    margin: 1rem 0; /* Margin above and below list */
}

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

.button.is-primary {
    background-color: #007bff; /* Primary button color */
    border-radius: 5px; /* Rounded corners for button */
}

.button.is-primary:hover {
    background-color: #0056b3; /* Darker shade on hover */
}

/* style.css */

/* Bestseller Tag Styles */
.bestseller-tag {
    display: inline-block; /* Inline block for proper spacing */
    background-color: #ffcc00; /* Yellow background for the tag */
    color: #333; /* Dark text color */
    padding: 0.5rem 1rem; /* Padding for the tag */
    border-radius: 5px; /* Rounded corners */
    font-weight: bold; /* Bold text */
    margin-bottom: 0.5rem; /* Space below the tag */
    position: absolute; /* Position the tag absolutely */
    top: 0; /* Position at the top */
    left: 0; /* Position at the left */
}


/* style.css */

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.3); /* Black w/ opacity */
}

.modal-content {
    background-color: #fff; /* White background */
    margin: 15% auto; /* 15% from the top and centered */

    border: 1px solid #888; /* Border */
    border-radius: 8px; /* Rounded corners */
    width: 80%; /* Could be more or less, depending on screen size */
}

.modal-close {
    position: absolute; /* Position the close button */
    top: 10px;
    right: 15px;
    color: #fff; /* Close button color */
}

.mt-5 {
    margin-top: 2.5rem; /* Space above the text */
}
.mt-3 {
    margin-top: 1.5rem; /* Space above the text */
}
.mb-3 {
    margin-bottom: 1.5rem; /* Space below the text */
}
.mb-5 {
    margin-bottom: 2.5rem; /* Space below the text */
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* style.css */


.help .section {
    padding: 2rem 1.5rem; /* Increased padding for better spacing */
    background-color: #c4f5ff; /* Light background for contrast */
    border-radius: 8px; /* Rounded corners for a softer look */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-top: 2rem;
}

.help .title {
    color: #333; /* Darker text for better readability */
    margin-bottom: 1rem; /* Space below titles */
}

.help .subtitle {
    color: #c12323; /* Slightly lighter color for subtitles */
    margin-bottom: 0.5rem; /* Space below subtitles */
}

.help ul {
    list-style-type: disc; /* Standard bullet points */
    padding-left: 1.5rem; /* Indentation for list items */
}

.help ol {
    padding-left: 1.5rem; /* Indentation for ordered lists */
}

.help ol, .help ul {
    margin-top: 1rem; /* Space between list items */
}

.help ol li, .help ul li {
    margin-bottom: 0.5rem; /* Space between list items */
}

.help .has-text-centered {
    text-align: center; /* Center text for headings */
}
