/* Inline Styles Replacement CSS
 * This file replaces common inline styles with CSS classes for better performance and maintainability
 */

/* Button Styles - Most common (used 228+ times) */
.btn-primary-custom {
    border-radius: 10px;
    color: rgb(28, 25, 25);
    background: linear-gradient(#b37c31, #f9ecac 57%), rgb(247, 239, 208);
    border-width: 0px;
    font-family: 'Bona Nova', serif;
    box-shadow: 0px 0px 7px;
}

.btn-primary-custom:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Service Card Styles (used 84+ times) */
.service-card-wrapper {
    padding: 10px;
    border-radius: 10px;
    border-width: 0px;
    box-shadow: 0px 0px 6px;
    margin: 6px;
}

/* Ensure service card images have consistent sizing */
.service-card-wrapper img.card-img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    display: block;
}

/* Responsive sizing for mobile */
@media (max-width: 768px) {
    .service-card-wrapper img.card-img {
        height: 200px !important;
    }
}

/* Text Colors */
.text-black {
    color: rgb(0, 0, 0);
}

.text-dark-gray {
    color: rgb(34, 34, 34);
}

.text-footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
}

.text-footer-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* Link Styles */
.link-inherit {
    text-decoration: none;
    color: inherit;
}

.link-inherit:hover {
    text-decoration: underline;
}

/* Text Alignment */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

/* Border Radius */
.rounded-10 {
    border-radius: 10px;
}

.rounded-26 {
    border-radius: 26px;
}

/* Navbar Toggler */
.navbar-toggler-custom {
    border: none;
    padding: 0.25rem 0.5rem;
}

/* Container Styles */
.container-rounded {
    padding-top: 28px;
    padding-bottom: 14px;
    background: #ffffff;
    border-width: 0px;
    border-radius: 41%;
    margin-top: -53px;
    width: 100%;
}

/* Image Styles */
.img-rounded {
    border-radius: 10px;
}

/* Spacing Utilities */
.mt-31 {
    margin-top: 31px;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Background Styles */
.bg-gradient-gold {
    background: linear-gradient(#b37c31, #f9ecac 57%), rgb(247, 239, 208);
}

.bg-white-transparent {
    background: rgba(255, 255, 255, 0.53);
    border-radius: 26px;
    padding: 7px;
}

/* Display Utilities */
.d-block {
    display: block;
}

.d-none {
    display: none;
}

/* Font Styles */
.font-bona-nova {
    font-family: 'Bona Nova', serif;
}

.font-besley {
    font-family: Besley, serif;
}

/* Width Utilities */
.w-auto {
    width: auto;
}

.w-100 {
    width: 100%;
}

/* Box Shadow */
.shadow-sm {
    box-shadow: 0px 0px 6px;
}

.shadow-md {
    box-shadow: 0px 0px 7px;
}

/* Border Styles */
.border-none {
    border: none;
}

.border-0 {
    border-width: 0px;
}

/* Accordion Button */
.accordion-button-custom {
    text-align: left;
}

/* Service Card H2 */
.service-card-h2 {
    color: rgb(34, 34, 34);
}

/* Footer Link Container */
.footer-link-container {
    margin-top: 0.5rem;
}

/* Margin Utilities */
.m-10 {
    margin: 10px;
}

.mt-0 {
    margin-top: 0;
}

.mt-05 {
    margin-top: 0.5rem;
}

.mb-0 {
    margin-bottom: 0;
}

/* Padding Utilities */
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Combined Button with Margin */
.btn-primary-custom-margin {
    border-radius: 10px;
    color: rgb(28, 25, 25);
    background: linear-gradient(#b37c31, #f9ecac 57%), rgb(247, 239, 208);
    border-width: 0px;
    font-family: 'Bona Nova', serif;
    margin: 10px;
    box-shadow: 0px 0px 7px;
}

.btn-primary-custom-margin:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

/* Image with border radius */
.img-rounded-10 {
    border-radius: 10px;
}

/* Service Card with all styles */
.service-card-complete {
    padding: 10px;
    border-radius: 10px;
    border-width: 0px;
    box-shadow: 0px 0px 6px;
    margin: 6px;
}

/* Accordion button styles */
.accordion-button-custom {
    text-align: left;
}

.accordion-body-center {
    text-align: center;
}


/* Additional utility classes */
.mr-8 {
    margin-right: 8px;
}

.bg-light-gray {
    background: #f8f8f8;
}

.bg-light-gray-section {
    background: #f8f8f8;
}
