/* ===== ОБЩИЕ НАСТРОЙКИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== ПОДКЛЮЧЕНИЕ ШРИФТА MIRRA AURIOLIC ===== */
@font-face {
    font-family: 'Mirra Auriolic';
    src: url('fonts/Mirra-Regular.woff2') format('woff2'),
         url('fonts/Mirra-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    background-color: #F9F5EF;
    color: #333333;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, .hero-title, .section-title, .page-title, .logo a {
    font-family: 'Mirra Auriolic', 'Montserrat', cursive;
    text-transform: none;  /* Убираем капс для красоты */
}

/* ===== ШАПКА ===== */
.header {
    background: #5F7A6B;
    border-bottom: 2px solid #E9A4B2;
    width: 100%;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    font-family: 'Mirra Auriolic', 'Montserrat', cursive;
    text-transform: none;
    color: #FEF6E9;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo a:hover {
    color: #E9A4B2;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
    color: #FFFFFF;
    border-bottom-color: #E9A4B2;
}

/* ===== ГЛАВНЫЙ ЭКРАН ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 0 50px;
    background: linear-gradient(135deg, #C7E3C4 0%, #E8DCCB 100%);
    color: #333333;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title .thin {
    font-weight: 300;
    color: #5F7A6B;
}

.hero-title .bold {
    font-weight: 800;
    color: #5F7A6B;
    border-bottom: 3px solid #E9A4B2;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.hero-description {
    font-size: 14px;
    color: #333333;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.profile-photo {
    max-width: 100%;
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 40px rgba(95, 122, 107, 0.15);
    border: 2px solid #E9A4B2;
    transition: all 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.02);
}

/* ===== КНОПКИ (РОЗОВЫЕ С ПУЛЬСАЦИЕЙ) ===== */
.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: left;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn, .btn-services, .gallery-more .btn-services {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: #E9A4B2;
    color: white;
    box-shadow: 0 4px 15px rgba(233, 164, 178, 0.3);
    transition: all 0.3s ease;
    animation: pulseGlow 2.2s ease-in-out infinite;
}

.btn-primary {
    background: #E9A4B2;
    color: white;
}

.btn-outline {
    background: transparent;
    border: 2px solid #E9A4B2;
    color: #E9A4B2;
}

.btn-outline:hover {
    background: #E9A4B2;
    color: white;
}

.btn:hover, .btn-services:hover, .btn-primary:hover {
    background: #d48f9d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 164, 178, 0.3);
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(233, 164, 178, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 15px 35px rgba(233, 164, 178, 0.9);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(233, 164, 178, 0.3);
    }
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.features {
    padding: 80px 0;
    background: #FFFFFF;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #5F7A6B;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #E9A4B2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #F9F5EF;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(95, 122, 107, 0.05);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #E9A4B2;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #5F7A6B;
}

.feature-card p {
    font-size: 14px;
    color: #333333;
    opacity: 0.7;
}

/* ===== ПОДВАЛ ===== */
.footer {
    background: #5F7A6B;
    color: #FFFFFF;
    padding: 30px 0;
    text-align: center;
    border-top: 3px solid #E9A4B2;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #E9A4B2;
}

.footer-links {
    margin-top: 10px;
    font-size: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #E9A4B2;
}

/* ===== СТРАНИЦА КОНТАКТОВ ===== */
.page-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #C7E3C4 0%, #E8DCCB 100%);
    color: #333333;
    text-align: center;
}

.page-title {
    font-size: 42px;
    margin-bottom: 10px;
    letter-spacing: 3px;
    color: #5F7A6B;
}

.page-subtitle {
    font-size: 16px;
    color: #333333;
    letter-spacing: 1px;
    opacity: 0.7;
}

.contact-info {
    padding: 60px 0;
    background: #F9F5EF;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #FFFFFF;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(95, 122, 107, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #E9A4B2;
}

.contact-card h3 {
    font-size: 18px;
    color: #5F7A6B;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E9A4B2;
}

.contact-card p {
    margin: 10px 0;
}

.contact-card a {
    color: #E9A4B2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #d48f9d;
}

.contact-note {
    font-size: 12px;
    color: #333333;
    opacity: 0.6;
    margin-top: 10px;
}

/* ===== ЗАПИСЬ ЧЕРЕЗ CUTY ===== */
.cuty-booking {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #F9F5EF 0%, #FFFFFF 100%);
    border-radius: 30px;
    margin: 30px 0;
    border: 1px solid rgba(233, 164, 178, 0.2);
}

.cuty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(145deg, #5F7A6B, #E9A4B2);
    color: white;
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 15px 30px rgba(233, 164, 178, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.cuty-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cuty-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 45px rgba(233, 164, 178, 0.5);
    background: linear-gradient(145deg, #E9A4B2, #5F7A6B);
    border-color: white;
}

.cuty-button:hover::before {
    left: 100%;
}

.cuty-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
    animation: gentleWiggle 2s ease-in-out infinite;
}

@keyframes gentleWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.cuty-text {
    font-size: 28px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cuty-badge {
    background: #E9A4B2;
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cuty-note {
    color: #333333;
    opacity: 0.7;
    font-size: 16px;
    margin: 20px 0 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cuty-alternative {
    color: #333333;
    opacity: 0.5;
    font-size: 14px;
    margin-top: 15px;
}

.cuty-alternative a {
    color: #E9A4B2;
    text-decoration: none;
    border-bottom: 1px dashed #E9A4B2;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.cuty-alternative a:hover {
    color: #d48f9d;
    border-bottom-color: #d48f9d;
}

/* ===== КАРТА ===== */
.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(95, 122, 107, 0.1);
    border: 3px solid #E9A4B2;
    margin-top: 30px;
}

.map-container iframe {
    display: block;
    vertical-align: middle;
}

/* ===== СТРАНИЦА УСЛУГ (НОВЫЙ ДИЗАЙН) ===== */
.services-intro {
    padding: 0 0 40px;
    background: #F9F5EF;
}

.intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: #4A4A4A;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.6;
    font-size: 16px;
}

.services-section {
    padding: 40px 0;
    background: #F9F5EF;
}

.services-section.light-bg {
    background: #FFFFFF;
}

.services-category-title {
    font-size: 28px;
    color: #5F7A6B;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E9A4B2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.service-item:hover {
    transform: translateX(5px);
}

.service-name {
    font-size: 16px;
    color: #333333;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.5;
    flex: 1;
    padding-right: 20px;
}

.service-price {
    font-size: 18px;
    font-weight: 600;
    color: #E9A4B2;
    white-space: nowrap;
}

.price-note-section {
    padding: 40px 0 60px;
    background: #F9F5EF;
}

.price-note-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(233, 164, 178, 0.1);
    border-radius: 50px;
    color: #4A4A4A;
    text-transform: none;
    letter-spacing: normal;
    font-size: 14px;
    border: 1px solid rgba(233, 164, 178, 0.2);
}

/* ===== СТРАНИЦА ОБО МНЕ ===== */
.about-story {
    padding: 60px 0;
    background: #F9F5EF;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(95, 122, 107, 0.1);
    border: 3px solid #E9A4B2;
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
}

.story-title {
    font-size: 36px;
    color: #5F7A6B;
    margin-bottom: 25px;
}

.story-title .accent {
    color: #E9A4B2;
    padding-bottom: 0;
}

.story-paragraph {
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: normal;
}

.story-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #E9A4B2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #333333;
    opacity: 0.6;
    letter-spacing: 1px;
}

.about-skills {
    padding: 60px 0;
    background: #FFFFFF;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.skill-card {
    text-align: center;
    padding: 30px;
    background: #F9F5EF;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #E9A4B2;
}

.skill-card h3 {
    color: #5F7A6B;
    margin-bottom: 15px;
    font-size: 18px;
}

.skill-card p {
    color: #333333;
    opacity: 0.7;
    font-size: 14px;
}

.about-gallery {
    padding: 60px 0;
    background: #F9F5EF;
}

.gallery-more {
    text-align: center;
    margin-top: 40px;
}

.about-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.about-gallery .gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(95, 122, 107, 0.1);
    border: 2px solid #E9A4B2;
}

