/*
Theme Name: Printabook Premium
Theme URI: 
Author: 
Author URI: 
Description: Премиальный дизайн для сервисного центра
Version: 4.0
License: 
Text Domain: printabook
*/

/* Шрифты */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Плавная прокрутка для якорей */
html {
    scroll-behavior: smooth;
}

:root {
    --primary: #0A2540;
    --primary-light: #1A3A5F;
    --secondary: #4A6FA5;
    --accent: #C4A484;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-muted: #6B6B6B;
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(255, 255, 255, 0.9);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Типографика */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-title span {
    color: var(--primary);
    position: relative;
}

.section-title.light {
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* Кнопки */
.button {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s;
    z-index: -1;
}

.button:hover::before {
    left: 0;
}

.button--primary {
    background: var(--primary);
    color: var(--text-light);
}

.button--primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.button--outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.button--outline:hover {
    background: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.button--dark {
    background: var(--text-dark);
    color: var(--text-light);
}

.button--small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.button--large {
    padding: 16px 36px;
    font-size: 1rem;
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    text-decoration: none;
}

.logo__text {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo__slogan {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 4px;
}

.header__contacts {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header__phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -0.3px;
}

.header__phone:hover {
    color: var(--primary-light);
    transform: translateY(-1px);
}

.header__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.header__social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Hero секция - исправленная */
.hero {
    height: 85vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-light);
    margin-top: 80px;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero__container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__content {
    max-width: 650px;
    text-align: left;
}

.hero__badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero__title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.hero__title span {
    display: block;
    font-weight: 300;
    font-size: 1.8rem;
    margin-top: 5px;
    opacity: 0.9;
}

.hero__text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 500px;
    font-weight: 300;
}

.hero__stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.hero__stat-number::after {
    content: '+';
    margin-left: 2px;
}

.hero__stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Секция услуг с фото в карточках */
.services {
    padding: 80px 0;
    background: #F9F9F9;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.service-card__image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}

.service-card__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3));
}

.service-card__content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card__price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin: 15px 0;
}

.service-card__price small {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.service-card__desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

.service-card__features {
    list-style: none;
    margin: 20px 0;
}

.service-card__features li {
    padding: 5px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card__features li::before {
    content: '—';
    color: var(--primary);
}

.service-card__link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    margin-top: auto;
}

.service-card__link:hover {
    gap: 10px;
    color: var(--primary-light);
}

/* Секция с фоновым изображением */
.about {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.about__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    object-fit: cover;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__content {
    padding-right: 40px;
}

.about__title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about__text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about__list {
    list-style: none;
    margin-bottom: 40px;
}

.about__list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.about__list li::before {
    content: '—';
    color: var(--accent);
}

.about__image {
    height: 500px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.2);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.about__stat {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.about__stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.about__stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Процесс работы */
.process {
    padding: 80px 0;
    background: white;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.process-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 30px;
    right: -20px;
    font-size: 1.5rem;
    color: var(--text-muted);
    opacity: 0.3;
}

.step__number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(10, 37, 64, 0.1);
}

.step__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.step__desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Контакты */
.contacts {
    padding: 80px 0;
    background: #F9F9F9;
}

.contacts__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    padding: 60px;
    box-shadow: var(--shadow);
}

.contacts__info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contacts__address {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: normal;
}

.contacts__list {
    list-style: none;
}

.contacts__list li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contacts__list strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    min-width: 100px;
}

.contacts__list a,
.contacts__list span {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.contacts__list a:hover {
    color: var(--primary);
}

.contacts__social {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.contacts__social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.contacts__social-link:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contacts__map {
    height: 400px;
    background: #E5E5E5;
    position: relative;
    overflow: hidden;
}

.contacts__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contacts__map-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow);
}

.contacts__map-overlay p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contacts__map-overlay strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

/* Футер */
.footer {
    background: var(--primary);
    color: white;
    padding: 60px 0 30px;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer__links a:hover {
    color: white;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .hero__title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .header__social {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: 500px;
        padding: 100px 0 60px;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__title span {
        font-size: 1.4rem;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .about__grid,
    .contacts__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process__grid {
        grid-template-columns: 1fr;
    }
    
    .hero__stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer__container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .contacts__container {
        padding: 30px;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
    }
    
    .about__image {
        height: 350px;
    }
    
    .contacts__list li {
        flex-direction: column;
        gap: 5px;
    }
     .logo {
            max-width: 185px;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__content,
.service-card,
.about__content,
.contacts__info {
    animation: fadeIn 1s ease-out;
}









/* Telegram */
a[href*="t.me"] {
    color: #2AABEE;
}

/* Viber */
a[href*="viber"] {
    color: #7360F2;
}

.soc-seti {
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.soc-seti:hover {
    opacity: 0.75;
}
