/* Fonts and Colors */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    margin: 0;
}

.text-gradient {
    background: linear-gradient(90deg, #ff7eb3, #ff758c, #ff6a6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-to-right {
    background: linear-gradient(90deg, #ff7eb3, #ff758c, #ff6a6a);
    color: white;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.navbar .nav-link {
    color: #333;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ff6a6a;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(90deg, #ff758c, #ff6a6a);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #ff6a6a, #ff758c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Shadows */
.shadow-custom {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.shadow-custom:hover {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-section p {
    font-size: 1.2rem;
}

.hero-section .btn-primary {
    padding: 15px 30px;
    font-size: 1.2rem;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff6a6a;
    text-align: center;
}

/* Cards */
.service-card, .review-card, .news-card, .icon-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover, .review-card:hover, .news-card:hover, .icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}
#faq {
    position: relative;
    padding: 5rem 0;
    background: url('images/faq-bg.jpg') center/cover no-repeat;
    color: white;
}

#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Полупрозрачный фон */
    z-index: 1;
}

#faq .container {
    position: relative;
    z-index: 2;
}

.accordion-item {
    border: none;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.accordion-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 15px;
}

/* Portfolio Images */
#portfolio img {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#portfolio img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Partners */
#partners img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#partners img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
    font-size: 1rem;
}
/* Testimonials Carousel */
#testimonials .carousel-inner {
    padding: 20px 0;
}

#testimonials .carousel-item {
    transition: transform 0.5s ease-in-out;
}

#testimonials .carousel-control-prev-icon, 
#testimonials .carousel-control-next-icon {
    background-color: #ff6a6a;
    border-radius: 50%;
}

/* Team Section */
#team img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#team img:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

#team h5 {
    margin-top: 15px;
    color: #fff;
}

#team p {
    font-size: 0.9rem;
    color: #ddd;
}

/* Special Offers */
#special-offers .offer-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#special-offers .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

#special-offers .offer-card h5 {
    color: #ff6a6a;
    font-weight: bold;
}

#special-offers .offer-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}
footer {
    font-size: 0.9rem;
}

footer .fab, footer .fas {
    transition: color 0.3s ease;
}

footer .fab:hover, footer .fas:hover {
    color: #ff6a6a;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.newsletter-form input {
    border-radius: 25px;
    padding: 10px 15px;
}

.newsletter-form button {
    border-radius: 25px;
}
/* Contact Information Block */
#contact-info {
    font-size: 1.1rem;
}

#contact-info h2 {
    font-size: 2rem;
}

#contact-info .contact-details li {
    font-size: 1.2rem;
    line-height: 1.8;
}

#contact-info .contact-details a {
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact-info .contact-details a:hover {
    color: #ff6a6a;
}

#contact-info .contact-details i {
    font-size: 1.5rem;
    margin-right: 10px;
    color: #ff6a6a;
}

#contact-info form .form-control {
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 1rem;
}

#contact-info form .btn {
    border-radius: 25px;
    font-size: 1.1rem;
}
/* Верхнее меню */
.navbar .btn-primary {
    background: linear-gradient(90deg, #ff758c, #ff6a6a);
    border: none;
    color: white;
}

.navbar .btn-primary:hover {
    background: linear-gradient(90deg, #ff6a6a, #ff758c);
}

.navbar .text-dark {
    font-size: 1rem;
}

.navbar .text-dark:hover {
    color: #ff6a6a;
}

/* Нижнее меню */
.navbar-nav .nav-link {
    font-size: 1.25rem; /* Увеличенный шрифт для пунктов меню */
    color: #333;
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: #ff6a6a;
}

/* Иконки социальных сетей */
.navbar .fs-4 {
    color: #333;
}

.navbar .fs-4:hover {
    color: #ff6a6a;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .navbar .btn-primary {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .navbar .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        text-align: center;
    }

    .navbar .fs-4 {
        margin: 5px 0;
    }
}
#statistics {
    position: relative;
    background: url('images/salon-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 5rem 0;
}

#statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный слой */
    z-index: 1;
}

#statistics .container {
    position: relative;
    z-index: 2;
}

.stat-card {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.text-gradient {
    background: linear-gradient(90deg, #ff758c, #ff6a6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#contact-offer {
    background: linear-gradient(90deg, #ff758c, #ff6a6a);
    color: white;
    padding: 5rem 0;
}

#contact-offer .form-label {
    font-weight: bold;
}

#contact-offer .form-control {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#contact-offer .btn-primary {
    background: linear-gradient(90deg, #ff6a6a, #ff758c);
    border: none;
}

#contact-offer .btn-primary:hover {
    background: linear-gradient(90deg, #ff758c, #ff6a6a);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* Equal Height Service Cards */
.service-card {
    height: 100%; /* Ensures all cards stretch equally */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card img {
    border: 3px solid #ddd;
    transition: transform 0.3s ease;
}

.service-card img:hover {
    transform: scale(1.1);
}

.service-card h5 {
    margin-top: 10px;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-card .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-card .btn:hover {
    transform: translateY(-3px);
}
#cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #343a40;
            color: #fff;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1050;
            animation: slide-up 0.5s ease-in-out;
        }

        @keyframes slide-up {
            from {
                transform: translateY(100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .btn-cookie {
            font-size: 14px;
            padding: 5px 10px;
        }