/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Стили для верхнего меню */
.desktop-header {
    display: block;
    padding: 10px 0;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #eee;
}

.main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
    margin-right: 10px;
}

.logo-text {
    color: #ff6bb6;
    font-weight: bold;
    font-size: 20px;
}

.menu-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex: 2;
}

.menu-links li a {
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
}

.menu-links li a:hover {
    color: #ff6bb6;
}

.phone-number {
    flex: 1;
    text-align: right;
}

.phone-number a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s;
}

.phone-number a:hover {
    color: #ff6bb6;
}

/* Анимация мигания */
@keyframes blink {
    0% { opacity: 1; }
    49% { opacity: 1; }
    50% { opacity: 0; }
    99% { opacity: 0; }
    100% { opacity: 1; }
}

/* Стили для основного контента */
.hero {
    padding: 40px 0;
}

.status-call {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.status {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.status-text {
    margin-right: 10px;
    font-weight: 500;
}

.status-indicator {
    display: block;
    width: 15px;
    height: 15px;
    background-color: #64D31F;
    border-radius: 50%;
    animation: blink 2s infinite;
    cursor: pointer;
}

.call-button {
    display: inline-block;
    background-color: #ff0000;
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.call-button:hover {
    background-color: #e60000;
}

h1 {
    font-size: 32px;
    color: #ff6bb6;
    margin-bottom: 0;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    margin-top: 30px;
}

.text-content {
    flex: 1;
}

.highlight {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    font-style: italic;
    line-height: 1.2;
}

.message {
    margin: 30px 0;
}

.message p {
    font-size: 22px;
    color: #ff69b4;
    margin-bottom: 5px;
    line-height: 1.2;
}

.pleasure {
    font-size: 24px;
    font-weight: bold;
    margin: 30px 0;
}

.image-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: -130px;
}

.top-status {
    margin-bottom: 15px;
}

.girl-image {
    width: 100%;
    border-radius: 5px;
}

/* Стили для видео */
.video-player {
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    cursor: pointer;
    margin: 0 auto;
}

/* Стили для фотографии */
.photo-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* Стили для заполнителей изображений */
.placeholder-image {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.placeholder-text {
    color: #999;
    font-size: 18px;
    text-align: center;
}

/* Мобильная версия контента */
.mobile-content {
    display: none;
}

/* Стили для подвала */
footer {
    background-color: #f9f9f9;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
    text-align: center;
}

.requisites {
    font-size: 14px;
    color: #777;
}

/* Стили для формы обратной связи */
.feedback-form {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.form-description {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #ff69b4;
    outline: none;
}

.submit-button {
    display: block;
    width: 100%;
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #e60000;
}

.form-note {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

/* Стили для мобильного меню */
.mobile-header {
    display: none; /* По умолчанию скрыто, будет показано через медиа-запрос */
    width: 100%;
    padding: 10px 0;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.mobile-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.mobile-header-top .logo {
    flex: 1;
}

.mobile-header-top .logo img {
    max-height: 30px;
}

.mobile-header-top .logo-text {
    font-size: 16px;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
    margin-left: 15px;
    position: relative;
}

.mobile-menu-toggle span {
    display: none;
}

.mobile-menu-toggle.active span {
    display: none;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.mobile-nav.active {
    display: flex;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}

.mobile-menu-links li {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu-links li:last-child {
    border-bottom: none;
}

.mobile-menu-links li a {
    font-size: 16px;
    color: #333;
    transition: color 0.3s;
}

.mobile-menu-links li a:hover {
    color: #ff6bb6;
}

.mobile-phone {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.mobile-phone .call-button {
    width: 80%;
       display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1200px) {
    body {
        padding-top: 0;
    }
    
    .desktop-header {
        display: none !important;
    }
    
    .mobile-header {
        display: block !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mobile-nav {
        display: none;
    }
    
    .mobile-nav.active {
        display: flex !important;
    }
    
    .desktop-nav, .desktop-status, .content-wrapper {
        display: none !important;
    }
    
    .mobile-content {
        display: block !important;
    }
    
    .mobile-status {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .mobile-call {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .mobile-highlight {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .mobile-video {
        margin-bottom: 20px;
    }
    
    .mobile-message {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .mobile-bottom-status {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
        padding: 0 10px;
    }
    
    /* Стили для мобильного статуса */
    .mobile-status .status {
        margin-right: 0;
    }
    
    .mobile-status .status-text {
        font-size: 18px;
    }
    
    /* Стили для мобильной кнопки звонка */
    .mobile-call .call-button {
        padding: 12px 40px;
        font-size: 18px;
        border-radius: 30px;
    }
    
    /* Стили для мобильного выделенного текста */
    .mobile-highlight p {
        font-size: 20px;
        font-weight: bold;
        font-style: italic;
        line-height: 1.2;
        margin-bottom: 5px;
    }
    
    /* Стили для мобильного видео */
    .mobile-video .video-player {
        width: 100%;
        max-width: 400px;
        display: block;
        margin: 0 auto;
        border-radius: 12px;
    }
    
    .mobile-video .photo-image {
        width: 100%;
        max-width: 400px;
        display: block;
        margin: 0 auto;
    }
    
    /* Стили для мобильного сообщения */
    .mobile-message p {
        font-size: 20px;
        color: #ff69b4;
        margin-bottom: 5px;
        line-height: 1.2;
    }
    
    .mobile-message p:last-child {
        font-size: 22px;
        font-weight: bold;
        color: #333;
        margin-top: 15px;
    }
    
    /* Стили для нижнего статуса */
    .mobile-bottom-status .status-text {
        font-size: 18px;
    }
    
    .mobile-bottom-status .call-button {
        padding: 10px 30px;
        font-size: 16px;
    }
    
    /* Стили для мобильной формы */
    .mobile-form {
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    .mobile-form .feedback-form {
        padding: 20px;
    }
    
    .mobile-form .form-description {
        font-size: 16px;
    }
    
    .mobile-form .form-group input {
        padding: 10px;
    }
    
    .mobile-form .submit-button {
        padding: 10px;
    }
    
    main {
        margin-top: 10px;
    }
}

/* Добавляем отступ для основного контента */
main {
    margin-top: 20px;
}

@media (max-width: 768px) {
    main {
        margin-top: 10px;
    }
} 