/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5rem;
}

/* Buttons */
.consultation-btn {
    background-color: #c9a95b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.consultation-btn:hover {
    background-color: #b08d3e;
}

.consultation-btn.large {
    padding: 15px 30px;
    font-size: 1.1rem;
    display: block;
    margin: 40px auto;
    max-width: 300px;
}

.more-btn {
    background-color: transparent;
    color: #c9a95b;
    border: 2px solid #c9a95b;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 15px;
}

.more-btn:hover {
    background-color: #c9a95b;
    color: white;
}

/* Header */
.header {
    background-color: #1a2650;
    color: white;
    height: 90px; /* Фиксированная высота вместо padding */
    padding: 0; /* Убираем padding сверху и снизу */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Контейнер на всю высоту header */
}

.logo img {
    height: 100px; /* Увеличено с 50px до 70px */
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a.active:after,
.main-nav a:hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c9a95b;
}

.social-icons a {
    margin-left: 15px;
    font-size: 18px;
}

/* Hero section */
.hero {
    position: relative;
    height: 600px;
    color: white;
    overflow: hidden;
    padding-top: 90px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center; /* Фокус на правую часть изображения, чтобы лицо не обрезалось */
}

.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-text-overlay .container {
    margin-left: 10%;
    width: 50%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    text-align: left;
}

.hero p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    text-align: left;
}

/* Services section */
.services {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #1a2650;
    color: white;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px;
    text-align: center;
    font-size: 1.1rem;
}

/* About section */
.about {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
}

.stats {
    display: flex;
    margin-top: 40px;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a95b;
}

.stat-desc {
    font-size: 1rem;
}

/* Practice section */
.practice {
    padding: 80px 0;
}

.practice-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.practice-text {
    flex: 1;
}

.practice-image {
    flex: 1;
}

.practice-image img {
    border-radius: 10px;
}

/* Divorce section */
.divorce {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.divorce-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.divorce-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.divorce-image img {
    max-width: 300px;
}

.divorce-text {
    flex: 1;
}

.divorce-text h2 {
    text-align: left;
}

/* Testimonials section */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.testimonial {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.client-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.client-position {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-text {
    flex-grow: 1;
}

/* Consultations section */
.consultations {
    padding: 80px 0;
    background-color: #1a2650;
    color: white;
}

.consultations h2 {
    color: white;
}

.consultations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.consultation-category {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
}

.consultation-category h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.consultation-category h3 i {
    margin-right: 10px;
    color: #c9a95b;
}

.consultation-category ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.consultation-category ul li:before {
    content: '•';
    color: #c9a95b;
    position: absolute;
    left: 0;
}

/* Blog section */
.blog {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 0.9rem;
    color: #777;
}

/* Instagram section */
.instagram {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.instagram-item {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.instagram-item:hover img {
    transform: scale(1.1);
}


.service-img {
    height: 150px;
    overflow: hidden;
    text-align: center;
    padding-top: 30px; /* Large top padding to push content down */
}

.service-img img {
    max-height: 100%;
    width: auto;
}

/* Footer */
.footer {
    background-color: #1a2650;
    color: white;
    padding: 30px 0;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .logo img {
    height: 70px;
}


/* Стили для скрытого текста */
.hidden-text {
    display: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hidden-text.visible {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.hidden-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.hidden-text li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.hidden-text li:before {
    content: '•';
    color: #c9a95b;
    position: absolute;
    left: 0;
}

.hidden-text p {
    margin-bottom: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .services-grid, .testimonials-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .main-nav, .social-icons {
        margin: 15px 0;
    }

    .about-content, .practice-content, .divorce-content {
        flex-direction: column;
    }

     .hero {
        height: auto; /* Позволяет контейнеру подстраиваться под содержимое */
        min-height: 590px; /* Увеличиваем для компенсации header */
        padding-top: 0;
        margin-top: 0; /* Убираем margin */
    }

    .hero-image {
        min-height: 590px; /* Включаем высоту header */
    }

    .hero-image img {
        object-position: 70% center; /* Смещаем фокус для мобильных устройств */
        min-height: 590px; /* Включаем высоту header */
    }

    .hero-text-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.3) 100%);
        min-height: 590px; /* Включаем высоту header */
        padding-top: 90px; /* Отступ для header внутри overlay */
    }

    .hero-text-overlay .container {
        margin-left: 5%;
        width: 90%;
        padding: 30px 15px; /* Увеличиваем вертикальные отступы */
    }

    .hero h1 {
        font-size: 1.8rem; /* Уменьшаем размер заголовка */
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9); /* Усиливаем тень для лучшей читаемости */
    }

    .hero p {
        font-size: 1rem; /* Уменьшаем размер текста */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9); /* Усиливаем тень для лучшей читаемости */
    }


    .consultations-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-content > div {
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .services-grid, .testimonials-grid, .blog-grid, .instagram-grid {
        grid-template-columns: 1fr;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .main-nav li {
        margin: 10px 0;
    }
}
@media (max-width: 480px) {
    .hero {
        min-height: 540px; /* Включаем высоту header */
    }

    .hero-image {
        min-height: 540px;
    }

    .hero-image img {
        object-position: 75% center; /* Еще сильнее смещаем фокус */
        min-height: 540px;
    }

    .hero-text-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.35) 100%);
        min-height: 540px;
        padding-top: 90px; /* Отступ для header */
    }

    .hero-text-overlay .container {
        padding: 25px 10px;
    }

    .hero h1 {
        font-size: 1.5rem;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.95);
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 0.9rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.95);
    }
}

