:root { --primary-color: #2568B4; /* Основной синий для заголовков */ --secondary-color: #FF7F50; /* Коралловый для кнопок и акцентов */ --accent-color: #2E8B57; /* Дополнительный акцентный цвет */ --light-bg: rgba(255, 245, 235, 0.7); /* Светлый песочный фон */ --card-shadow: 0 10px 30px rgba(0,0,0,0.1); --gradient: linear-gradient(135deg, var(--secondary-color) 0%, #FFA07A 100%); /* Градиент коралловых оттенков */ /* Цвета меню и футера - песочные */ --menu-bg: #F5E6CA; /* Песочный фон */ --menu-text: #333333; /* Темно-серый текст */ --menu-hover: #FF7F50; /* Коралловый при наведении */ --slogan-bg: #FF7F50; /* Коралловый фон для слогана */ --slogan-text: white; /* Белый текст в слогане */ --slogan-hover-bg: #FF6347; /* Темнее коралловый при наведении */ --slogan-hover-text: white; /* Белый текст при наведении */ /* Цвета текста */ --text-dark: #333333; /* Темно-серый основной текст */ --text-light: #555555; /* Серый для второстепенного текста */ } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Montserrat', sans-serif; line-height: 1.6; color: var(--text-dark); /* Темно-серый текст */ overflow-x: hidden; background-color: #f9f9f9; display: flex; flex-direction: column; min-height: 100vh; } img { max-width: 100%; height: auto; } /***** Header *****/ .header { width: 100%; padding: 0; display: flex; flex-direction: column; background-color: var(--menu-bg); /* Песочный фон для меню */ position: fixed; top: 0; left: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); } .header-top { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; flex-wrap: wrap; background-color: var(--menu-bg); /* Песочный фон */ } .logo-container { display: flex; align-items: center; gap: 15px; } .logo-img { height: 60px; width: auto; border-radius: 8px; object-fit: contain; transition: all 0.3s ease; border: 2px solid transparent; } .logo-img:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(255, 127, 80, 0.4); border-color: var(--secondary-color); /* Коралловый */ } .slogan { font-family: 'Dancing Script', cursive; font-weight: 600; background-color: var(--slogan-bg); /* Коралловый */ color: var(--slogan-text); /* Белый */ text-align: center; margin-top: 5px; display: none; width: 100%; border: 2px solid var(--primary-color); /* Синий контур */ border-radius: 30px; padding: 8px 15px; cursor: pointer; transition: all 0.3s ease; text-decoration: none; margin-bottom: 10px; box-shadow: 0 3px 8px rgba(0,0,0,0.15); } .slogan:hover { background-color: var(--slogan-hover-bg); /* Темнее коралловый */ color: var(--slogan-hover-text); /* Белый */ transform: translateY(-2px); box-shadow: 0 5px 12px rgba(0,0,0,0.2); border-color: var(--secondary-color); /* Коралловый */ } .slogan:active { transform: translateY(1px); box-shadow: 0 2px 4px rgba(0,0,0,0.1); } .slogan::after { content: "✉️"; margin-left: 8px; font-size: 1.2em; } .menu { width: 100%; background-color: var(--menu-bg); /* Песочный фон */ padding: 10px; } .menu ul { display: flex; flex-wrap: wrap; justify-content: center; list-style: none; padding: 0; margin: 0; } .menu_item { margin: 0; text-align: center; } .menu_item a { color: var(--menu-text); /* Темно-серый текст */ font-weight: 600; font-size: 16px; text-decoration: none; padding: 10px 15px; display: block; transition: background-color 0.3s ease, color 0.3s ease; border-radius: 5px; } .menu_item a:hover { background-color: var(--menu-hover); /* Коралловый при наведении */ color: white; /* Белый текст при наведении */ } .menu-toggle { display: none; background: var(--menu-bg); /* Песочный фон */ color: var(--menu-text); /* Темно-серый текст */ border: 1px solid var(--menu-text); font-size: 24px; padding: 10px 15px; cursor: pointer; text-align: center; z-index: 1001; border-radius: 5px; transition: all 0.3s ease; } .menu-toggle:hover { background-color: var(--menu-hover); /* Коралловый при наведении */ color: white; /* Белый текст при наведении */ } /***** Hero Section *****/ .hero { background: linear-gradient(135deg, rgba(255, 245, 235, 0.8) 0%, rgba(255, 228, 196, 0.8) 100%); /* Песочный градиент */ padding: 120px 25px 15px 25px; text-align: center; margin-bottom: 10px; position: relative; overflow: hidden; width: 100%; } .hero h1 { font-size: 2.5rem; color: var(--primary-color); /* Синий заголовок */ margin-bottom: 20px; position: relative; display: inline-block; } .hero h1::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 100px; height: 4px; background: var(--gradient); /* Коралловый градиент */ border-radius: 2px; } .hero p { font-size: 1.3rem; max-width: 1400px; margin: 0 auto 35px; color: var(--text-dark); /* Темно-серый текст */ } .cta-button { display: inline-block; background: var(--gradient); /* Коралловый градиент */ color: white; padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: bold; margin-top: 20px; transition: all 0.3s; font-size: 1.2rem; text-align: center; box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3); /* Коралловая тень */ position: relative; overflow: hidden; z-index: 1; } .cta-button::before { content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%; background: #FF6347; /* Темнее коралловый */ transition: all 0.5s ease; z-index: -1; } .cta-button:hover::before { width: 100%; } .cta-button:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); color: white; } /***** Main Content *****/ main { padding: 20px; max-width: 1600px; margin: 0 auto; position: relative; z-index: 1; flex: 1; width: 100%; display: flex; flex-direction: column; align-items: center; } .content-container { width: 100%; max-width: 1400px; display: flex; flex-direction: column; align-items: center; } h1, h2, h3, h4 { margin: 15px 0; text-align: center; } h1 { font-size: 2.2rem; color: var(--primary-color); /* Синий заголовок */ margin-bottom: 10px; transition: color 0.3s ease; } h1:hover { color: var(--secondary-color); /* Коралловый при наведении */ } h2 { font-size: 1.8rem; color: var(--primary-color); /* Синий заголовок */ margin: 25px 0 15px; position: relative; transition: color 0.3s ease; } h2:hover { color: var(--secondary-color); /* Коралловый при наведении */ } h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: var(--gradient); /* Коралловый градиент */ border-radius: 2px; } h3 { font-size: 1.5rem; color: var(--primary-color); /* Синий заголовок */ transition: color 0.3s ease; } h3:hover { color: var(--secondary-color); /* Коралловый при наведении */ } .content-section { margin: 30px 0; padding: 25px; background: white; border-radius: 15px; box-shadow: var(--card-shadow); position: relative; overflow: hidden; width: 100%; max-width: 1400px; } .content-section:before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color)); } .location-section { display: flex; flex-wrap: wrap; gap: 30px; margin: 30px 0; width: 100%; max-width: 1400px; } .location-info { flex: 1; min-width: 300px; padding: 30px; background: white; border-radius: 15px; box-shadow: var(--card-shadow); } .location-details { margin-top: 20px; } .location-details p { margin: 15px 0; display: flex; align-items: center; font-size: 1.1rem; color: var(--text-dark); } .location-details i { margin-right: 15px; color: var(--secondary-color); /* Коралловые иконки */ width: 25px; text-align: center; font-size: 1.2rem; } .location-details a { color: var(--primary-color); /* Синий цвет ссылок */ text-decoration: none; transition: all 0.3s ease; font-weight: 600; padding: 5px 10px; border-radius: 5px; background: rgba(255, 127, 80, 0.1); /* Светло-коралловый фон */ box-shadow: 0 2px 5px rgba(0,0,0,0.05); border: 1px solid rgba(255, 127, 80, 0.2); } .location-details a:hover { color: white; background: var(--gradient); /* Коралловый градиент */ transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 127, 80, 0.3); } .map-container { flex: 1; min-width: 300px; border-radius: 15px; overflow: hidden; box-shadow: var(--card-shadow); min-height: 400px; } .map-placeholder { flex: 1; background: var(--light-bg); border-radius: 15px; display: flex; align-items: center; justify-content: center; min-height: 300px; padding: 20px; text-align: center; } .contact-cta-section { text-align: center; padding: 40px 20px; background: linear-gradient(135deg, rgba(255, 245, 235, 0.5) 0%, rgba(255, 228, 196, 0.5) 100%); /* Песочный градиент */ border-radius: 15px; margin: 30px 0; width: 100%; max-width: 1400px; } p { margin: 15px 0; color: var(--text-dark); font-size: 1.1rem; line-height: 1.7; } .highlight { color: var(--secondary-color); /* Коралловый цвет для выделения */ font-weight: 700; } /***** Стили для бокового меню *****/ .side-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 2000; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; } .side-menu-overlay.active { opacity: 1; visibility: visible; } .side-menu { position: fixed; top: 0; right: -100%; width: auto; min-width: 280px; max-width: 90%; height: 100%; background-color: var(--menu-bg); /* Песочный фон */ z-index: 2001; overflow-y: auto; transition: right 0.4s ease; box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2); border-radius: 0 0 0 15px; } .side-menu.active { right: 0; } .side-menu-header { padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; background-color: rgba(245, 230, 202, 0.9); /* Полупрозрачный песочный */ border-bottom: 1px solid rgba(51, 51, 51, 0.2); position: sticky; top: 0; z-index: 2002; min-height: 60px; border-radius: 0 0 0 15px; } .side-menu-title { color: var(--menu-text); /* Темно-серый текст */ font-weight: 600; font-size: 18px; margin: 0; } .close-menu { background: none; border: none; font-size: 28px; color: var(--menu-text); /* Темно-серый текст */ cursor: pointer; transition: transform 0.3s; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; z-index: 2003; font-weight: bold; background-color: rgba(255, 255, 255, 0.9); border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.2); } .close-menu:hover { transform: rotate(90deg); background-color: white; color: var(--secondary-color); /* Коралловый при наведении */ } .side-menu ul { list-style: none; padding: 0; margin: 0; max-height: 80vh; overflow-y: auto; } .side-menu-item { border-bottom: 1px solid rgba(51, 51, 51, 0.2); } .side-menu-item:last-child { border-bottom: none; } .side-menu-link { display: block; padding: 15px 20px; color: var(--menu-text); /* Темно-серый текст */ font-weight: 600; text-decoration: none; transition: all 0.3s; white-space: normal; word-wrap: break-word; line-height: 1.4; border-radius: 5px; margin: 5px; } .side-menu-link:hover { background-color: var(--menu-hover); /* Коралловый при наведении */ color: white; /* Белый текст при наведении */ } .side-menu-link i { margin-right: 10px; width: 20px; text-align: center; } /***** Footer *****/ .footer { width: 100%; padding: 30px 15px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; background-color: var(--menu-bg); /* Песочный фон */ margin-top: 40px; } .footer_copyright { color: var(--menu-text); /* Темно-серый текст */ font-weight: 600; font-size: 18px; margin: 10px 0; text-align: center; width: 100%; } .footer_menu ul { display: flex; flex-wrap: wrap; justify-content: center; list-style: none; padding: 0; } .footer_menu_item { margin: 5px 10px; } .footer_menu_link { color: var(--menu-text); /* Темно-серый текст */ font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.3s ease; padding: 5px; border-radius: 5px; } .footer_menu_link:hover { background-color: var(--menu-hover); /* Коралловый при наведении */ color: white; /* Белый текст при наведении */ border-radius: 4px; } .social-links { display: flex; justify-content: center; flex-wrap: wrap; margin: 15px 0; width: 100%; } .social-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background-color: var(--menu-text); /* Темно-серый фон */ color: var(--menu-bg); /* Песочный цвет иконок */ margin: 5px; font-size: 20px; transition: all 0.3s ease; flex-shrink: 0; } .social-icon:hover { transform: translateY(-3px); background-color: var(--secondary-color); /* Коралловый фон при наведении */ color: white; /* Белые иконки при наведении */ } /***** Медиазапросы для разных экранов *****/ /* Очень маленькие экраны (до 320px) */ @media (max-width: 320px) { .header { position: fixed; } .hero { padding: 180px 15px 15px 15px; margin-top: 0; width: 100%; } .header-top { flex-direction: column; align-items: center; text-align: center; padding: 10px; } .logo-container { flex-direction: column; margin-bottom: 10px; width: 100%; } .logo-img { height: 50px; } .slogan { display: block; font-size: 16px; margin-top: 5px; padding: 6px 12px; } .menu-toggle { display: block; width: 100%; } .menu { display: none; } h1 { font-size: 1.1rem; } h2 { font-size: 1.0rem; margin: 20px 0 15px; } h3 { font-size: 1.0rem; margin: 20px 0 15px; } p { margin: 13px 15px 20px 10px; font-size: 12px; line-height: 1.6; padding: 5px 50px 5px 5px; } .hero h1 { font-size: 1.3rem; margin-bottom: 15px; } .cta-button { padding: 12px 20px; font-size: 0.7rem; white-space: normal; line-height: 1.2; } main { padding-top: 10px; position: relative; z-index: 1; } .social-links { justify-content: center; flex-wrap: wrap; } .social-icon { margin: 5px; } .content-section { padding: 15px; } .location-section { flex-direction: column; gap: 20px; } .location-info, .map-container { width: 100%; min-width: 100%; } .location-info { padding: 20px; } .location-details p { display: flex; flex-direction: column; } .map-container { min-height: 300px; } .contact-cta-section { padding: 30px 15px; width: 100%; margin: 20px 0; } .side-menu { width: 100%; right: -100%; height: 100%; border-radius: 0; } .side-menu.active { right: 0; } .side-menu-header { padding: 15px; min-height: 50px; position: sticky; top: 0; background-color: rgba(245, 230, 202, 0.9); /* Полупрозрачный песочный */ border-radius: 0; } .close-menu { width: 35px; height: 35px; font-size: 28px; } .side-menu ul { max-height: 60vh; } .side-menu-link { padding: 12px 15px; font-size: 14px; } .location-details p { flex-direction: column; align-items: flex-start; } .location-details i { margin-bottom: 5px; } .location-details a { margin-top: 5px; align-self: flex-start; } } /* Малые экраны (321px - 503px) */ @media (min-width: 321px) and (max-width: 503px) { .header { position: fixed; } .hero { padding: 150px 15px 15px 15px; margin-top: 0; width: 100%; } .header-top { flex-direction: row; align-items: center; justify-content: space-between; padding: 10px 15px; } .logo-container { flex-direction: row; align-items: center; margin-bottom: 0; flex: 1; } .logo-img { height: 55px; } .slogan { display: block; text-align: center; margin-top: 5px; width: 100%; font-size: 14px; padding: 5px 5px; } .menu-toggle { display: flex; align-items: center; justify-content: center; width: 60px; height: 40px; margin-left: 10px; } .menu { display: none; } h1 { font-size: 1.6rem; } h2 { font-size: 1.3rem; } p { margin: 10px 0; font-size: 12px; line-height: 1.6; padding: 0px 20px 0px 0px; } .hero h1 { font-size: 1.6rem; margin-bottom: 15px; } .cta-button { white-space: normal; line-height: 1.4; padding: 20px 18px; border-radius: 50px; } .social-links { justify-content: center; flex-wrap: wrap; } .social-icon { margin: 5px; } main { padding-top: 10px; padding: 5px; position: relative; z-index: 1; } .location-section { flex-direction: column; gap: 20px; } .location-info, .map-container { width: 100%; min-width: 100%; } .location-info { padding: 20px; } .location-details p { display: flex; flex-direction: column; } .contact-cta-section { padding: 30px 15px; width: 100%; margin: 20px 0; } .side-menu-header { padding: 15px; position: sticky; top: 0; z-index: 2002; background-color: rgba(245, 230, 202, 0.9); /* Полупрозрачный песочный */ min-height: 50px; } .close-menu { width: 35px; height: 35px; font-size: 28px; background-color: rgba(255, 255, 255, 0.9); } .side-menu ul { max-height: 60vh; } .side-menu-link { padding: 14px 18px; font-size: 15px; } } /* Средние экраны (504px - 768px) */ @media (min-width: 504px) and (max-width: 768px) { .header { position: fixed; } .hero { padding: 140px 20px 15px 20px; margin-top: 0; width: 100%; } .header-top { flex-direction: row; align-items: center; justify-content: space-between; padding: 10px 15px; } .logo-container { flex-direction: row; align-items: center; margin-bottom: 0; flex: 1; } .logo-img { height: 55px; } .slogan { display: block; margin-top: 0; margin-left: 0px; width: auto; flex: 1; font-size: 22px; padding: 10px 3px; } .menu-toggle { display: flex; align-items: center; justify-content: center; width: 60px; height: 40px; margin-left: 10px; } .menu { display: none; } h1 { font-size: 1.8rem; } h2 { font-size: 1.4rem; } p { margin: 15px 0; font-size: 14px; line-height: 1.6; } .hero h1 { font-size: 1.8rem; margin-bottom: 20px; } .cta-button { white-space: normal; line-height: 1.4; padding: 15px 30px; border-radius: 50px; } .social-links { justify-content: center; flex-wrap: wrap; } .social-icon { margin: 5px; } main { padding-top: 10px; position: relative; z-index: 1; } .location-section { flex-direction: column; gap: 20px; } .location-info, .map-container { width: 100%; min-width: 100%; } .contact-cta-section { padding: 35px 20px; width: 100%; } .side-menu-header { min-height: 50px; } .side-menu ul { max-height: 60vh; } .side-menu-link { padding: 15px 20px; font-size: 16px; } .location-details p { display: flex; flex-direction: column; } } /* Большие экраны (769px и выше) */ @media (min-width: 769px) { .header { position: fixed; flex-direction: row; flex-wrap: nowrap; align-items: center; padding: 0; } .header-top { padding: 10px 20px; flex: 0 0 auto; } .logo-img { height: 65px; } .slogan { display: none; } .menu { display: flex; position: static; width: auto; flex: 1 1 auto; } .menu-toggle { display: none; } .menu ul { flex-direction: row; justify-content: space-around; } .menu_item a { padding: 15px 10px; font-size: 15px; } .hero { padding: 190px 25px 15px 25px; } .hero h1 { font-size: 2.2rem; margin-bottom: 20px; } main { padding-top: 10px; position: relative; z-index: 1; } } /* Большие экраны (992px и выше) */ @media (min-width: 992px) { .header { position: fixed; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center; padding: 0; } .header-top { padding: 15px 20px; flex: 0 0 auto; } .slogan { display: none; } .menu { width: auto; flex-grow: 1; display: block !important; position: static; max-height: none !important; } .menu-toggle { display: none; } .menu ul { justify-content: flex-end; justify-content: space-around; } .menu_item a { font-size: 16px; padding: 18px 15px; } .hero { padding: 190px 25px 15px 25px; } .hero h1 { font-size: 2.5rem; margin-bottom: 20px; } main { padding-top: 10px; position: relative; z-index: 1; } } /* Очень большие экраны (1200px и выше) */ @media (min-width: 1200px) { .menu_item a { font-size: 18px; padding: 20px 25px; } .footer_copyright { font-size: 18px; } .hero { padding: 210px 25px 15px 25px; } .hero h1 { font-size: 2.8rem; margin-bottom: 20px; } } @media (max-width: 768px) { .side-menu-header { padding: 15px 20px; justify-content: space-between; } .close-menu { margin-left: auto; } .side-menu ul { max-height: 60vh; } .side-menu-link { white-space: normal; word-wrap: break-word; line-height: 1.4; } }