/* =============================================
   NELY BEAUTY SALON - CUSTOM STYLES
   ============================================= */

/* ---- TYPOGRAPHY ---- */
.section-title-elegant {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 42px;
    color: #4b3941;
    margin-bottom: 10px;
}
@media (max-width: 767px) {
    .section-title-elegant {
        font-size: 32px;
    }
}

/* ---- UTILITY ---- */
.max-w700 {
    max-width: 700px;
}
.overflow-hidden {
    overflow: hidden;
}
.h-100 {
    height: 100%;
}
.shadow-sm {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
.rounded {
    border-radius: 12px !important;
}

/* ---- TOP BAR ---- */
.top-bar {
    padding: 8px 0;
    font-size: 13px;
}
.top-bar .e-p-bx {
    margin: 0;
    padding: 0;
}
.top-bar .e-p-bx li {
    list-style: none;
}
.top-bar .social-bx {
    margin: 0;
    padding: 0;
}
.top-bar .social-bx li {
    list-style: none;
}
.top-bar .social-bx li a {
    opacity: 0.85;
    transition: opacity 0.3s;
}
.top-bar .social-bx li a:hover {
    opacity: 1;
}

/* ---- NAVIGATION ---- */
.sticky-header .header-nav .nav > li > a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.extra-nav {
    display: flex;
    align-items: center;
    padding: 10px 0;
}
@media (max-width: 991px) {
    .extra-nav .site-button {
        font-size: 12px;
        padding: 8px 15px;
    }
}

/* ---- ABOUT SECTION ---- */
.about-salon-text .d-flex {
    transition: transform 0.3s ease;
}
.about-salon-text .d-flex:hover {
    transform: translateX(5px);
}

/* ---- SERVICE CARDS ---- */
.service-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.service-card-featured {
    border: 2px solid #EC5598;
    position: relative;
}
.service-card-featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 15px;
    right: -8px;
    background: #EC5598;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    letter-spacing: 1px;
    border-radius: 3px 0 0 3px;
}
.service-list li {
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #555;
}
.service-list li:last-child {
    border-bottom: none;
}
.service-list li .fa-check {
    font-size: 12px;
}

/* ---- WHY CHOOSE US ---- */
.why-choose-card {
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.why-choose-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

/* ---- GALLERY ---- */
.gallery-item {
    position: relative;
    border-radius: 12px;
    cursor: pointer;
}
.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(236, 85, 152, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay-inner {
    text-align: center;
}
.gallery-overlay-inner span[class^="flaticon-"]::before {
    font-size: 48px;
}

/* ---- LOCATION ---- */
.location-info-card {
    border-radius: 12px;
}
.hours-table {
    font-size: 14px;
    line-height: 1.8;
}
.hours-table td {
    padding: 2px 0;
}
.map-container {
    border-radius: 12px;
}
.map-container iframe {
    border-radius: 12px;
}

/* ---- FOOTER ---- */
.footer-links li {
    padding: 5px 0;
}
.footer-links li a {
    color: #777;
    transition: color 0.3s, padding-left 0.3s;
}
.footer-links li a:hover {
    color: #EC5598;
    padding-left: 5px;
}
.footer-contact li span,
.footer-contact li a {
    color: #777;
    line-height: 1.6;
}
.footer-contact li a:hover {
    color: #EC5598;
}

/* ---- CTA SECTION ---- */
.call-to-action-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .call-to-action-right {
        justify-content: center;
        text-align: center;
    }
    .call-to-action-left {
        text-align: center;
        padding-right: 0 !important;
    }
}

/* ---- BG GRAY ---- */
.bg-gray {
    background-color: #f8f5f6;
}

/* ---- SMOOTH SCROLLING ---- */
html {
    scroll-behavior: smooth;
}

/* ---- BUTTON ENHANCEMENTS ---- */
.site-button,
.site-button-secondry {
    transition: all 0.3s ease;
    border-radius: 6px;
}
.site-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 85, 152, 0.3);
}
.site-button-secondry:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 57, 65, 0.3);
}

/* ---- CIRCLE LINE EFFECT CENTERED ---- */
.circle-line-effect.m-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ---- RESPONSIVE FIXES ---- */
@media (max-width: 991px) {
    .header-info {
        display: none;
    }
    .p-r50 {
        padding-right: 15px !important;
    }
}
@media (max-width: 767px) {
    .section-full {
        padding-left: 15px;
        padding-right: 15px;
    }
    .gallery-img {
        height: 220px;
    }
    .location-info-card {
        margin-bottom: 20px;
    }
}
