/* =========================
   Angel White – Luxury Palette
   Primary (Champagne Gold): #C9A24D
   Text (Charcoal):          #1C1B1A
   Background (Warm White):  #FAF8F3
   Sections (Soft Ivory):    #F3EFE6
   ========================= */

/* Override Bootstrap theme vars (works even if Bootstrap is loaded before) */


/* ===== Force Primary color (Gold) everywhere ===== */
:root{
  --bs-primary: #C9A24D !important;
  --bs-secondary: #1C1B1A !important;
  --bs-light: #FAF8F3 !important;
  --bs-dark: #1C1B1A !important;
}

/* Ensure bootstrap utility uses gold */
.text-primary{ color:#C9A24D !important; }
.border-primary{ border-color:#C9A24D !important; }
.bg-primary{ background-color:#C9A24D !important; }

/* If you used bootstrap 5 rgb var in some places */
.text-primary,
.link-primary{
  color:#C9A24D !important;
}



:root{
    --bs-primary: #C9A24D;     /* Gold */
    --bs-secondary: #1C1B1A;   /* Charcoal */
    --bs-light: #FAF8F3;       /* Warm White */
    --bs-dark: #1C1B1A;        /* Charcoal */
    --bs-body-bg: #FAF8F3;
    --bs-body-color: #1C1B1A;

    --aw-ivory: #F3EFE6;
    --aw-border: rgba(28,27,26,.10);
    --aw-shadow: 0 12px 35px rgba(28,27,26,.08);
}

html, body{
    background: var(--bs-light);
    color: var(--bs-body-color);
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-secondary);
}
.back-to-top:hover{
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: var(--bs-light);
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square { width: 32px; height: 32px; }
.btn-sm-square { width: 34px; height: 34px; }
.btn-md-square { width: 44px; height: 44px; }
.btn-lg-square { width: 56px; height: 56px; }

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-primary{
    background: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}
.btn-primary:hover{
    background: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
    color: var(--bs-light) !important;
}

.btn-outline-primary{
    border-color: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}
.btn-outline-primary:hover{
    background: var(--bs-primary) !important;
    color: var(--bs-secondary) !important;
}

.btn-primary-outline-0 {
    border: 0;
    color: var(--bs-secondary) !important;
}

.btn-light-outline-0 {
    border: 0;
    color: var(--bs-primary) !important;
}

.btn-primary-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-light) !important;
}

.btn-light-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-light) !important;
}
/*** Button End ***/


/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-light);
}

/* Topbar should be Charcoal (luxury) */
.topbar {
    padding: 10px 0;
    background: var(--bs-secondary) !important;
}
.topbar a,
.topbar span,
.topbar i{
    color: rgba(250,248,243,.92) !important;
}
.topbar .text-primary{
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.navbar{
    background: var(--bs-light) !important;
}

.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
    color: rgba(28,27,26,.85);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu{
    background: var(--aw-ivory) !important;
    border: 1px solid var(--aw-border) !important;
}

.dropdown .dropdown-menu a:hover {
    background: rgba(201,162,77,.18);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--aw-ivory) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

#searchModal .modal-content {
    background: rgba(250, 248, 243, .85);
}
/*** Navbar End ***/


/*** Carousel Start ***/
.carousel-item {
    position: relative;
    min-height: 100vh;
}

.carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(250, 248, 243, .55), rgba(250, 248, 243, 0.35));
    background-size: cover;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
    background: transparent;
}

#carouselId .carousel-indicators {
    padding-bottom: 30px;
}

#carouselId .carousel-indicators li {
    border-top: 10px solid var(--bs-light);
    border-bottom: 10px solid var(--bs-light);
    border-right: 5px solid var(--bs-light);
    border-left: 5px solid var(--bs-light);
    margin-right: 10px;
    border-radius: 10px;
    transition: 0.5s;
}

#carouselId .carousel-indicators li.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    border-right: 15px solid var(--bs-primary);
    border-left: 15px solid var(--bs-primary);
}
/*** Carousel End ***/


