/*******************************/
/********* General CSS *********/

:root {
    --primary-color: #D4B483; /* Warm Gold */
    --secondary-color: #145A32; /* Deep Dark Green */
    --text-color: #111111; /* Dark Gray for text */
    --heading-color: #145A32; /* Deep Dark Green for headings */
    --link-color: #111111; /* Dark Gray for links */
    --link-hover-color: #D4B483; /* Warm Gold for link hover */
    --background-color: #FFFFFF; /* White for background */
    --container-background-color: #F7F7F7; /* Light Gray for container background */
    --section-background-color: #EFEFEF; /* Very Light Gray for section background */
    --divider-color: #E1E1E1; /* Light Gray for dividers */
    --text-muted-color: #9E9E9E; /* Medium Gray for muted text */
    --text-dark-color: #484848; /* Dark Gray for dark text */
    --inactive-text-color: #7B7B7B; /* Medium Gray for inactive text */
    --icon-color: #145A32; /* Deep Dark Green for icons */
    --icon-hover-color: #D4B483; /* Warm Gold for icon hover */
    --background-pastel: #EDEDED; /* Pastel background color */
}

/*******************************/
body {
    color: var(--text-dark-color);
    background: var(--background-color);
    font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
}

a {
    color: var(--link-color);
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: var(--link-hover-color);
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--primary-color);
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    background: var(--secondary-color);
}

.back-to-top:hover i {
    color: var(--primary-color);
}

.back-to-top i {
    color: var(--icon-color);
    padding-top: 10px;
}


/**********************************/
/********** Nav Bar CSS ***********/
/**********************************/
.navbar {
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
    z-index: 999;
    padding: 0;
}

.navbar .navbar-brand {
    margin: 0;
    color: var(--primary-color);
    font-size: 35px;
    line-height: 0px;
    font-weight: 600;
}

.navbar .navbar-brand span {
    font-weight: 800;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

/* Flexbox alignment for navbar sections */
.navbar .navbar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.navbar .navbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar .social {
    display: flex;
    height: 60px;
    font-size: 0;
    justify-content: flex-end;
}

.navbar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    font-size: 22px;
    color: var(--background-color);
}

.navbar .social a:hover {
    color: var(--primary-color);
    background: var(--background-color);
}

/* Navbar link styles */
.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: var(--background-color);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    background: rgba(256, 256, 256, .1);
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: var(--container-background-color);
}

@media (min-width: 992px) {
    .navbar {
        padding: 10px 60px;
        background: var(--secondary-color) !important;
    }

    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 15px;
        background: var(--secondary-color) !important;
    }

    .navbar a.nav-link {
        padding: 5px;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    padding: 25px 0px 13px 0px;
    text-align: center;
    background: var(--primary-color);
}

.page-header h2 {
    position: relative;
    color: var(--secondary-color);
    font-size: 60px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .page-header h2 {
        font-size: 35px;
    }

    .page-header a {
        font-size: 18px;
    }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 0px;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}

/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    height: 100%;
    margin: 60px 0 0 60px;
}

.about .about-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about .about-img::before {
    position: absolute;
    content: "";
    top: -60px;
    right: 60px;
    bottom: 60px;
    left: -60px;
    background: var(--secondary-color);
    z-index: 0;
}

.about .about-img::after {
    position: absolute;
    content: "";
    top: -30px;
    right: 30px;
    bottom: 30px;
    left: -30px;
    background: transparent;
    border: 1px solid var(--background-color);
    z-index: 2;
}

.about .about-text p {
    font-size: 16px;
}

/*******************************/
/********* Service CSS *********/
/*******************************/
.service-brief {
    position: relative;
    width: 100%;
    padding: 45px 0 0px 0;
}

.service-brief .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    background: var(--container-background-color);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.service-brief .service-item:last-child {
    margin-bottom: 0;
}

.service-brief .service-item a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 0;
    background: none;
    transition: .3s;
}

.service-brief .service-item a.btn:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.service-brief .service-img {
    margin-bottom: 30px;
    height: auto;
}


/*******************************/
/******** Team Brief CSS *******/
/*******************************/
.team-brief {
    position: relative;
    width: 100%;
    padding: 45px 0 0px 0;
}

.team-brief .team-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 0px;
    background: var(--container-background-color);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.team-brief .team-item a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 0;
    background: none;
    transition: .3s;
}

.team-brief .team-item a.btn:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.team-brief .team-img {
    margin-bottom: 30px;
    height: auto;
}


