/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

.construction-container {
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 30px;
}

.construction-content {
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
    width: 100%;
}

h1 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #667eea;
    width: 20px;
}

.phone-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #667eea;
}

.tenant-btn {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
}

.tenant-btn:hover {
    background: transparent;
    color: #667eea;
    transform: translateY(-2px);
}

.tenant-btn p {
    margin: 0;
    color: white;
}

.tenant-btn:hover p {
    color: #667eea;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
}

.social-links a:hover {
    background: transparent;
    color: #667eea;
    transform: translateY(-3px);
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    body {
        padding: 15px;
        background: #667eea;
    }
    
    .construction-container {
        padding: 20px;
        border-radius: 15px;
        margin: 10px;
    }
    
    .construction-content {
        padding: 15px;
    }
    
    .logo {
        max-width: 150px;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    p {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .contact-info {
        padding: 20px;
        margin: 20px 0;
    }
    
    .contact-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .tenant-btn {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
        margin-top: 15px;
    }
    
    .social-links {
        gap: 15px;
        margin-top: 25px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .construction-container {
        padding: 15px;
    }
    
    .construction-content {
        padding: 10px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .contact-info {
        padding: 15px;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .tenant-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 320px) {
    h1 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 12px;
    }
}
