

/* Base reset for navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 10px 20px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #007bff; /* Bright blue to highlight on hover */
}

/* Responsive adjustments might be needed for mobile views */
/* CSS for the mobile navigation toggle button */
.mobile-toggle {
    display: none; /* Initially hide the toggle button */
    font-size: 20px;
    color: #fff; /* Button color */
    background-color: #333; /* Button background color */
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    position: absolute;
    right: 0; /* Align to the right */
    top: 0; /* Align to the top */

}

/* Hide dropdown links */
.dropdown-content {
    display: none;
    top:60px;
    position: absolute;
    right:0;
    background-color: hsl(0, 0%, 86%);
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
/* Style for dropdown links */
.dropdown-content a {
    color: black;
    padding: 10px 10px;
    text-decoration: none;
    display: block;
}

/* Add hover effect */
.dropdown-content a:hover {
    background-color: #474747; /* Light grey background */
    color: #eeeeee; /* Darker text color */
}

/* Show the toggle button on small screens */
@media screen and (max-width: 600px) {
    .nav-links{
        display: none; /* Hide the regular navigation links */
    }

    .mobile-toggle {
        display: block; /* Show hamburger menu button if mobile screen */
    }

    .dropdown-content {
        display: none; 
    }
}else{
    .dropdown-content {
        display: none; 
    }
}


/*  ----------------------------------------------- */
/* LOGO AND TITLE */
.logo img {
    height: 40px; /* Adjust based on your logo's size */
}
.site-title{
    display: flex;
    margin-left: 20px;
    font-size: 24px; /* Adjust the font size as needed */
}
.logo-and-title {
    display: flex;
    align-items: center;
}

.logo-and-title img {
    height: 40px; /* Adjust based on your logo's size */
}

/*  ----------------------------------------------- */
/* BODY */
body {
    font-family: Calibri, Helvetica, sans-serif; /* Fallback to Helvetica and sans-serif if Calibri is not available */
    text-align: center; /* Center align text */
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* Light grey color */
}

/*  ----------------------------------------------- */
/* FILTERS */

/* Center-align the filter container */

.filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    justify-content: center;
    align-items: center;
}


/* Style labels for filter inputs */
.filter-inputs {
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;

  }

.filter-input label {
    font-weight: bold;
    margin: 5px 10px 5px 0;

}

.filter-input input {
    padding-right: 20px;
	border-radius:25px;
}

/* Style input fields and selects */
.filter-input input[type="text"],
.filter-input select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

/* Style input fields and selects on focus */
.filter-input input[type="text"]:focus,
.filter-input select:focus {
    border-color: #7c7c7c;
    outline: none;
}

/* Style filter buttons */
.filter-buttons button {
    background-color: #333; /* Dark grey background color */
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Style filter buttons on hover */
.filter-buttons button:hover {
    background-color: #555; /* Darker grey on hover */
    transform: scale(1.05);
}

/* Responsive adjustments for mobile views */
@media (max-width: 768px) {

    .filter-inputs {
        display: flex;
        flex-direction: column;
      }
    
      .filter-inputs label,
      .filter-inputs input,
      .filter-inputs select { /* If you are using <select> elements */
        width: 100%; /* Make input and labels full width */
        margin-bottom: 0.5em; /* Provide some spacing */
      }

    .filter-buttons {
    display: flex; /* Always horizontal */
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping if buttons overflow */
    margin-top: 1em; /* Space between filter inputs and filter buttons */
    }


}



/*  --------------------------------------------------  */
/* GALLERY */

#gallery {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    gap: 10px;
    margin-top: 20px;
}

#gallery .gallery-item {
    width: 100%; /* Full width of the gallery */
    max-width: 600px; /* Maximum width of each item */
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    text-align: center; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
}


#gallery img {
    max-width: 100%; /* Adjust to the width of the gallery item */
    max-height: 90%; /* Set a max height for images */
    border-radius: 4px; /* Rounded corners for images */
}

.responsive-gif {
    width: 100%; /* Make the image width adjust to the container width */
    height: auto; /* Keep the aspect ratio of the image */
    max-height: 90%; /* Set a max height for images */

}

.step-and-style-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.step-name {
    font-weight: bold;
    font-size: 16px;
}

.style-name {
    font-weight: bold;
    color: grey;
    align-items: left;
    font-size: 14px;
}

/* Step Name and Style */
#gallery p {
    margin: 5px 0; /* Space above and below the text */
    font-size: 0.9em; /* Slightly smaller font size */
    text-align: center; /* Center align text */
}


.info {
    font-size: 0.8em; /* Smaller font size */
    color: #555; /* A discrete, darker grey color */
    margin: 5px 0; /* Some margin for spacing */
    line-height: 1.4; /* Adjust line height for readability */
    text-align: center; /* Center align text */
}
.info a {
    color: #007bff; /* A standard link color */
    text-decoration: none; /* Optional: removes underline from links */
}
.info a:hover {
    text-decoration: underline; /* Underline on hover for better user experience */
}

.privacypolicy {
    color: #555; /* A discrete, darker grey color */
    text-align: center; /* Center align text */
}

.container {
    max-width: 800px;
    width: 100%;
    margin: 20px auto; /* Center the container horizontally */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Stack children vertically; change to row for horizontal */
    align-items: flex-start; /* Align items to the start of the container; change as needed */
    justify-content: space-between; /* Adjust spacing between child elements */
    text-align: justify; /* Center align text */
}

.aboutus {
    max-width: 800px;
    width: 100%;
    margin: 20px auto; /* Center the container horizontally */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column; /* Stack children vertically; change to row for horizontal */
    align-items: flex-start; /* Align items to the start of the container; change as needed */
    justify-content: space-between; /* Adjust spacing between child elements */
    text-align: justify; /* Center align text */
}





/* ===============================================================*/
/* SHARE */

.sharing{
    text-align: center;
}
/*social-sharing-buttons*/
.wpjankari-social-wrapper {
    margin: 20px auto;
    font-size: 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    width: 80%;
}

.wpjankari-social-sharing {
    padding: 12px;
    flex: 1;
}

@media only screen and (max-width: 600px) {
    .wpjankari-social-sharing {
        display: inline-block;
    }
}

.wpjankari-social-sharing svg {
    position: relative;
    top: 0.15em;
    display: inline-block;
}

.wpjankari-social-sharing:first-of-type {
    border-radius: 6px 0 0 6px;
}

.wpjankari-social-sharing:last-of-type {
    border-radius: 0 6px 6px 0;
}

.wpjankari-social-facebook {
    fill: #fff;
    background-color: rgba(59, 89, 152, 1);
}

.wpjankari-social-twitter {
    fill: #fff;
    background-color: rgba(29, 161, 242, 1);
}

.wpjankari-social-whatsapp {
    fill: #fff;
    background-color: rgba(37, 211, 102, 1);
}

.wpjankari-social-telegram {
    fill: #fff;
    background-color: rgb(2, 126, 189);
}

.wpjankari-social-reddit {
    fill: #fff;
    background-color: rgba(255, 87, 0, 1);
}

.wpjankari-social-instagram {
    fill: #fff;
    background-color: rgb(55, 0, 71);
}

.footer-social-links {
    list-style: none;
}

.footer-social-links li {
    list-style: none;
    display: inline-block;
    padding: 0;
}

.footer-social-links li a{
    display: inline-block;
}

.footer-social-links li span {
    padding: 0 10px;
}