/* Basic styles for the body of the webpage */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Styles for the header */
header {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Styles for the logo */
#logo {
    max-width: 250px;
}

/* Styles for the Instagram button */
#instagram-button {
    margin-left: 20px;
    display: inline-block;
}

#instagram-icon {
    width: 50px;
}

/* Styles for the navigation menu */
nav {
    background-color: #333;
}

/* Styles for the unordered list in the navigation menu */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

/* Styles for each list item in the navigation menu */
nav ul li {
    margin: 0 10px; /* Adds margin between menu items */
}

/* Styles for the links in the navigation menu */
nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    border-radius: 0px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 15px 10px;
    display: block;
    border-radius: 0px;
}
}

/* Styles for the main content section */
main {
    padding: 20px;
}

/* Styles for the filter menu */
.filter-menu {
    text-align: center;
    margin-bottom: 20px;
        margin: 0px auto 20px auto;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
        max-width: 1300px;
}

.filter-menu label {
    margin-right: 10px;
    font-size: 16px;
    font-weight: bold;
}

.filter-menu select {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.filter-menu select:focus {
    border-color: #333;
}

/* Styles for the invites section */
#invites {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1300px; /* Limit maximum width of the invites section */
    margin: 0 auto; /* Center the invites section horizontally */
        border-radius: 10px;
}

/* Styles for each invite block */
.invite-block {
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 10px;
        max-width: 500px;
}

/* Styles for images in invite blocks */
.invite-block img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* General styles for buttons */
.button {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 8px 12px; /* Smaller padding for smaller buttons */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 5px;
    width: 120px; /* Fixed width for consistent button size */
    box-sizing: border-box; /* Include padding in button width calculation */
}

/* Hover effect for buttons */
.button:hover {
    background-color: #555;
}

/* Styles for the "Order Now" buttons */
.order-button {
    background-color: #2d83e1;
    width: auto; /* Allow button to expand based on content */
    padding: 8px 12px; /* Smaller padding for smaller buttons */
}

/* Hover effect for the "Order Now" buttons */
.order-button:hover {
    background-color: #0056b3;
}

/* General page styling for headings */
h1 {
    text-align: center;
    margin-top: 20px;
}

/* General page styling for paragraphs */
p {
    text-align: center;
    margin: 20px;
    font-weight: bold;
}


/* Styles for sections */
section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styles for the active navigation link */
nav ul li a.active {
    background-color: #555;
}



/* Styles for the product carousel */
.carousel {
    width: 100%; /* Adjust carousel width as needed */
    float: left;
    border-radius: 10px;
    overflow: hidden; /* Hide overflowing images */
    position: relative; /* Needed for absolute positioning of thumbnails */


}

.carousel img {
    width: 80%;
    display: block;
    border-radius: 10px;
     margin: 10PX auto;
             border: 2px solid #e4e4e4;
}

/* Styles for the thumbnails */
.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.thumbnails img {
    width: 50px; /* Adjust thumbnail size as needed */
    height: 50px; /* Adjust thumbnail size as needed */
    border-radius: 5px;
    cursor: pointer;
}

/* Styles for the product information */
.details {
    width: 50%; /* Adjust as needed */
    float: left;
}

.details h2 {
    margin-top: 0;
}

.details p {
    margin-bottom: 10px;
        text-align: left;
}

/* Styles for the color options */
.color-options {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
        padding-inline-start: 40px;
}

.color-box {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 1px solid #ccc;
        border-radius: 30px;


}

/* Adjust color box hover effect as needed */
.color-box:hover {
    border-color: #333;
}

/* Styles for the product-details container */
.product-details {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Styles for the centered container within product-details */
.centered-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
            background-color: #fff;
        max-width: 800px;
            border-radius: 5px;
}

/* Adjust the width of the carousel and details sections */
.details {
    width: 80%;
    padding: 0 10px 30PX 10PX ; /* Add some padding to separate the sections */
}

/* Styles for the thumbnails section */
.thumbnails {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 20px; /* Add some space between thumbnails and details */
}

.thumbnails img {
    width: 120px; /* Adjust thumbnail size as needed */
    height: 120px; /* Adjust thumbnail size as needed */
    border-radius: 5px;
    cursor: pointer;
        border: 2px solid #e4e4e4;
}
.price {
    color: green;
}

