.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-kadence1:#2B6CB0;--e-global-color-kadence2:#215387;--e-global-color-kadence3:#1A202C;--e-global-color-kadence4:#2D3748;--e-global-color-kadence5:#4A5568;--e-global-color-kadence6:#718096;--e-global-color-kadence7:#EDF2F7;--e-global-color-kadence8:#F7FAFC;--e-global-color-kadence9:#ffffff;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7.el-is-editing{--global-palette1:#2B6CB0;--global-palette2:#215387;--global-palette3:#1A202C;--global-palette4:#2D3748;--global-palette5:#4A5568;--global-palette6:#718096;--global-palette7:#EDF2F7;--global-palette8:#F7FAFC;--global-palette9:#ffffff;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1500px;}.e-con{--container-max-width:1500px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */<style>
/* Базовые стили и сброс */
.textile-awards * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
}

.textile-awards body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.textile-awards a {
    text-decoration: none;
    color: inherit;
}

/* Навигация */
.textile-awards-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(249, 249, 249, 0.95);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.textile-awards-header.scrolled {
    background-color: rgba(249, 249, 249, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.textile-awards .logo {
    font-size: 24px;
    font-weight: 700;
    color: #d14e40;
}

.textile-awards-nav ul {
    display: flex;
    list-style: none;
}

.textile-awards-nav ul li {
    margin-left: 30px;
    font-weight: 500;
}

.textile-awards-nav ul li a:hover {
    color: #d14e40;
}

/* Герой секция */
.textile-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
    overflow: hidden;
}

.textile-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    max-width: 900px;
}

.textile-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: #666;
}

.textile-hero-buttons {
    display: flex;
    gap: 20px;
}

.textile-btn {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.textile-btn-primary {
    background-color: #d14e40;
    color: white;
}

.textile-btn-primary:hover {
    background-color: #bb3c2e;
    transform: translateY(-2px);
}

.textile-btn-secondary {
    border: 2px solid #333;
    color: #333;
}

.textile-btn-secondary:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
}

/* Сетка проектов */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 100px 5%;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-info p {
    color: #666;
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tag {
    background-color: #f3f3f3;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #777;
}

/* Адаптивность */
@media (max-width: 768px) {
    .textile-hero h1 {
        font-size: 2.5rem;
    }
    
    .textile-awards-header {
        padding: 15px 20px;
    }
    
    .textile-awards-nav ul li {
        margin-left: 15px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        padding: 80px 20px;
    }
    
    .textile-hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
}
</style>/* End custom CSS */