/* Consultation pages styles */
.consultation-container {
    padding-top: 120px; /* Add space after fixed header */
    padding-bottom: 40px;
}

.consultation-page {
    max-width: 900px;
    margin: 0 auto;
}

.consultation-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-description {
    font-size: 1rem;
    line-height: 1.8;
}

.important-note {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #c9a95b;
    margin: 25px 0;
    border-radius: 5px;
}

.important-note h3 {
    color: #c9a95b;
    margin-bottom: 15px;
}

.important-note ul {
    margin-left: 20px;
    list-style: disc;
}

.important-note li {
    margin-bottom: 8px;
}

.contact-info {
    background: #1a2650;
    color: white;
    padding: 20px;
    border-radius: 5px;
    margin: 25px 0;
}

.contact-info h3 {
    color: #c9a95b;
    margin-bottom: 15px;
}

.contact-info a {
    color: #c9a95b;
    text-decoration: underline;
}

.contact-info a:hover {
    color: white;
}

/* Mobile responsive styles for contact-info */
@media (max-width: 768px) {
    .contact-info {
        padding: 25px 15px;
        margin: 25px -15px;
        border-radius: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .contact-info p {
        word-break: break-all;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .contact-info a {
        word-break: break-all;
        display: inline-block;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: 20px 10px;
        font-size: 0.9rem;
    }

    .contact-info h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
}

/* ========================================
   Swiper Carousel для мобильной версии
   ======================================== */

/* По умолчанию: показываем desktop версию, скрываем карусель */
.consultations-desktop {
    display: grid !important;
}

.consultations-carousel {
    display: none !important;
}

/* На мобильных устройствах: скрываем desktop, показываем карусель */
@media (max-width: 768px) {
    .consultations-desktop {
        display: none !important;
    }

    .consultations-carousel {
        display: block !important;
        width: 100%;
        padding-bottom: 50px;
    }

    .consultations-carousel .swiper-slide {
        display: flex;
        align-items: stretch;
        justify-content: center;
        padding: 0 10px;
    }

    .consultations-carousel .consultation-category {
        width: 100%;
        height: auto;
        min-height: 400px;
    }

    /* Стили для точек навигации */
    .consultations-carousel .swiper-pagination {
        bottom: 10px;
    }

    .consultations-carousel .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #fff;
        opacity: 0.5;
        margin: 0 6px;
    }

    .consultations-carousel .swiper-pagination-bullet-active {
        opacity: 1;
        background: #d4af37;
    }
}

/* ========================================
   Instagram Carousel для мобильной версии
   ======================================== */

/* По умолчанию: показываем desktop версию, скрываем карусель */
.instagram-desktop {
    display: grid !important;
}

.instagram-carousel {
    display: none !important;
}

/* На мобильных устройствах: скрываем desktop, показываем карусель */
@media (max-width: 768px) {
    .instagram-desktop {
        display: none !important;
    }

    .instagram-carousel {
        display: block !important;
        width: 100%;
        padding-bottom: 50px;
    }

    .instagram-carousel .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .instagram-carousel .instagram-item {
        width: 100%;
        height: 100%;
    }

    .instagram-carousel .instagram-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Стили для точек навигации Instagram */
    .instagram-carousel .swiper-pagination {
        bottom: 10px;
    }

    .instagram-carousel .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #fff;
        opacity: 0.5;
        margin: 0 5px;
    }

    .instagram-carousel .swiper-pagination-bullet-active {
        opacity: 1;
        background: #e1306c; /* Instagram розовый цвет */
    }
}