* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} .site-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 1rem 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
}
.site-branding {
flex: 1;
}
.site-title {
font-size: 2.5rem;
font-weight: bold;
margin: 0;
}
.site-title a {
color: white;
text-decoration: none;
}
.site-description {
font-size: 1.1rem;
margin: 5px 0 0 0;
opacity: 0.9;
} .main-navigation {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: 0.5rem 0;
border-radius: 25px;
}
.main-navigation ul {
list-style: none;
display: flex;
gap: 2rem;
margin: 0;
padding: 0 2rem;
justify-content: center;
}
.main-navigation a {
color: white;
text-decoration: none;
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: 20px;
transition: all 0.3s ease;
}
.main-navigation a:hover {
background: rgba(255,255,255,0.2);
transform: translateY(-2px);
} .site-content {
padding: 3rem 0;
min-height: 60vh;
}
.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.post-card {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.post-thumbnail img {
width: 100%;
height: 200px;
object-fit: cover;
}
.post-content {
padding: 1.5rem;
}
.post-title {
font-size: 1.5rem;
margin-bottom: 1rem;
}
.post-title a {
color: #2c3e50;
text-decoration: none;
transition: color 0.3s ease;
}
.post-title a:hover {
color: #667eea;
}
.post-meta {
color: #666;
font-size: 0.9rem;
margin-bottom: 1rem;
}
.post-excerpt {
color: #555;
margin-bottom: 1rem;
line-height: 1.6;
}
.read-more {
display: inline-block;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 0.5rem 1.5rem;
text-decoration: none;
border-radius: 25px;
font-weight: 500;
transition: transform 0.3s ease;
}
.read-more:hover {
transform: translateY(-2px);
color: white;
} .site-footer {
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
color: white;
padding: 3rem 0 1rem;
margin-top: 3rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h3 {
color: #3498db;
margin-bottom: 1rem;
font-size: 1.3rem;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li {
margin-bottom: 0.5rem;
}
.footer-section a {
color: #bdc3c7;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-section a:hover {
color: #3498db;
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #34495e;
color: #95a5a6;
} @media (max-width: 768px) {
.header-content {
flex-direction: column;
text-align: center;
gap: 1rem;
}
.main-navigation ul {
flex-direction: column;
gap: 0.5rem;
}
.site-title {
font-size: 2rem;
}
.posts-grid {
grid-template-columns: 1fr;
}
} .woocommerce .products {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.woocommerce .product {
background: white;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.woocommerce .product:hover {
transform: translateY(-5px);
}
.woocommerce .product img {
width: 100%;
height: 200px;
object-fit: cover;
}
.woocommerce .product .woocommerce-loop-product__title {
padding: 1rem;
margin: 0;
font-size: 1.2rem;
}
.woocommerce .price {
padding: 0 1rem 1rem;
color: #e74c3c;
font-weight: bold;
font-size: 1.1rem;
}