:root {
--tgl-primary: #2c3e7a;
--tgl-secondary: #dc2626;
--tgl-primary-dark: #1a2557;
--tgl-secondary-dark: #b91c3c;
--tgl-light: #f8f9fa;
--tgl-gray: #6c757d;
--tgl-dark: #343a40;
--tgl-white: #ffffff;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333;
background-color: var(--tgl-light);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} .site-header {
background: linear-gradient(135deg, var(--tgl-primary) 0%, var(--tgl-primary-dark) 100%);
color: var(--tgl-white);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 15px;
}
.logo-circle {
width: 50px;
height: 50px;
background: linear-gradient(45deg, var(--tgl-secondary-dark), var(--tgl-secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--tgl-white);
font-weight: bold;
font-size: 18px;
}
.logo-text a {
font-size: 24px;
font-weight: bold;
letter-spacing: 2px;
color: var(--tgl-white);
text-decoration: none;
}
.main-navigation .nav-menu {
display: flex;
list-style: none;
gap: 30px;
margin: 0;
}
.main-navigation .nav-menu li a {
color: var(--tgl-white);
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.main-navigation .nav-menu li a:hover {
color: var(--tgl-secondary);
}
.mobile-menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
gap: 4px;
}
.mobile-menu-toggle span {
width: 25px;
height: 3px;
background: var(--tgl-white);
transition: 0.3s;
} .hero {
background: linear-gradient(135deg, var(--tgl-primary) 0%, var(--tgl-primary-dark) 100%);
color: var(--tgl-white);
padding: 100px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="none"><path d="M0,0 L1000,0 L1000,80 Q500,120 0,80 Z" fill="rgba(220,38,38,0.1)"/></svg>') no-repeat center bottom;
background-size: cover;
}
.hero-content {
position: relative;
z-index: 2;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 20px;
font-weight: 700;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 30px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
opacity: 0.9;
}
.cta-button {
display: inline-block;
background: linear-gradient(45deg, var(--tgl-secondary), var(--tgl-secondary-dark));
color: var(--tgl-white);
padding: 15px 40px;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}
.cta-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
color: var(--tgl-white);
} .about {
padding: 80px 0;
background: var(--tgl-white);
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.about-text h2 {
font-size: 2.5rem;
color: var(--tgl-primary);
margin-bottom: 30px;
font-weight: 700;
}
.about-text p {
font-size: 1.1rem;
margin-bottom: 20px;
color: #555;
line-height: 1.8;
}
.about-features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
margin-top: 40px;
}
.feature-card {
background: linear-gradient(135deg, var(--tgl-light) 0%, #e9ecef 100%);
padding: 30px;
border-radius: 15px;
text-align: center;
border: 2px solid transparent;
transition: all 0.3s ease;
}
.feature-card:hover {
border-color: var(--tgl-secondary);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(45deg, var(--tgl-secondary), var(--tgl-secondary-dark));
border-radius: 50%;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
color: var(--tgl-white);
font-size: 24px;
font-weight: bold;
}
.feature-card h3 {
color: var(--tgl-primary);
margin-bottom: 15px;
font-size: 1.2rem;
}
.feature-card p {
color: #666;
font-size: 0.95rem;
} .services {
padding: 80px 0;
background: var(--tgl-light);
}
.services h2 {
text-align: center;
font-size: 2.5rem;
color: var(--tgl-primary);
margin-bottom: 50px;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.service-card {
background: var(--tgl-white);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.service-image img {
width: 100%;
height: 200px;
object-fit: cover;
}
.service-content {
padding: 30px;
}
.service-content h3 {
color: var(--tgl-primary);
margin-bottom: 15px;
font-size: 1.3rem;
}
.service-content p {
color: #666;
margin-bottom: 20px;
line-height: 1.6;
}
.service-link {
color: var(--tgl-secondary);
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
.service-link:hover {
color: var(--tgl-secondary-dark);
} .main-content {
padding: 60px 0;
min-height: 60vh;
} .page-content,
.single-post {
background: var(--tgl-white);
padding: 40px;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.page-header,
.post-header {
margin-bottom: 30px;
padding-bottom: 20px;
border-bottom: 2px solid var(--tgl-light);
}
.page-title,
.post-title {
color: var(--tgl-primary);
font-size: 2.5rem;
margin-bottom: 10px;
}
.post-meta {
color: var(--tgl-gray);
font-size: 0.9rem;
}
.post-meta span {
margin-right: 20px;
}
.post-thumbnail {
margin-bottom: 30px;
border-radius: 10px;
overflow: hidden;
}
.post-thumbnail img {
width: 100%;
height: auto;
}
.post-content,
.page-content-wrapper {
line-height: 1.8;
}
.post-content h2,
.post-content h3,
.post-content h4,
.page-content-wrapper h2,
.page-content-wrapper h3,
.page-content-wrapper h4 {
color: var(--tgl-primary);
margin: 30px 0 15px;
} .posts-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
margin-bottom: 50px;
}
.post-card {
background: var(--tgl-white);
border-radius: 15px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.post-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.post-card .post-thumbnail img {
width: 100%;
height: 200px;
object-fit: cover;
}
.post-card .post-content {
padding: 25px;
}
.post-card .post-title {
font-size: 1.4rem;
margin-bottom: 10px;
}
.post-card .post-title a {
color: var(--tgl-primary);
text-decoration: none;
transition: color 0.3s ease;
}
.post-card .post-title a:hover {
color: var(--tgl-secondary);
}
.read-more {
color: var(--tgl-secondary);
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
.read-more:hover {
color: var(--tgl-secondary-dark);
} .archive-header,
.search-header {
text-align: center;
margin-bottom: 50px;
padding: 40px;
background: var(--tgl-white);
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.archive-title,
.search-title {
color: var(--tgl-primary);
font-size: 2.5rem;
margin-bottom: 15px;
}
.archive-description {
color: var(--tgl-gray);
font-size: 1.1rem;
} .search-result {
background: var(--tgl-white);
padding: 30px;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
margin-bottom: 20px;
}
.search-result-title a {
color: var(--tgl-primary);
text-decoration: none;
font-size: 1.3rem;
}
.search-result-title a:hover {
color: var(--tgl-secondary);
}
.search-result-meta {
color: var(--tgl-gray);
font-size: 0.9rem;
margin: 10px 0;
} .error-404 {
text-align: center;
padding: 80px 20px;
}
.error-title {
font-size: 8rem;
color: var(--tgl-secondary);
margin-bottom: 20px;
font-weight: bold;
}
.error-404 h2 {
color: var(--tgl-primary);
font-size: 2.5rem;
margin-bottom: 20px;
} .no-results {
text-align: center;
padding: 60px 20px;
background: var(--tgl-white);
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.no-results-title {
color: var(--tgl-primary);
font-size: 2rem;
margin-bottom: 20px;
} .sidebar {
background: var(--tgl-white);
padding: 30px;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.widget {
margin-bottom: 40px;
}
.widget-title {
color: var(--tgl-primary);
font-size: 1.3rem;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid var(--tgl-light);
}
.widget ul {
list-style: none;
}
.widget ul li {
padding: 8px 0;
border-bottom: 1px solid var(--tgl-light);
}
.widget ul li a {
color: var(--tgl-gray);
text-decoration: none;
transition: color 0.3s ease;
}
.widget ul li a:hover {
color: var(--tgl-secondary);
} .site-footer {
background: linear-gradient(135deg, var(--tgl-primary-dark) 0%, #0f1a3a 100%);
color: var(--tgl-white);
padding: 60px 0 30px;
}
.footer-content {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-bottom: 40px;
}
.footer-section h3 {
color: var(--tgl-secondary);
margin-bottom: 20px;
font-size: 1.3rem;
}
.footer-section p,
.footer-section li {
margin-bottom: 10px;
color: #ccc;
}
.footer-section ul {
list-style: none;
}
.footer-section ul li a {
color: #ccc;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-section ul li a:hover {
color: var(--tgl-secondary);
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid #333;
color: #999;
} .posts-navigation,
.post-navigation {
margin: 50px 0;
}
.nav-links {
display: flex;
justify-content: space-between;
gap: 20px;
}
.nav-previous,
.nav-next {
flex: 1;
}
.nav-previous a,
.nav-next a {
display: block;
padding: 15px 25px;
background: var(--tgl-primary);
color: var(--tgl-white);
text-decoration: none;
border-radius: 8px;
transition: background 0.3s ease;
}
.nav-previous a:hover,
.nav-next a:hover {
background: var(--tgl-secondary);
} .search-form {
display: flex;
gap: 10px;
}
.search-field {
flex: 1;
padding: 12px 15px;
border: 2px solid var(--tgl-light);
border-radius: 8px;
font-size: 1rem;
}
.search-field:focus {
outline: none;
border-color: var(--tgl-secondary);
}
.search-submit {
padding: 12px 20px;
background: var(--tgl-secondary);
color: var(--tgl-white);
border: none;
border-radius: 8px;
cursor: pointer;
transition: background 0.3s ease;
}
.search-submit:hover {
background: var(--tgl-secondary-dark);
} .comments-area {
margin-top: 50px;
padding-top: 40px;
border-top: 2px solid var(--tgl-light);
}
.comments-title {
color: var(--tgl-primary);
font-size: 1.8rem;
margin-bottom: 30px;
}
.comment-list {
list-style: none;
}
.comment {
margin-bottom: 30px;
padding: 25px;
background: var(--tgl-light);
border-radius: 10px;
}
.comment-author {
font-weight: bold;
color: var(--tgl-primary);
margin-bottom: 10px;
}
.comment-meta {
color: var(--tgl-gray);
font-size: 0.9rem;
margin-bottom: 15px;
} @media (max-width: 992px) {
.about-content {
grid-template-columns: 1fr;
gap: 40px;
}
.footer-content {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
.header-content {
flex-direction: column;
gap: 20px;
}
.main-navigation {
display: none;
}
.mobile-menu-toggle {
display: flex;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.1rem;
}
.about-features {
grid-template-columns: 1fr;
}
.services-grid {
grid-template-columns: 1fr;
}
.posts-grid {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
gap: 30px;
}
.nav-links {
flex-direction: column;
}
.error-title {
font-size: 5rem;
}
}
@media (max-width: 480px) {
.container {
padding: 0 15px;
}
.hero {
padding: 60px 0;
}
.hero h1 {
font-size: 2rem;
}
.about,
.services,
.main-content {
padding: 40px 0;
}
.page-content,
.single-post {
padding: 20px;
}
.feature-card,
.service-card,
.post-card {
margin-bottom: 20px;
}
} .text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; } .alignleft {
float: left;
margin: 0 1rem 1rem 0;
}
.alignright {
float: right;
margin: 0 0 1rem 1rem;
}
.aligncenter {
display: block;
margin: 0 auto 1rem;
}
.wp-caption {
max-width: 100%;
margin-bottom: 1rem;
}
.wp-caption-text {
font-size: 0.9rem;
color: var(--tgl-gray);
text-align: center;
padding: 0.5rem;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin: 2rem 0;
}
.gallery-item {
text-align: center;
}
.gallery-caption {
font-size: 0.8rem;
color: var(--tgl-gray);
margin-top: 0.5rem;
} @media print {
.site-header,
.site-footer,
.sidebar,
.mobile-menu-toggle,
.cta-button,
.nav-links {
display: none;
}
body {
font-size: 12pt;
line-height: 1.4;
color: #000;
background: #fff;
}
.main-content {
padding: 0;
}
.container {
max-width: none;
padding: 0;
}
}