/*******************************/
/********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 0px 0;
}

.team .team-frame-img {
    position: relative;
    height: 100%;
    margin: 40px 0 0 40px;
}

.team .team-frame-img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.team .team-frame-img::before {
    position: absolute;
    content: "";
    top: -40px;
    right: 40px;
    bottom: 40px;
    left: -40px;
    background: var(--secondary-color);
    z-index: 0;
}

.team .team-frame-img::after {
    position: absolute;
    content: "";
    top: -20px;
    right: 20px;
    bottom: 20px;
    left: -20px;
    background: transparent;
    border: 1px solid var(--background-color);
    z-index: 2;
}

.team .team-img {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: hidden;    
}

.team .team-img img {
    position: relative;
    width: 100%;
    height: 100%;    
    object-fit: cover;
    
}


.team .team-intro p {
    font-size: 16px;
}

/*******************************/
/********* Pricing CSS *********/
/*******************************/
.price {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.price .price-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    background: rgba(29, 36, 52, .04);
    transition: .3s;
    cursor: pointer;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking of content */
}

.price .price-item:hover {
    background: rgba(29, 36, 52, .1); /* Highlight on hover */
}

.price .price-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}

.price .price-img {
    position: relative;
    width: 100px;
}

.price .price-img img {
    width: 100%;
}

.price .price-img::after {
    position: absolute;
    content: "";
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    background: transparent;
    border: 1px solid var(--background-color);
    z-index: 1;
}

.price .price-text {
    position: relative;
    padding: 0 15px;
    width: calc(100% - 100px);
    overflow: hidden;
    display: flex; /* Add flexbox to manage the layout */
    flex-direction: column; /* Ensure items are stacked vertically */
}

