* { box-sizing: border-box; margin:0; padding:0; }
body {
font-family: 'Inter', sans-serif;
background: #eef2f7;
color: #333;
overflow-x: hidden;
}
header.custom-header, footer.site-footer {
background: #f2d397; color: #3d4a58;
padding: 2rem 1rem;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
text-align: center;
}
.logo-title-wrap { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.logo-circle { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.logo-circle img { width: 100%; height: 100%; object-fit: cover; }
.title-group h1 { font-size: 2rem; font-weight: 700; }
.title-group p { font-size: 1rem; color: #6b7280; }
.tools-section {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
}
.tools-section h2 {
font-size: 1.5rem; margin-bottom: 1rem;
color: #3d4a58; font-weight: 600;
display: flex;
align-items: center;
gap: 0.5rem;
}
.tools-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
padding: 1rem;
}
.tool-card {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
background-color: #fff;
border-radius: 10px;
padding: 1rem;
box-shadow: 0 0 10px rgba(0,0,0,0.05);
cursor: pointer;
text-align: center;
transition: transform 0.2s ease;
}
.tool-card:hover {
transform: translateY(-5px);
}
.tool-card i {
font-size: 2rem;
margin-bottom: 0.5rem;
width: 40px;
height: 40px;
line-height: 40px;
display: flex;
align-items: center;
justify-content: center;
color: #2c3e50;
overflow: hidden;
}
.tool-card span {
font-size: 0.9rem;
font-weight: 500;
color: #333;
}
.footer-links a {
margin: 0 0.75rem; color: #3d4a58;
text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: #1e40af; }
.footer-copy { margin-top: 0.5rem; font-size: 0.85rem; color: #6b7280; }
/* Loader */
#loader-overlay {
position: fixed;
top: 0; left: 0;
width: 100vw; height: 100vh;
background: rgba(255,255,255,0.95);
display: none;
justify-content: center;
align-items: center;
z-index: 9999;
flex-direction: column;
}
.loader-container { text-align: center; max-width: 300px; }
.css-spinner {
width: 60px; height: 60px;
border: 5px solid #e0e0e0;
border-top: 5px solid #3b82f6;
border-radius: 50%;
animation: spin 0.8s linear infinite;
margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-container p { font-size: 1.1rem; color: #444; margin-top: 1rem; }
/* Blog Carousel */
.blog-carousel {
display: flex;
gap: 1rem;
overflow-x: auto;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scroll-behavior: smooth;
padding: 0.5rem 0 1rem;
scrollbar-width: none;
}
.blog-carousel::-webkit-scrollbar { display: none; }
.blog-card {
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
overflow: hidden;
text-align: center;
min-width: 280px;
max-width: 300px;
flex: 0 0 auto;
scroll-snap-align: start;
}
.blog-card img { width: 100%; height: 160px; object-fit: cover; }
.blog-card h3 { font-size: 1.1rem; margin: .75rem; color: #3d4a58; }
.blog-card p { font-size: 0.9rem; margin: 0 .75rem 1rem; color: #6b7280; }
.blog-card a {
display: inline-block;
margin-bottom: 1rem;
color: #1d4ed8;
text-decoration: none;
font-weight: 600;
transition: color .3s;
}
.blog-card a:hover { color: #1e40af; }
/* Special Section */
.special-tranzit {
background: linear-gradient(135deg, #e0f7fa, #fce4ec);
padding: 3rem 1rem;
text-align: center;
overflow: hidden;
}
.special-icon {
font-size: 3.5rem;
color: #f59e0b;
margin-bottom: 1rem;
display: inline-block;
}
.special-tranzit h2 {
font-size: 2rem;
color: #374151;
margin-bottom: 1rem;
}
.special-tranzit p {
max-width: 800px;
margin: 0.5rem auto;
font-size: 1.05rem;
color: #555;
line-height: 1.6;
}
@keyframes fadeInUp {
0% { opacity: 0; transform: translateY(20px); }
100% { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.7; }
}
/* Navbar */
.prodev-navbar {
background: #2c3e50;
padding: 1rem 0;
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
position: relative;
z-index: 99;
width: 100%;
}
.prodev-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.prodev-logo { display: none; }
.prodev-hamburger {
position: absolute;
right: 1rem;
font-size: 1.5rem;
color: #f2d397;
cursor: pointer;
display: none;
}
.prodev-nav-links {
list-style: none;
display: flex;
justify-content: center;
gap: 1.5rem;
}
.prodev-nav-links li a {
text-decoration: none;
color: #f2d397;
font-weight: 600;
font-size: 1rem;
padding: 0.5rem 1rem;
border-radius: 5px;
transition: background-color 0.3s ease, color 0.3s ease;
white-space: nowrap;
}
.prodev-nav-links li a:hover {
background-color: #f2d397;
color: #111;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* Visitor Strip */
.prodev-visitor-strip {
background: #2c3e50;
padding: 0.75rem 1rem;
text-align: center;
box-shadow: 0 -2px 6px rgba(0,0,0,0.05);
}
.visitor-ticker {
font-weight: 600;
font-size: 1.1rem;
color: #f8f8f8;
}
.visitor-icon {
color: #ffffff;
font-size: 1.3rem;
margin-right: 8px;
}
.animated-icon {
animation: pulse-glow 1.8s ease-in-out infinite;
}
@keyframes pulse-glow {
0%, 100% { opacity: 0.7; }
50% { opacity: 1; }
}
/* Mobile */
@media (max-width: 768px) {
.tools-section { padding: 0 1rem; }
.tools-grid { grid-template-columns: repeat(2, 1fr); }
.blog-carousel { padding: 0.5rem 0; }
.blog-card { text-align: center; padding: 1rem; min-width: 85vw; }
.blog-card img { max-width: 100%; height: auto; display: block; }
.prodev-logo {
display: block;
position: absolute;
left: 1rem;
top: 50%;
transform: translateY(-50%);
color: #f2d397;
font-size: 1.5rem;
font-weight: bold;
}
.prodev-hamburger { display: block; }
.prodev-nav-links {
display: none;
flex-direction: column;
align-items: center;
background-color: #2c3e50;
width: 100%;
padding: 1rem 0;
}
.prodev-nav-links.show { display: flex; }
}
