/* Основные стили для страницы "Сайт в разработке" */

/* Фон страницы */
.page-wrapper {
    min-height: 100vh;
    background: linear-gradient(to bottom right, #1e3a8a, #1e40af, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Основной контейнер */
.content-wrapper {
    max-width: 42rem;
    width: 100%;
    text-align: center;
}

/* Логотип */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 4rem;
    height: 4rem;
    background-color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.logo-icon span {
    color: #1e3a8a;
    font-weight: bold;
    font-size: 1.875rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-title {
    color: white;
    font-weight: bold;
    font-size: 1.875rem;
    line-height: 1.2;
}

.logo-subtitle {
    color: #bfdbfe;
    font-size: 0.875rem;
}

/* Иконка с анимацией */
.icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.icon-container {
    position: relative;
}

.icon-circle {
    width: 8rem;
    height: 8rem;
    background-color: rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(96, 165, 250, 0.3);
}

.icon-circle svg {
    width: 4rem;
    height: 4rem;
    color: white;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.icon-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid rgba(96, 165, 250, 0.2);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Заголовки */
.main-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.25rem;
    color: #dbeafe;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Разделитель */
.divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, transparent, #60a5fa, transparent);
    margin: 0 auto 2.5rem;
}

/* Карточка с контактами */
.contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: grid;
    gap: 1.5rem;
    text-align: left;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-title {
        font-size: 3.75rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}

/* Контактные элементы */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #dbeafe;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item:hover {
    color: white;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(37, 99, 235, 0.3);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.contact-item:hover .contact-icon {
    background-color: rgba(37, 99, 235, 0.5);
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-label {
    font-size: 0.875rem;
    color: #93c5fd;
}

.contact-value {
    font-weight: 600;
}

/* Социальные сети */
.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-text {
    color: #bfdbfe;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.social-link.whatsapp {
    background-color: #22c55e;
}

.social-link.whatsapp:hover {
    background-color: #16a34a;
}

.social-link.telegram {
    background-color: #3b82f6;
}

.social-link.telegram:hover {
    background-color: #2563eb;
}

.social-link svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

/* Футер */
.footer {
    color: #93c5fd;
    font-size: 0.875rem;
}

/* Декоративные элементы фона */
.decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.decoration-circle-1 {
    position: absolute;
    top: 5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.decoration-circle-2 {
    position: absolute;
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.decoration-circle-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 37.5rem;
    height: 37.5rem;
    background-color: rgba(37, 99, 235, 0.05);
    border-radius: 50%;
    filter: blur(60px);
}

/* Анимации */
@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}