/* Styles for the footer */
footer {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.footer-content {
    font-size: 14px;
    color: #333;
}

.footer-content p {
    margin: 5px 0;
}

.footer-content a {
    color: #333;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}


/* Styles for the payment section */
.payment-section {
    background-color: #f9f9f9;
    padding: 20px 30px; /* 20px top and bottom, 10px right and left */
    border-radius: 10px;
    margin-top: 20px;
}

/* Styles for payment methods */
.payment-methods {
    list-style-type: none;
    padding-left: 0;
}

.payment-methods li {
    margin-bottom: 10px;
    font-size: 16px;
    align-items: center;
}

.payment-methods li img {
    margin-right: 10px;
    margin-left: 10px;
    width: 30px; /* Adjust the width of the icons */
    vertical-align: middle; /* Center the icons vertically */
}


.payment-methods-not {
    list-style-type: none; /* Remove the bullet point */
    padding-left: 0; /* Remove default left padding */
}

.payment-methods-not li {
    list-style-image: none; /* Remove the list item marker */
}

.payment-methods-not li img {
    margin-right: 10px;
    margin-left: 10px;
    width: 100px; /* Adjust the width of the icons */
    vertical-align: middle; /* Center the icons vertically */
}
/* Styles for the order banner */
.order-banner {
    background-color: #2d83e3;
    padding: 20px 30px; /* 20px top and bottom, 10px right and left */
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
        color: #000;
}

.order-banner p {
    margin: 0;
}

.order-banner a {
    color: #fff;
    text-decoration: none;
}

.order-banner a:hover {
    text-decoration: underline;
}
/* Styles for the price box */
.price-box {
    background-color: #2d83e3; /* Darker grey color */
    color: #fff; /* White text color */
    padding: 10px; /* Padding around the price */
    border-radius: 5px; /* Rounded edges */
    margin-bottom: 10px; /* Space between price box and heading */
    margin-left: 10px;
    margin-top: 15px;
}



/* Styles for the FAQ section */
#faq {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styles for the FAQ container */
.faq-container {
    margin-top: 20px;
}

/* Styles for each FAQ item */
.faq-item {
    margin-bottom: 20px;
}

/* Styles for the question */
.faq-item h2 {
    margin: 0;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
}

.faq-item h2::after {
    content: '\002B'; /* Unicode character for plus sign */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
            padding-right: 10px;
}
}

.faq-item.active h2::after {
    content: '\2212'; /* Unicode character for minus sign */
        padding-right: 10px;
}

/* Styles for the answer */
.faq-answer {
    display: none;
    background-color: #585858; /* Change the background color as desired */
    padding: 10px; /* Add some padding for better readability */
    border-radius: 0px 0px 5px 5px; /* Add some border radius for rounded corners */
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
color: #fff;
    text-align: left;
}
/* Styles for the services section */
#services {
    max-width: 800px;
    margin: 0 auto;
}

/* Styles for each service */
.service {
    display: flex;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styles for the service image */
.service-image {
    flex-shrink: 0; /* Prevent the image from shrinking */
    width: 200px; /* Adjust as needed */
    margin-right: 20px;
    border-radius: 5px;
}

.service-image img {
    width: 100%;
    border-radius: 5px;
}

/* Styles for the service details */
.service-details {
    flex-grow: 1;
}

.service-details h2 {
    margin-top: 10;
    margin-bottom: 10px;
        margin-left: 15px;
}

.service-details p {
    margin-bottom: 0;
    text-align: left;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .service {
        flex-direction: column; /* Image on top, text below for smaller screens */
        align-items: center; /* Center-align items */
    }

    .service-image {
        margin-right: 0;
        margin-bottom: 10px; /* Space between image and text */
        width: 100%; /* Make the image responsive */
    }

    .service-details {
        text-align: center; /* Center-align text */
    }
}

/* Styles for the contact section */
#contact {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styles for the contact information */
.contact-info {
    margin-top: 20px;
}

/* Styles for the contact information paragraphs */
.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Styles for the contact information links */
.contact-info a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #2d83e1;
}


.order-banner-alt {
    background-color: #2d83e3;
    padding: 20px 30px; /* 20px top and bottom, 10px right and left */
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    color: #fff;
    max-width: 1300px;
    text-align: center;
    margin-bottom: 20px;
    margin: 0px auto 20px auto;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    max-width: 1300px;
}

.order-banner-alt p {
    margin: 0;
}

.order-banner-alt a {
    color: #ffda2c;
    text-decoration: none;
}

/* Styles for the price box */
.price-box {
    background-color: #2d83e3; /* Darker grey color */
    color: #fff; /* White text color */
    padding: 10px; /* Padding around the price */
    border-radius: 5px; /* Rounded edges */
    margin-bottom: 10px; /* Space between price box and heading */
    margin-left: 10px;
    margin-top: 15px;
}

#language-logo {
    width: 30px; /* Adjust size as needed */
    margin-right: 20px;
}

