
   

        /* Навигация для десктопа */
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        
        .nav-desktop a {
            text-decoration: none;
            color: var(--dark-brown);
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s;
        }
        
        .nav-desktop a:hover {
            color: var(--pink-beige);
        }
        
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--pink-beige);
            transition: width 0.3s;
        }
        
        .nav-desktop a:hover::after {
            width: 100%;
        }
        
        /* Бургер меню для мобильных */
        .nav-mobile {
            display: none;
            position: relative;
            z-index: 1001;
        }
        
        .burger-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--dark-brown);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-menu {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            height: calc(100vh - 70px);
            background-color: rgba(255, 255, 255, 0.98);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 25px;
            transform: translateY(-150%);
            transition: transform 0.4s ease, opacity 0.4s;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
        }
        
        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-menu a {
            text-decoration: none;
            color: var(--dark-brown);
            font-size: 1.5rem;
            font-weight: 500;
            padding: 10px 0;
            transition: color 0.3s;
        }
        
        .mobile-menu a:hover {
            color: var(--pink-beige);
        }

        /* Секции для прокрутки */
      section {
    min-height: 100vh; /* Заменяем height на min-height */
    height: auto; /* Автоматическая высота по контенту */
    padding: 100px 20px;
    position: relative; /* Добавляем позиционирование */
    z-index: 2; /* Поднимаем над фоном */
}

        /* Медиазапросы */
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            
            .nav-mobile {
                display: block;
            }
        }

        body.no-scroll {
            overflow: hidden;
        }
        






    /* Кнопка "Наверх" */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background-color: var(--white);
            color: var(--dark-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 100;
            border: 1px solid rgba(0, 0, 0, 0.1);
            font-size: 1.2rem;
        }
        
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }
        /* Минималистичные стили */
        :root {
            --light-beige: #f9f9f9;
            --white: #ffffff;
            --dark-gray: #333333;
            --light-gray: #888888;
            --accent: #888888;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', 'Arial', sans-serif;
            color: var(--dark-gray);
            background-color: var(--white);
            line-height: 1.6;
            font-weight: 300;
        }
        
        /* Шапка */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--dark-gray);
            text-decoration: none;
            letter-spacing: 1px;
        }
        
        .logo span {
            font-weight: 300;
            color: var(--light-gray);
        }
        
        /* Навигация */
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        
        .nav-desktop a {
            text-decoration: none;
            color: var(--dark-gray);
            font-weight: 300;
            font-size: 1rem;
            position: relative;
            padding: 5px 0;
            transition: color 0.3s;
            letter-spacing: 0.5px;
        }
        
        .nav-desktop a:hover {
            color: var(--light-gray);
        }
        
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--dark-gray);
            transition: width 0.3s;
        }
        
        .nav-desktop a:hover::after {
            width: 100%;
        }
        
        /* Бургер меню */
        .nav-mobile {
            display: none;
        }
        
        /* Главный экран */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 20px;
            background-color: var(--light-beige);
        }
        
        .hero-content {
            max-width: 800px;
        }
        
        .hero h2 {
            font-size: 3.5rem;
            font-weight: 300;
            color: var(--dark-gray);
            margin-bottom: 20px;
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 1.2rem;
            color: var(--light-gray);
            margin-bottom: 10px;
            font-weight: 300;
        }
        
        /* Секции */
        section {
            padding: 120px 20px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            color: var(--dark-gray);
            font-weight: 300;
            letter-spacing: 2px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 1px;
            background-color: var(--dark-gray);
        }
        
        /* Обо мне */
       /* Контейнер с текстом и фото */
.about-content {
    display: flex;
    justify-content: center;
    align-items: stretch; /* растягиваем фото по высоте текста */
    gap: 40px;
}

/* Текст слева */
.about-text {
    flex: 1;
    font-family: "Lora", serif;
    color: #333;
    max-width: 600px; /* сделаем немного уже */
    margin: 0;
    padding: 35px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 22px;
    text-align: justify;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-text strong {
    font-weight: 400;
    color: #222;
    font-style: italic;
}

.about-text p:first-child {
    font-size: 1.2rem;
    font-style: italic;
    color: #444;
}

.highlight {
    font-size: 1.15rem;
    font-style: italic;
    color: #555;
    border-left: 3px solid rgba(0, 0, 0, 0.15);
    padding-left: 18px;
    margin: 35px 0;
    font-weight: 300;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Колонка с фото */
.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1; /* фото занимают столько же ширины, сколько текст */
}

/* Каждое фото — половина высоты блока */
.about-image {
    flex: 1; /* чтобы фото равномерно распределились */
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-height: 250px; /* запас для малых экранов */
}

/* На мобильных фото убираем */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-images {
        display: none;
    }

    .about-text {
        max-width: 100%;
    }
}
        
        /* Портфолио */
        .portfolio {
            background-color: var(--light-beige);
        }
        
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* чтобы не искажалось */
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05); /* лёгкий zoom при наведении */
}

.gallery-category {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-weight: 300;
    font-size: 1rem;
}

        /* Контакты */
        .contact-content {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
      .contact-image-frame {
    height: 400px;
    background-color: #f0f0f0;
    background-image: url('wedding/Фотограф\ Кульбовская\ лого.png'); /* путь к картинке */
    background-size: cover; /* обрезка по блоку */
    background-position: center; /* центрируем */
    border-radius: 12px; /* если нужны скругленные края */
}

        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-info p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            font-weight: 300;
        }
        
        .contact-info i {
            margin-right: 12px;
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
        }
        
        .contact-social {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .instagram-btn {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--dark-gray);
            padding: 12px 20px;
            border: 1px solid var(--dark-gray);
            transition: all 0.3s;
            font-weight: 300;
        }
        
        .instagram-btn i {
            margin-right: 10px;
        }
        
        /* Футер */
        footer {
            background-color: var(--light-beige);
            color: var(--dark-gray);
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .footer-instagram {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .instagram-account {
            text-align: center;
            max-width: 300px;
        }
        
        .instagram-account h3 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            font-weight: 400;
        }
        
        .instagram-account a {
            display: inline-flex;
            align-items: center;
            color: var(--dark-gray);
            text-decoration: none;
            font-size: 1rem;
            margin-bottom: 8px;
            transition: color 0.3s;
            font-weight: 300;
        }
        
        .instagram-account a i {
            margin-right: 8px;
        }
        
        .instagram-account p {
            font-size: 0.9rem;
            opacity: 0.7;
            line-height: 1.6;
            font-weight: 300;
        }
        
        .copyright {
            font-size: 0.9rem;
            opacity: 0.7;
            font-weight: 300;
        }
        
  
        
        /* Анимации */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Медиазапросы */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.8rem;
            }
            
            .about-images {
                flex-direction: column;
            }
            
            .about-image {
                height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            
            .nav-mobile {
                display: block;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .gallery {
                grid-template-columns: 1fr;
            }
            
            .about-images {
                display: none;
            }
            
            .footer-instagram {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
        }







    /* Переключатель языков */
.lang-switcher {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: transform 0.25s ease, opacity 0.3s;
    opacity: 0.6;
}

.lang-btn img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
}

.lang-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Подсветка выбранного языка */
.lang-btn.active {
    opacity: 1;
    transform: scale(1.15);
}

.lang-btn.active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 38px;
    height: 38px;
    background: rgba(215, 179, 153, 0.25); /* нежный акцент */
    border: 2px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* Мобильный вид */
.nav-mobile .lang-switcher {
    justify-content: center;
    margin-top: 20px;
}