.about-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

.about-principles {
    padding: 60px 0;
    background: #5F7A6B;
    color: #FFFFFF;
}

.about-principles .section-title {
    color: #FFFFFF;
}

.about-principles .section-title::after {
    background: #E9A4B2;
}

.principles-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.principle-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.principle-number {
    font-size: 48px;
    font-weight: 800;
    color: #E9A4B2;
    opacity: 0.8;
    min-width: 80px;
    text-align: right;
}

.principle-item p {
    font-size: 18px;
    color: #FFFFFF;
    margin: 0;
}

/* ===== ВАЖНОЕ ПРИМЕЧАНИЕ ===== */
.price-notice {
    text-align: center;
    background: rgba(233, 164, 178, 0.08);
    border-radius: 50px;
    padding: 12px 25px;
    margin: 20px auto 30px;
    max-width: 800px;
    border: 1px solid rgba(233, 164, 178, 0.3);
}

.price-notice-text strong {
    display: inline;
    font-size: 15px;
    color: #E9A4B2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-notice-text span {
    display: inline;
    font-size: 14px;
    color: #333333;
    opacity: 0.7;
    text-transform: none;
    margin-left: 8px;
}

@media (max-width: 768px) {
    .price-notice-text strong,
    .price-notice-text span {
        display: block;
        margin: 3px 0;
    }
}

