@font-face {
font-family: 'Comfortaa';
src: url('./fonts/Comfortaa-Regular.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Comfortaa';
src: url('./fonts/Comfortaa-Bold.ttf') format('truetype');
font-weight: bold;
font-style: normal;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Comfortaa', sans-serif;
background-color: #fafafa;
color: #1E3A8A;
line-height: 1.5;
}

.container {
max-width: 900px;
margin: 0 auto;
background-color: rgba(251, 238, 193, 0.25);
min-height: 100vh;
box-shadow: 0 0 20px rgba(30, 58, 138, 0.25);
}

.blog-header {
background: linear-gradient(135deg, #6aa0bf 0%, #457b9d 100%);
padding: 2rem;
text-align: center;
xborder-bottom: 3px solid #F59E0B;
border-bottom: 3px solid #daad86;
}

.blog-title {
font-size: 2.5rem;
font-weight: bold;
color: #ffffff;
margin-bottom: 0.5rem;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-subtitle {
font-size: 1.1rem;
color: #fbeec1;
margin-bottom: 1.5rem;
font-weight: normal;
opacity: 0.95;
}

.header-meta {
display: flex;
justify-content: space-between;
font-size: 0.9rem;
xcolor: #F59E0B;
color: #eee2dc;
font-weight: bold;
}

.blog-content {
padding: 0;
}

.block {
margin-bottom: 2rem;
padding: 0 2rem;
}

.section-heading h2 {
font-size: 1.8rem;
font-weight: bold;
color: #457b9d;
margin-top: 2rem;
margin-bottom: 1rem;
border-left: 4px solid #e63946;
padding-left: 1rem;
}

.text-block p {
font-size: 1rem;
color: #325971;
text-align: justify;
margin-bottom: 1rem;
}

.photo-block {
text-align: center;
}

.photo {
width: 100%;
max-width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 0.1rem;
border: 1px solid #eee2dc;
box-shadow: 0 4px 15px rgba(30, 58, 138, 0.15);
}

.video-block {
text-align: center;
}

.video {
width: 100%;
max-width: 100%;
height: auto;
border-radius: 8px;
margin-bottom: 0.1rem;
border: 1px solid #eee2dc;
box-shadow: 0 4px 15px rgba(30, 58, 138, 0.15);
}

.caption {
font-size: 0.9rem;
color: #457b9d;
font-style: italic;
text-align: center;
margin-top: 0.5rem;
}

.blog-footer {
background: linear-gradient(135deg, #6aa0bf 0%, #457b9d 100%);
padding: 2rem;
text-align: center;
border-top: 3px solid #daad86;
margin-top: 2rem;
}

.blog-footer p {
font-size: 0.9rem;
color: #eee2dc;
margin-bottom: 1rem;
}

.copyright {
font-size: 0.8rem;
color: #60A5FA;
font-weight: normal;
}

@media (max-width: 768px) {
.container {
max-width: 100%;
margin: 0;
box-shadow: none;
}

.blog-header {
padding: 1.5rem 1rem;
}

.blog-title {
font-size: 2rem;
}

.blog-subtitle {
font-size: 1rem;
}

.header-meta {
flex-direction: column;
gap: 0.5rem;
text-align: center;
}

.block {
padding: 0 1rem;
margin-bottom: 1.5rem;
}

.section-heading h2 {
font-size: 1.5rem;
margin-top: 1.5rem;
}

.text-block p {
font-size: 0.95rem;
}

.blog-footer {
padding: 1.5rem 1rem;
}
}

@media (max-width: 480px) {
.blog-title {
font-size: 1.8rem;
}

.blog-subtitle {
font-size: 0.9rem;
}

.section-heading h2 {
font-size: 1.3rem;
}

.text-block p {
font-size: 0.9rem;
}

.caption {
font-size: 0.8rem;
}
}
