/* ============================================ */
/* SPB MANICURE - ОСНОВНЫЕ СТИЛИ (CRAVEE)       */
/* ============================================ */

:root {
    --primary: #d4a5a5;
    --primary-dark: #b48585;
    --primary-light: #faf3f0;
    --bg-light: #fdfbf9;
    --text-dark: #3a3a3a;
    --text-muted: #8a8a8a;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
}

/* Шапка */
.site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    margin: 10px 20px;
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.logo-text {
    font-family: 'Poller One', cursive;
    font-size: 24px;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-muted) !important;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poller One', cursive;
}

.display-4 {
    font-family: 'Poller One', cursive;
}

.btn {
    transition: all 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 165, 0.2);
}

.service-card {
    background: white;
    border-radius: 30px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 165, 0.1);
    border-color: var(--primary);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.service-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.form-control,
.form-select {
    border: 1.5px solid #eee;
    background: white;
    padding: 12px 20px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 165, 165, 0.1);
    outline: none;
}

.review-swiper {
    padding-bottom: 50px;
}

.swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

.modal-content {
    border: none;
}

@media (max-width: 768px) {
    .site-header {
        margin: 5px 10px;
        border-radius: 30px;
    }
    .banner-content {
        padding: 30px 20px !important;
    }
    .display-3 {
        font-size: 36px;
    }
    .display-4 {
        font-size: 32px;
    }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card {
    animation: fadeUp 0.5s ease-out forwards;
}

.spinner-border {
    color: var(--primary) !important;
}