.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url(../img/home/2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Services Start ***/
.services .services-item {
    transition: 0.5s;
    background: var(--aw-ivory) !important;
    border-color: rgba(201,162,77,.55) !important;
}

.services .services-item:hover {
    background: var(--bs-secondary) !important;
    border-color: var(--bs-primary) !important;
}

.services .services-item:hover .services-content p,
.services .services-item:hover .services-content h3 {
    color: var(--bs-light);
    transition: 0.5s;
}

.services .services-item:hover .services-content a.btn {
    background: var(--bs-primary);
    color: var(--bs-secondary) !important;
    border-color: var(--bs-primary) !important;
}

.services .services-item:hover .services-content a.btn:hover {
    background: var(--bs-light) !important;
    color: var(--bs-secondary) !important;
    border-color: var(--bs-light) !important;
}

.services .services-item .services-img {
    overflow: hidden;
}

.services .services-item .services-img img {
    transition: 0.5s;
}

.services .services-item .services-img img:hover {
    transform: scale(1.3);
}
/*** Services End ***/


/*** About Start ***/
/*** Youtube Video start ***/
.video {
    position: relative;
    padding-right: 70px;
    padding-bottom: 70px;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    margin-left: -35px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: rgba(201,162,77,.45);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-secondary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal { z-index: 99999; }

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** About End ***/


/*** Appointment  Start ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(../img/home/2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.appointment .appointment-form {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, .45));
    object-fit: cover;
    border-radius: 10px;
}

.appointment .appointment-time {
    background: linear-gradient(rgba(250, 248, 243, 0.18), rgba(250, 248, 243, .18));
    object-fit: cover;
    border-radius: 10px;
}
/*** Appointment End ***/


/*** Counter Start ***/
.counter-section .counter-item .counter-content {
    position: relative;
    margin-bottom: 60px;
    background-image: linear-gradient(
        rgba(201,162,77,0.16),
        rgba(243,239,230,0.85),
        rgba(250,248,243,0.85)
    );
    border-radius: 10px;
    z-index: 9;
}

.counter-section .counter-item {
    text-align: center;
    background: rgba(250, 248, 243, .65) !important;
    background: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22));
    object-fit: cover;
    border-radius: 0 25% 0 25%;
}

.counter-section .counter-item .counter-content .svg-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -50px;
    margin-left: -45px;
    transform: rotate(180deg);
}

.counter-section .counter-item .counter-quantity {
    width: 110px;
    height: 110px;
    border-radius: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-secondary);
}
/*** Counter End ***/


/*** Gallery Start ***/
.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}

.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-secondary) !important;
}

.gallery .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-img img {
    transition: 0.5s;
}

.gallery .gallery-img:hover img {
    transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(250, 248, 243, 0.55);
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.gallery .gallery-img .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
    opacity: 1;
}
/*** Gallery End ***/


