/* Минимальный CSS - стили будут добавлены позже */

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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Навигация */
nav {
    margin-bottom: 20px;
}

.nav-link {
    margin-right: 20px;
    text-decoration: none;
    color: #333;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
}

.avatar-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-title {
    margin: 20px 0 10px;
}

.hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
}

/* About Preview */
.about-preview {
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    margin-bottom: 30px;
}

.features-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-item {
    text-align: center;
    max-width: 300px;
}

.feature-icon {
    font-size: 2em;
    margin-bottom: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #333;
}

/* Marketplace Links */
.marketplaces-section {
    margin-bottom: 40px;
}

.marketplace-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.marketplace-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.marketplace-icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.marketplace-icon svg,
.marketplace-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
}

.icon-placeholder {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6c757d;
    font-size: 18px;
    flex-shrink: 0;
}

.marketplace-info {
    flex: 1;
}

.marketplace-info h3 {
    margin-bottom: 5px;
}

.marketplace-arrow {
    font-size: 1.5em;
    color: #999;
}

/* Social Links */
.social-section {
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.social-icon {
    margin-right: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-icon svg,
.social-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 4px;
}

.social-placeholder {
    width: 30px !important;
    height: 30px !important;
    font-size: 14px !important;
    flex-shrink: 0;
}

/* Дополнительные стили для SVG */
.marketplace-icon svg,
.social-icon svg {
    transition: transform 0.2s ease;
}

.marketplace-link:hover .marketplace-icon svg,
.social-link:hover .social-icon svg {
    transform: scale(1.1);
}

/* Можете добавить цвета для SVG */
.marketplace-icon svg,
.social-icon svg {
    /* fill: currentColor; раскомментируйте для наследования цвета */
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-bottom: 40px;
}

.cta-content {
    max-width: 500px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* About Page */
.about-hero {
    text-align: center;
    margin-bottom: 40px;
}

.about-lead {
    font-size: 1.2em;
    color: #666;
}

.story-section {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
}

.values-section {
    margin-bottom: 40px;
}

.values-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.value-icon {
    font-size: 2em;
    margin-bottom: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: #333;
}

.team-section {
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    text-align: center;
    max-width: 300px;
}

.team-role {
    color: #666;
    font-weight: bold;
    margin: 10px 0;
}

.team-description {
    color: #777;
    font-size: 0.9em;
}

.contact-section {
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    display: grid;
    gap: 20px;
}

.contact-item h3 {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #666;
}

.contact-cta {
    flex: 1;
    text-align: center;
}

.contact-button {
    display: inline-block;
    padding: 12px 30px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* Изображения */
.avatar,
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}