/********** Brand Colors **********/
:root {
    --primary: #6BA6A9;       /* Primary Button / Main Accent */
    --secondary: #B97A56;     /* Secondary Button / Accent Elements */
    --light: #F4E8D1;         /* Former Page Background (kept for accents if needed) */
    --dark: #4A3728;          /* Heading Text */
    --body: #3F704D;          /* Body Text */
    --accent: #4F9CA3;        /* Accent Elements / Highlights */
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/* Spacing Utilities */
.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Background pattern */
.bg-icon {
    background: url(../img/bg-icon.png) center center repeat;
    background-size: contain;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    border-radius: 8px;
}

.btn.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

.btn.btn-primary:hover {
    background-color: #5A8E8F;
    border-color: #5A8E8F;
}

.btn.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #FFFFFF;
}

.btn.btn-secondary:hover {
    background-color: #A3694A;
    border-color: #A3694A;
}

.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

/* Button sizes */
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    background: var(--primary);
    color: #FFFFFF;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--body);
    font-weight: 500;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--accent);
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 8px solid var(--primary);
    border-radius: 3rem;
}

/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}

/*** Product ***/
.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border-radius: 10px;
    overflow: hidden;
}

.product-item img {
    transition: .5s;
    border-bottom: 3px solid var(--accent);
}

.product-item:hover img {
    transform: scale(1.08);
}

.product-item small a:hover {
    color: var(--accent) !important;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

/*** Footer ***/
.footer {
    color: var(--body);
}

.footer .btn.btn-link {
    color: var(--accent);
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--secondary);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
}

/* Body Text */
body, p, li, small {
    color: var(--body);
   
}
