:root {
--primary-color: #A1A8B3;
--secondary-color: #C6CBD4;
--tertiary-color: #EAEDEF;
--text-dark: #2c3e50;
--text-light: #ffffff;
--gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
--gradient-accent: linear-gradient(45deg, var(--secondary-color), var(--tertiary-color));
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background: var(--tertiary-color);
}
header {
background: var(--gradient-primary);
min-height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 2rem;
position: relative;
box-shadow: 0 4px 20px rgba(161, 168, 179, 0.3);
backdrop-filter: blur(10px);
}
.logo-container {
display: flex;
align-items: center;
z-index: 100;
position: relative;
}
.logo-container img {
height: 45px;
width: auto;
filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
transition: transform 0.3s ease;
}
.logo-container img:hover {
transform: scale(1.05);
}
.nav-container {
display: flex;
align-items: center;
gap: 2rem;
z-index: 10;
}
.nav-container a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
font-size: clamp(0.9rem, 2vw, 1.1rem);
padding: 0.8rem 1.2rem;
border-radius: 25px;
transition: all 0.3s ease;
position: relative;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
white-space: nowrap;
}
.nav-container a:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.nav-container a:active {
transform: translateY(0);
}
@media (max-width: 768px) {
header {
flex-direction: column;
padding: 1rem;
min-height: 120px;
gap: 1rem;
}
.nav-container {
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.nav-container a {
font-size: 0.9rem;
padding: 0.6rem 1rem;
}
}
@media (max-width: 480px) {
.nav-container {
gap: 0.5rem;
}
.nav-container a {
font-size: 0.8rem;
padding: 0.5rem 0.8rem;
}
}
footer {
background: var(--gradient-primary);
color: var(--text-light);
padding: 3rem 2rem 1.5rem;
margin-top: auto;
position: relative;
overflow: hidden;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
pointer-events: none;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
position: relative;
z-index: 1;
}
.footer-section h3 {
color: var(--text-light);
margin-bottom: 1rem;
font-size: 1.3rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.footer-section p,
.footer-section a {
color: var(--text-light);
text-decoration: none;
margin-bottom: 0.5rem;
display: block;
transition: all 0.3s ease;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.footer-section a:hover {
color: var(--tertiary-color);
transform: translateX(5px);
}
.footer-contact {
background: rgba(255, 255, 255, 0.1);
padding: 1.5rem;
border-radius: 15px;
backdrop-filter: blur(5px);
}
.footer-bottom {
text-align: center;
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.3);
color: var(--text-light);
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-consent {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
background: var(--gradient-primary);
color: var(--text-light);
padding: 1.5rem;
border-radius: 15px;
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
z-index: 1000;
display: none;
backdrop-filter: blur(10px);
}
.cookie-consent.show {
display: block;
}
.cookie-consent p {
margin-bottom: 1rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.cookie-btn {
background: rgba(255, 255, 255, 0.2);
color: var(--text-light);
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 0.6rem 1.2rem;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-btn:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}
@media (max-width: 768px) {
.cookie-consent {
left: 10px;
right: 10px;
bottom: 10px;
}
.cookie-buttons {
justify-content: center;
}
}
.blog-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
width: 100%;
}
.blog-hero {
background: linear-gradient(135deg, #A1A8B3 0%, #C6CBD4 100%);
padding: 80px 0;
text-align: center;
margin-bottom: 60px;
}
.hero-content h1 {
color: white;
font-size: 3.2rem;
font-weight: 700;
margin-bottom: 20px;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-subtitle {
color: #EAEDEF;
font-size: 1.3rem;
font-weight: 300;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}
.featured-section {
margin-bottom: 80px;
padding: 50px 0;
background: linear-gradient(to right, #EAEDEF, #f8f9fa);
border-radius: 20px;
}
.section-title {
font-size: 2.5rem;
color: #2c3e50;
text-align: center;
margin-bottom: 50px;
font-weight: 600;
position: relative;
}
.section-title::after {
content: '';
width: 80px;
height: 4px;
background: #A1A8B3;
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
border-radius: 2px;
}
.featured-post {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
max-width: 1100px;
margin: 0 auto;
padding: 0 30px;
}
.featured-image {
background-image: url('/pages/background_gallery/art_10.jpg');
background-size: cover;
background-position: center;
height: 350px;
border-radius: 15px;
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.featured-content h2 {
font-size: 2rem;
color: #2c3e50;
margin-bottom: 15px;
font-weight: 600;
line-height: 1.3;
}
.featured-meta {
display: flex;
align-items: center;
gap: 20px;
margin-bottom: 20px;
font-size: 0.9rem;
color: #666;
}
.author-avatar {
width: 40px;
height: 40px;
background-image: url('/pages/background_gallery/art_14.jpg');
background-size: cover;
background-position: center;
border-radius: 50%;
border: 2px solid #A1A8B3;
}
.featured-excerpt {
font-size: 1.1rem;
line-height: 1.7;
color: #555;
margin-bottom: 25px;
text-align: justify;
}
.read-more-btn {
display: inline-block;
background: #A1A8B3;
color: white;
padding: 12px 30px;
text-decoration: none;
border-radius: 25px;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
z-index: 10;
}
.read-more-btn:hover {
background: #8a9199;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(161,168,179,0.3);
color: white;
text-decoration: none;
}
.blog-grid {
margin-bottom: 80px;
}
.posts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
gap: 40px;
max-width: 1100px;
margin: 0 auto;
padding: 0 20px;
}
.post-card {
background: white;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid #EAEDEF;
}
.post-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.post-image {
height: 220px;
background-size: cover;
background-position: center;
position: relative;
}
.post-image-1 { background-image: url('/pages/background_gallery/art_11.jpg'); }
.post-image-2 { background-image: url('/pages/background_gallery/art_12.jpg'); }
.post-image-3 { background-image: url('/pages/background_gallery/art_13.jpg'); }
.post-category {
position: absolute;
top: 15px;
left: 15px;
background: rgba(161,168,179,0.9);
color: white;
padding: 5px 12px;
border-radius: 12px;
font-size: 0.8rem;
font-weight: 500;
}
.post-content {
padding: 30px;
}
.post-content h3 {
font-size: 1.4rem;
color: #2c3e50;
margin-bottom: 12px;
font-weight: 600;
line-height: 1.4;
}
.post-meta {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
font-size: 0.85rem;
color: #888;
}
.post-excerpt {
color: #666;
line-height: 1.6;
margin-bottom: 20px;
font-size: 0.95rem;
}
.post-link {
color: #A1A8B3;
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
transition: color 0.3s ease;
position: relative;
z-index: 10;
}
.post-link:hover {
color: #8a9199;
text-decoration: none;
}
.trending-section {
background: linear-gradient(135deg, #C6CBD4 0%, #EAEDEF 100%);
padding: 60px 0;
border-radius: 25px;
margin-bottom: 60px;
}
.trending-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
max-width: 1000px;
margin: 0 auto;
padding: 0 30px;
}
.trending-item {
background: white;
padding: 25px;
border-radius: 15px;
box-shadow: 0 8px 25px rgba(0,0,0,0.05);
border-left: 4px solid #A1A8B3;
transition: transform 0.3s ease;
}
.trending-item:hover {
transform: translateX(5px);
}
.trending-item h4 {
font-size: 1.2rem;
color: #2c3e50;
margin-bottom: 10px;
font-weight: 600;
}
.trending-item p {
color: #666;
line-height: 1.5;
font-size: 0.9rem;
margin-bottom: 12px;
}
.trending-meta {
font-size: 0.8rem;
color: #999;
}
@media (max-width: 768px) {
.blog-container {
padding: 0 15px;
}
.blog-hero {
padding: 50px 0;
margin-bottom: 40px;
}
.hero-content h1 {
font-size: 2.2rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.featured-section {
margin-bottom: 50px;
padding: 30px 0;
}
.featured-post {
grid-template-columns: 1fr;
gap: 25px;
padding: 0 20px;
}
.featured-image {
height: 250px;
}
.section-title {
font-size: 2rem;
margin-bottom: 30px;
}
.posts-grid {
grid-template-columns: 1fr;
gap: 25px;
padding: 0 10px;
}
.post-image {
height: 180px;
}
.post-content {
padding: 20px;
}
.trending-section {
padding: 40px 0;
margin-bottom: 40px;
}
.trending-grid {
grid-template-columns: 1fr;
gap: 20px;
padding: 0 20px;
}
.blog-grid {
margin-bottom: 50px;
}
}
@media (max-width: 480px) {
.featured-post {
padding: 0 15px;
}
.featured-image {
height: 200px;
}
.featured-content h2 {
font-size: 1.6rem;
}
.posts-grid {
padding: 0 5px;
}
.trending-grid {
padding: 0 15px;
}
}