.price .price-text h2 {
    position: relative;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.price .price-text h3 {
    position: relative;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.price .price-text h3 span {
    font-weight: 600;
    margin-right: 5px;
}

.price .price-text h3 i {
    margin-left: 5px;
}

.price .description {
    display: none;
    padding: 15px;
    background-color: rgba(29, 36, 52, .1); /* Slight background for description */
    border-top: 1px solid rgba(29, 36, 52, .2); /* Border between content and description */
}

.price .price-item.active .description {
    display: block; /* Show the description of the selected item */
}


/*******************************/
/********** Intro CSS **********/
/*******************************/
.intro {
    position: relative;
    margin: -2px 0;
    padding: 50px 0;
    background: linear-gradient(rgba(29, 36, 52, 1), rgba(29, 36, 52, .5), rgba(29, 36, 52, 1)), url(../img/background_salon.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro .container {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.intro .about-text {
    text-align: center;
    margin-bottom: 30px;
}

.intro .intro-carousel {
    position: relative;
    width: 100%;
}

.intro .intro-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
}

.intro .intro-item img {
    width: 60px;
    border-radius: 60px;
    margin-bottom: 25px;
}

.intro .intro-item p {
    color: var(--background-color);
    font-size: 16px;
    margin-bottom: 20px;
}

.intro .intro-item h2 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.intro .about-text p {
    color: var(--primary-color);
}

.intro .intro-item h3 {
    color: var(--text-muted-color);
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

.intro .owl-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.intro .owl-nav .owl-prev,
.intro .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    font-size: 24px;
    transition: .3s;
    border-radius: 50%;
    margin: 0 10px;
}


.intro .owl-nav .owl-prev:hover,
.intro .owl-nav .owl-next:hover {
    background: var(--secondary-color);
}

/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0 -37px 0;
    padding: 50px 0;
    /* rgba(29, 36, 52, 1) same as --secondary-color */
    background: linear-gradient(rgba(29, 36, 52, 1), rgba(29, 36, 52, .5), rgba(29, 36, 52, 1)), url(../img/background_salon.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 700px;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: 100%;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.testimonial .testimonial-item img {
    width: 60px;
    border-radius: 60px;
    margin-bottom: 25px;
}

.testimonial .testimonial-item p {
    color: var(--background-color);
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial .testimonial-item h2 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial .about-text p {
    color: var(--primary-color);
}

.testimonial .testimonial-item h3 {
    color: var(--text-muted-color);
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}

.testimonial .owl-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    font-size: 24px;
    transition: .3s;
    border-radius: 50%;
    margin: 0 10px;
}


.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    background: var(--secondary-color);
}



/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0 15px 0;
    background: var(--background-color);
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    background: none;
    border: 2px solid var(--secondary-color);
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.portfolio .portfolio-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    transition: .3s;
}

.portfolio .portfolio-item:hover {
    margin-top: -10px;
}

.portfolio .portfolio-wrap {
    width: 100%;
}

.portfolio .portfolio-wrap a::after {
    position: absolute;
    content: "";
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    background: transparent;
    /*border: 1px solid var(--section-background-color);*/
    transition: .3s;
    z-index: 1;
}

.portfolio .portfolio-wrap:hover a::after {
    border-color: var(--primary-color);
}

.portfolio img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
}


/*******************************/
/********* Location CSS ********/
/*******************************/
.location {
    position: relative;
    width: 100%;
    margin: 35px 0;
    padding-top: 15px;
    background: var(--secondary-color);
}

.location .container {
    background: var(--secondary-color);
}

.location .section-header {
    margin-bottom: 10px;
}

.location .section-header p,
.location .section-header h2 {
    color: var(--primary-color);
}

.location .location-map {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--secondary-color);
}

.location .location-map iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

.location .location-info {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.location .location-info p {
    margin: 0 0 10px;
    color: var(--text-color);
}

@media (max-width: 767.98px) {
    .location .container {
        background: none;
    }

    .location .location-map {
        padding: 20px 0;
    }
}


/*******************************/
/******** Reservation CSS ******/
/*******************************/
.reservation {
    position: relative;
    width: 100%;
    margin: 45px 0;
    padding: 0;
}

.reservation .container {
    height: 100%;
    padding: 0;
}

.reservation .row {
    height: 100%;
    margin: 0;
}

.reservation .col-12 {
    height: 100%;
    padding: 0;
    margin: 0;
}

@media (max-width: 767.98px) {
    .reservation .container {
        background: none;
    }
}

/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********* Education CSS *********/
/*******************************/

.education-intro, 
.education-footer {
    position: relative;
    margin: -2px 0;
    padding: 50px 0;
    background: linear-gradient(rgba(29, 36, 52, 1), rgba(29, 36, 52, .5), rgba(29, 36, 52, 1)), url(../img/background_tepih.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.education-footer { 
    margin: 45px 0 -37px 0;
}

.education-intro .container,
.education-footer .container {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.education-intro .education-item,
.education-footer .education-item {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
}

.education-intro .education-item p,
.education-footer .education-item p {
    color: var(--background-color);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
}

.education-footer .education-item p:last-child {
    margin-bottom: 0px;
}

.education-footer .education-item p a {
    color: var(--background-color);
    font-size: 24px;
    font-weight: 800;    
}

.education-intro .education-item h2,
.education-footer .education-item h2 {
    color: var(--primary-color);
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
}

@media (max-width: 767.98px) {
    .education-intro .education-item h2,
    .education-footer .education-item h2 {
        font-size: 30px;
    }
}


.education {
    position: relative;
    width: 100%;
    padding: 45px 0 0px 0;
}

.education .education-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 0px;
    background: var(--container-background-color);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.education .course-item {
    background: var(--container-background-color);
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    margin-bottom: 20px;

}
.education .course-item:last-child {
    margin-bottom: 0px;
}

.education .course-item h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.education .course-item ul,
.education .education-item ul {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.education .course-item ul li,
.education .education-item ul li {
    margin-bottom: 10px;
}

.education .course-item ul li:last-child,
.education .education-item ul li:last-child {
    margin-bottom: 0px;
}

.education .education-item .education-img {
    margin-bottom: 20px;
    height: auto;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 35px;
    padding-top: 15px;
    background: var(--secondary-color);
    text-align: center; /* Center align content within the footer */
}

.footer .footer-contact {
    position: relative;
    margin-bottom: 35px;
    color: var(--text-muted-color);
}

.footer .footer-contact h2 {
    position: relative;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.footer .footer-contact p {
    margin-bottom: 10px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
    text-align: center; /* Center align social links */
}

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

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: var(--primary-color);
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: var(--text-muted-color);
}

.footer .copyright {
    padding: 0 40px;
}

.footer .copyright .row {
    background: var(--background-color);
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer .copyright p {
    margin: 0;
    color: var(--text-dark-color);
}

.footer .copyright .col-md-6:first-child p {
    text-align: left;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: var(--primary-color);
    font-weight: 700;
}

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

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:first-child p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

.footer .small-text {
    font-size: 11px;
}
