:root {
--primary-color: #D4A574;
--secondary-color: #E8D5B7;
--accent-color: #F4C430;
--dark-wheat: #8B7355;
--light-wheat: #F5E6D3;
--text-dark: #1a1a1a;
--text-light: #666;
--bg-light: #FBF8F3;
--white: #ffffff;
--shadow: 0 2px 10px rgba(139, 115, 85, 0.15);
--shadow-lg: 0 4px 20px rgba(139, 115, 85, 0.2);
--transition: all 0.3s ease;
--border-radius: 8px;
--font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: var(--font-primary);
line-height: 1.6;
color: var(--text-dark);
background: var(--white);
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
text-decoration: none;
color: inherit;
transition: var(--transition);
}
.header {
background: var(--white);
box-shadow: var(--shadow);
position: sticky;
top: 0;
z-index: 1000;
padding: 1.5rem 0;
}
.header-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.header-logo a {
display: flex;
align-items: center;
gap: 1rem;
font-weight: 700;
font-size: 1.5rem;
color: var(--dark-wheat);
}
.logo-img {
height: 60px;
width: auto;
}
.logo-text {
white-space: nowrap;
}
.header-nav {
display: flex;
gap: 2.5rem;
align-items: center;
}
.nav-link {
font-weight: 500;
font-size: 1.05rem;
color: var(--text-dark);
position: relative;
padding: 0.5rem 0;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 3px;
background: var(--primary-color);
transition: width 0.3s ease;
}
.nav-link:hover {
color: var(--primary-color);
}
.nav-link:hover::after {
width: 100%;
}
.header-actions {
display: flex;
align-items: center;
gap: 1rem;
}
.btn-contact {
background: var(--primary-color);
color: var(--white);
padding: 0.75rem 1.5rem;
border-radius: var(--border-radius);
font-weight: 600;
transition: var(--transition);
}
.btn-contact:hover {
background: var(--dark-wheat);
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.mobile-menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
flex-direction: column;
gap: 5px;
}
.hamburger-line {
width: 28px;
height: 3px;
background: var(--text-dark);
border-radius: 2px;
transition: var(--transition);
}
.mobile-nav {
display: none;
flex-direction: column;
gap: 0.5rem;
padding: 1rem 2rem;
background: var(--bg-light);
border-top: 1px solid #eee;
}
.mobile-nav-link {
padding: 1rem;
color: var(--text-dark);
font-weight: 500;
text-align: center;
border-radius: var(--border-radius);
transition: var(--transition);
}
.mobile-nav-link:hover {
background: var(--light-wheat);
color: var(--dark-wheat);
}
.btn-mobile {
background: var(--primary-color);
color: var(--white);
}
.btn-mobile:hover {
background: var(--dark-wheat);
}
.footer {
background: linear-gradient(135deg, var(--dark-wheat) 0%, var(--primary-color) 100%);
color: var(--white);
padding: 4rem 0 2rem;
margin-top: 4rem;
}
.footer-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1.5fr;
gap: 3rem;
margin-bottom: 3rem;
}
.footer-section h3 {
font-size: 1.3rem;
margin-bottom: 1.5rem;
font-weight: 700;
}
.footer-description {
line-height: 1.8;
margin-bottom: 1.5rem;
opacity: 0.95;
}
.footer-social {
display: flex;
gap: 1rem;
}
.social-link {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.15);
border-radius: 50%;
transition: var(--transition);
}
.social-link:hover {
background: rgba(255, 255, 255, 0.25);
transform: translateY(-3px);
}
.footer-links {
list-style: none;
}
.footer-links li {
margin-bottom: 0.8rem;
}
.footer-links a {
opacity: 0.9;
transition: var(--transition);
}
.footer-links a:hover {
opacity: 1;
padding-left: 8px;
}
.footer-contacts {
list-style: none;
}
.footer-contacts li {
display: flex;
align-items: start;
gap: 0.8rem;
margin-bottom: 1rem;
opacity: 0.95;
}
.footer-contacts svg {
flex-shrink: 0;
margin-top: 2px;
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom p {
margin: 0.5rem 0;
opacity: 0.9;
}
.footer-tagline {
font-size: 0.95rem;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}
.section {
padding: 4rem 0;
}
.section-title {
font-size: 2.5rem;
margin-bottom: 1rem;
color: var(--dark-wheat);
text-align: center;
}
.section-subtitle {
font-size: 1.2rem;
color: var(--text-light);
text-align: center;
margin-bottom: 3rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.btn {
display: inline-block;
padding: 1rem 2rem;
background: var(--primary-color);
color: var(--white);
border-radius: var(--border-radius);
font-weight: 600;
text-align: center;
transition: var(--transition);
border: none;
cursor: pointer;
font-size: 1rem;
}
.btn:hover {
background: var(--dark-wheat);
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.btn-secondary {
background: var(--accent-color);
color: var(--text-dark);
}
.btn-secondary:hover {
background: #FFA000;
}
.hero-with-bg {
position: relative;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 8rem 0;
text-align: center;
min-height: 450px;
display: flex;
align-items: center;
justify-content: center;
}
.hero-with-bg::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(139, 115, 85, 0.3) 50%, rgba(26, 26, 26, 0.4) 100%);
z-index: 1;
}
.hero-with-bg .container {
position: relative;
z-index: 2;
}
.hero-bg-content {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
text-align: center;
}
.hero-bg-title {
font-size: 3.2rem;
color: var(--light-wheat);
margin-bottom: 1.5rem;
font-weight: 800;
line-height: 1.2;
text-shadow:
0 0 30px rgba(245, 230, 211, 0.6),
2px 2px 8px rgba(0, 0, 0, 0.7),
0 0 15px rgba(245, 230, 211, 0.4);
filter: drop-shadow(0 0 20px rgba(245, 230, 211, 0.5));
}
.hero-bg-description {
font-size: 1.3rem;
color: rgba(245, 230, 211, 0.95);
line-height: 1.8;
margin-bottom: 0;
text-shadow:
0 0 20px rgba(245, 230, 211, 0.5),
1px 1px 6px rgba(0, 0, 0, 0.8),
0 0 10px rgba(245, 230, 211, 0.3);
}
.shop-hero {
background-image: url('../images/shop_hero.jpg');
}
.events-hero {
background-image: url('../images/festival_6.jpg');
}
.news-hero {
background-image: url('../images/news_hero.jpg');
}
.about-hero {
background-image: url('../images/hero.webp');
}
.hero {
background: linear-gradient(135deg, var(--light-wheat) 0%, var(--bg-light) 100%);
padding: 6rem 0;
text-align: center;
}
.hero-title {
font-size: 3.5rem;
color: var(--dark-wheat);
margin-bottom: 1.5rem;
font-weight: 800;
line-height: 1.2;
}
.hero-description {
font-size: 1.3rem;
color: var(--text-light);
max-width: 800px;
margin: 0 auto 2rem;
line-height: 1.8;
}
.hero-actions {
display: flex;
gap: 1.5rem;
margin-top: 16px;
justify-content: center;
flex-wrap: wrap;
}
.card-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 2rem;
}
.card-grid.two-cols {
grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1200px) {
.card-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.card-grid {
grid-template-columns: 1fr !important;
}
}
.card {
background: var(--white);
border-radius: var(--border-radius);
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
}
.card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.card-image {
width: 100%;
height: 250px;
object-fit: cover;
display: block;
}
.card-badge {
display: inline-block;
padding: 0.4rem 0.8rem;
background: var(--secondary-color);
color: var(--dark-wheat);
font-size: 0.85rem;
font-weight: 600;
border-radius: 20px;
margin-bottom: 0.8rem;
}
.card-content {
padding: 1.5rem;
}
.card-title {
font-size: 1.5rem;
margin-bottom: 0.8rem;
color: var(--dark-wheat);
}
.card-description {
color: var(--text-light);
line-height: 1.7;
margin-bottom: 1rem;
}
.card-features {
list-style: none;
padding: 0;
margin: 1rem 0;
}
.card-features li {
padding: 0.5rem 0;
color: var(--text-dark);
line-height: 1.6;
font-size: 0.95rem;
}
.card-link {
color: var(--primary-color);
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.card-link:hover {
color: var(--dark-wheat);
}
@media (max-width: 1024px) {
.header-nav {
display: none;
}
.mobile-menu-toggle {
display: flex;
}
.footer-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.header-container {
padding: 0 1rem;
}
.logo-text {
display: none;
}
.hero-title {
font-size: 2.5rem;
}
.hero-description {
font-size: 1.1rem;
}
.hero-with-bg {
padding: 5rem 0;
min-height: 350px;
}
.hero-bg-content {
padding: 2rem 1.5rem;
}
.hero-bg-title {
font-size: 2.2rem;
}
.hero-bg-description {
font-size: 1.1rem;
}
.section-title {
font-size: 2rem;
}
.footer-grid {
grid-template-columns: 1fr;
gap: 2rem;
}
.card-grid {
grid-template-columns: 1fr;
}
.footer {
padding: 3rem 0 1.5rem;
}
}
@media (max-width: 480px) {
.header {
padding: 1rem 0;
}
.logo-img {
height: 45px;
}
.hero {
padding: 4rem 0;
}
.hero-title {
font-size: 2rem;
}
.hero-actions {
flex-direction: column;
width: 100%;
padding: 0 1rem;
}
.btn {
width: 100%;
}
}
.article-hero {
background: linear-gradient(135deg, var(--light-wheat) 0%, var(--bg-light) 100%);
padding: 4rem 0 2rem;
}
.article-title {
font-size: 2.8rem;
color: var(--dark-wheat);
margin-bottom: 1rem;
font-weight: 800;
}
.article-meta {
color: var(--text-light);
font-size: 1.05rem;
margin-bottom: 2rem;
font-weight: 500;
}
.article-image {
width: 100%;
max-width: 1100px;
height: 450px;
object-fit: cover;
border-radius: var(--border-radius);
margin: 2rem auto;
display: block;
box-shadow: var(--shadow-lg);
}
.back-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
color: var(--primary-color);
font-weight: 600;
margin-bottom: 2rem;
font-size: 1.05rem;
transition: var(--transition);
}
.back-link:hover {
color: var(--dark-wheat);
transform: translateX(-5px);
}
.article-content {
max-width: 950px;
margin: 0 auto;
padding: 2rem;
}
.article-content h2 {
color: var(--dark-wheat);
margin: 2.5rem 0 1.2rem;
font-size: 1.9rem;
font-weight: 700;
}
.article-content p {
line-height: 1.9;
margin-bottom: 1.2rem;
color: var(--text-dark);
font-size: 1.05rem;
}
.article-content ul {
margin: 1.5rem 0 1.5rem 1rem;
}
.article-content ul li {
line-height: 1.9;
margin-bottom: 1rem;
color: var(--text-dark);
font-size: 1.05rem;
}
.article-content strong {
color: var(--dark-wheat);
}