/* ===== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ ===== */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        height: auto;
        padding: 10px 5px;
    }
    
    .logo {
        margin-bottom: 8px;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    .nav-list {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 5px 0;
        margin: 0;
    }
    
    .nav-list li {
        display: inline-block;
        flex-shrink: 0;
    }
    
    .nav-list a {
        font-size: 12px;
        padding: 6px 8px;
        white-space: nowrap;
        display: block;
    }
    
    .nav-list a[href="services.html"] {
        font-size: 11px;
        padding: 6px 6px;
    }
    
    .hero {
        padding-top: 0px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .profile-photo {
        width: 300px;
        height: 300px;
    }
    
    .features-grid,
    .price-grid,
    .skills-grid,
    .about-gallery .gallery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .price-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .price-value {
        align-self: flex-start;
    }
    
    .page-header {
        padding: 40px 0 30px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .principle-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .principle-number {
        text-align: center;
    }
    
    .cuty-button {
        padding: 15px 30px;
        font-size: 20px;
        flex-wrap: wrap;
    }
    
    .cuty-text {
        font-size: 22px;
    }
    
    .cuty-icon {
        font-size: 28px;
    }
    
    .cuty-badge {
        font-size: 12px;
        padding: 3px 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .service-price {
        align-self: flex-start;
        margin-left: 0;
    }
    
    .services-category-title {
        font-size: 24px;
    }
    
    .intro-text {
        font-size: 14px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }
    
    .btn, .btn-services {
        width: auto !important;
        min-width: 130px !important;
        padding: 10px 15px !important;
        font-size: 13px !important;
        flex: 0 1 auto !important;
    }
    
    .profile-photo {
        width: 250px;
        height: 250px;
    }
    
    .cuty-button {
        padding: 12px 20px;
        font-size: 18px;
    }
    
    .cuty-text {
        font-size: 18px;
    }
    
    .price-notice {
        padding: 10px 15px;
    }
}

@media (max-width: 400px) {
    .nav-list a {
        font-size: 10px;
        padding: 4px 5px;
    }
    
    .nav-list a[href="services.html"] {
        font-size: 9px;
    }
    
    .logo a {
        font-size: 18px;
    }
    
    .btn, .btn-services {
        min-width: 110px !important;
        font-size: 11px !important;
        padding: 8px 10px !important;
    }
}

/* ===== ФИНАЛЬНЫЙ ФИКС ДЛЯ ДОКУМЕНТОВ ===== */
.legal-page,
.agreement-page,
.privacy-page {
    width: 100%;
    overflow-x: hidden;
}

.legal-content {
    max-width: 100% !important;
    padding: 30px 20px !important;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(95, 122, 107, 0.05);
    margin: 20px auto;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

.legal-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #5F7A6B;
    word-break: break-word;
    line-height: 1.3;
}

.legal-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #E9A4B2;
    word-break: break-word;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 15px;
    word-break: break-word;
    text-transform: none;
    letter-spacing: normal;
    opacity: 0.8;
}

.legal-content ul,
.legal-content ol {
    padding-left: 25px;
    margin: 15px 0;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: #5F7A6B;
    font-weight: 600;
}