/*** Pricing Start ***/
.pricing {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("/assets/img/training/8.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing .pricing-item { color: var(--bs-light); }

.pricing .pricing-item .pricing-content {
    background: rgba(250, 248, 243, 0.22);
    border: 1px solid rgba(201,162,77,.25);
}

.pricing .owl-carousel.pricing-carousel {
    position: relative;
}

.pricing .owl-carousel.pricing-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-light);
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev { margin-right: 40px; }

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev:hover,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Pricing End ***/


/*** Team Start ***/
.team .team-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team .team-item .team-text {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.team .team-item .team-social {
    position: absolute;
    top: -180px;
    left: 20px;
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-social {
    top: 20px;
    left: 20px;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    width: 100%;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(28, 27, 26, 0.30);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.team .team-item:hover .team-img::after {
    bottom: 0;
    height: 100%;
}

.team .team-item .team-text { transition: 0.5s; }

.team .team-item:hover .team-text {
    background: var(--bs-secondary);
    color: var(--bs-light);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("/assets/img/home/2.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .testimonial-item {
    background: rgba(28, 27, 26, 0.55);
    border: 1px solid rgba(201,162,77,.20);
}

.testimonial .owl-carousel.testimonial-carousel { position: relative; }

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev { margin-right: 40px; }

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** testimonial end ***/


/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url(../img/home/Angel-White-Logo-on-the-wall-in-the-salon.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact .contact-form {
    background: rgba(250, 248, 243, 0.70);
    border: 1px solid rgba(201,162,77,.20);
}
/*** Contact End ***/


/* ===== Facebook Swiper Theme Fix ===== */
:root{
    --fb-swiper-color: var(--bs-primary);
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev{
    color: var(--fb-swiper-color) !important;
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(250,248,243,.92);
    box-shadow: 0 6px 18px rgba(28,27,26,.14);
    border: 1px solid rgba(201,162,77,.25);
}

.mySwiper .swiper-button-next:after,
.mySwiper .swiper-button-prev:after{
    font-size: 18px;
    font-weight: 700;
}

.mySwiper .swiper-pagination-bullet{
    background: rgba(28,27,26,.25);
    opacity: 1;
}
.mySwiper .swiper-pagination-bullet-active{
    background: var(--fb-swiper-color);
}
/* Facebook End */


/*** footer start ***/
.footer {
    background: var(--bs-secondary);
}

.footer .footer-item a,
.footer .footer-item p {
    color: rgba(250,248,243,.92);
    line-height: 40px;
    font-size: 17px;
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary) !important;
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(250, 248, 243, 0.10);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/


/* Contact top section (luxury look) */
.contact-top{
    background: var(--bs-light);
}

.contact-card{
    background: var(--bs-light);
    border: 1px solid var(--aw-border);
    box-shadow: var(--aw-shadow);
}

.contact-card .form-control{
    border-radius: 14px;
    background: var(--aw-ivory);
    border: 1px solid rgba(28,27,26,.10);
}

.contact-card textarea.form-control{
    border-radius: 18px;
}

.hours-row{
    padding-left: 2px;
    padding-right: 2px;
}


/* Hero */
.aw-hero{
    position: relative;
    min-height: 78vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 70px 0;

    background-image: url("../img/home/2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    overflow: hidden;
}

.aw-hero__overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(
        rgba(28,27,26,0.55),
        rgba(28,27,26,0.62)
    );
}

.aw-hero__content{
    position: relative;
    text-align: center;
    max-width: 920px;
    width: 100%;
}

.aw-hero__kicker{
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgba(250,248,243,0.85);
}

.aw-hero__title{
    color: var(--bs-light);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 10px;
    font-size: clamp(40px, 5vw, 70px);
}

.aw-hero__subtitle{
    color: rgba(250,248,243,0.88);
    font-size: clamp(16px, 1.6vw, 20px);
    margin: 0 auto 28px;
    max-width: 720px;
}

.aw-hero__cta{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap: wrap;
}

/* Trust cards */
.aw-trust__item{
    border: 1px solid rgba(201,162,77,.45);
    border-radius: 14px;
    background: rgba(250,248,243,.95);
    padding: 16px 18px;
    display:flex;
    gap:12px;
    align-items:center;
    height: 100%;
    box-shadow: 0 10px 28px rgba(28,27,26,.06);
}

.aw-trust__item i{
    font-size: 22px;
    color: var(--bs-primary);
}

.aw-trust__label{
    font-weight: 700;
    line-height: 1.2;
    color: var(--bs-secondary);
}

.aw-trust__value{
    opacity: .85;
    font-size: 14px;
    color: rgba(28,27,26,.85);
}

/* Stars: use gold (NOT pink) */
.aw-trust__value .text-warning i{
    color: var(--bs-primary) !important;
}

/* Helpful section background utility (if you use it in blade) */
.aw-soft-ivory{
    background: var(--aw-ivory) !important;
}


/* ===== Navbar CTA Responsive ===== */
.navbar .aw-nav-cta{
  margin-left: 18px;     /* space from menu on desktop */
  flex: 0 0 auto;        /* prevent stretching */
}

.navbar .aw-book-btn{
  width: auto !important;
  min-width: 190px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* When navbar collapses (below xl), CTA becomes full width under menu */
@media (max-width: 1199.98px){
  .navbar .aw-nav-cta{
    width: 100%;
    margin: 12px 0 0 0;
    padding: 0 12px;     /* nice spacing in collapsed menu */
  }
  .navbar .aw-book-btn{
    width: 100% !important;
    min-width: 0;
  }
}
