:root { --primary-color: #1A3A5F; --accent-color: #FF6B35; --secondary-color: #C24E23; --text-color: #000000; --bg-color: #FDFCF8; --shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.1); --transition: all 0.3s ease; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; font-size: 10px; scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 1.6rem; line-height: 1.5; color: var(--text-color); background-color: var(--bg-color); min-height: 100%; }
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.4rem; text-align: center; margin: 2rem 0 4rem; text-transform: uppercase; position: relative; }
h2::after { content: ''; position: absolute; bottom: -1.5rem; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--primary-color); border-radius: 2px; }
h3 { font-size: 2rem; color: var(--text-color); }
p { margin-bottom: 1.5rem; font-size: 1.6rem; }
/* ссылки */
a { text-decoration: none; color: white; transition: var(--transition); font-weight: 600; }
a:hover { color: var(--accent-color); }
/* кнопка */
.btn-primary { display: inline-block; padding: 1.2rem 2.5rem; background-color: var(--accent-color); color: white; font-weight: 600; font-size: 1.6rem; border-radius: 50px; transition: var(--transition); border: none; cursor: pointer; }
.btn-primary:hover { background-color: var(--secondary-color); box-shadow: 0 6px 16px #933a1a84; transform: translateY(-2px); color: white; }
.container { width: 100%; max-width: 1200px; padding: 0 2rem; margin: 0 auto; }
.flex { display: flex; justify-content: space-between; align-items: center; }
.grid-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (max-width: 768px) { .grid-container { grid-template-columns: 1fr; } }
/* шапка */
header { position: relative; background-color: var(--primary-color); padding: 2rem 0; text-align: center; }
.logo img { height: 50px; }
.contacts { display: flex; flex-direction: column; align-items: flex-end; gap: 1rem; }
.phone, .email { display: flex; align-items: center; gap: 1rem; font-size: 1.6rem; }
.horse-header { position: absolute; bottom: 8%; left: 50%; transform: translateX(-50%); width: 100px; }
.horse-header img { width: 100%; height: auto; display: block; }
/* херо секция */
.hero-section { background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/hero-section.png'); background-size: cover; background-position: center; height: 600px; display: flex; align-items: center; justify-content: center; color: white; }
.hero-section .content-part { max-width: 50%; margin: 0 auto; text-align: center; }
.hero-section .description { font-size: 1.8rem; margin-bottom: 2rem; line-height: 1.6; }
section { padding: 4rem 0; }
/* преимущества */
.advantages { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.advantage { text-align: center; padding: 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.advantage-description { font-size: 1.6rem; line-height: 1.5; }
/* наши работы */
.portfolio-container { grid-template-columns: repeat(2, 1fr); }
.container-description { text-align: center; margin-bottom: 2.5rem; }
.portfolio-card { background: white; overflow: hidden; box-shadow: var(--shadow); }
.portfolio-card img { width: 100%; height: 40rem; object-fit: cover; display: block; transition: var(--transition); }
/* что мы предлагаем  */
.services-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.service-card { padding: 3rem; border-radius: 1rem; box-shadow: var(--shadow); }
.service-name { margin-bottom: 1.5rem; }
ul { padding-left: 2rem; }
ul li { font-size: 1.6rem; line-height: 1.6; margin-bottom: 1rem; position: relative; padding-left: 1rem; }
ul li::before { content: '•'; color: var(--accent-color); font-weight: bold; position: absolute; left: -1rem; font-size: 2rem; }
/* подвал */
footer { background: var(--primary-color); color: white; padding: 4rem 0 2rem; margin-top: 4rem; }
.footer-content { margin-bottom: 3rem; display: flex; justify-content: center; }
.footer-logo { display: flex; flex-direction: column; align-items: center; }
.footer-logo img { height: 50px; margin-bottom: 1rem; }
.footer-logo p { color: rgba(255, 255, 255, 0.8); font-size: 1.4rem; line-height: 1.6; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-bottom p { color: rgba(255, 255, 255, 0.6); font-size: 1.4rem; }
@media (max-width: 992px) { .services-container { grid-template-columns: 1fr; } .footer-content { text-align: center; } }
@media (max-width: 768px) { .flex { flex-direction: column; gap: 2rem; } .horse-header img { display: none; } .contacts { align-items: center; } .advantages { grid-template-columns: repeat(2, 1fr); } .portfolio-container { grid-template-columns: 1fr; } h1 { font-size: 2.4rem; } .hero-section { height: 500px; } .hero-section .content-part { max-width: 100%; } }
@media (max-width: 480px) { .container { padding: 0 1rem; } .hero-section .description { font-size: 1.4rem; } .btn-primary { font-size: 1.4rem; } h1 { font-size: 2rem; } h2 { font-size: 1.8rem; } .advantages { grid-template-columns: 1fr; } .btn-primary { width: 100%; padding: 1rem; } .portfolio-card img { height: 25rem; } .hero-section { height: 600px; } .horse-header { width: 80px; bottom: -20px; } }