/**
 * Dabet Theme - Main Stylesheet
 * Additional custom styles
 */

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

/* Screen Reader Text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Content Area */
.content-area {
    padding: 40px 0;
}

/* Entry Content */
.entry-content {
    max-width: 900px;
    margin: 0 auto;
}

.entry-content h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin: 40px 0 20px;
}

.entry-content h3 {
    font-size: 22px;
    color: #1a1a2e;
    margin: 30px 0 15px;
}

.entry-content p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

.entry-content ol li {
    list-style: decimal;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

/* Widget Area */
.widget-area {
    padding: 40px 0;
}

.widget {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e94560;
}

.widget ul li {
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

.widget ul li::before {
    content: '•';
    color: #e94560;
    position: absolute;
    left: 0;
}

.widget ul li a {
    color: #555;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: #e94560;
}

/* Navigation Pagination */
.navigation {
    margin: 40px 0;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.nav-links a,
.nav-links span {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    border-radius: 8px;
    color: #333;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #e94560;
    color: #fff;
}

.nav-links .current {
    background: #e94560;
    color: #fff;
}

/* No Content */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h2 {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.no-results p {
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.service-card,
.promo-card,
.step-card,
.contact-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e94560;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6b6b;
}

/* Selection Color */
::selection {
    background: #e94560;
    color: #fff;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #e94560;
    outline-offset: 2px;
}

/* Page Image Styles */
.page-image {
    text-align: center;
    margin-bottom: 30px;
}

.page-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: inline-block;
}

/* Section Image Styles */
.section-image {
    text-align: center;
    margin-bottom: 40px;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: inline-block;
}

/* Hero Image Styles */
.hero-image {
    text-align: center;
    margin-bottom: 30px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: inline-block;
}

/* CTA Image Styles */
.cta-image {
    text-align: center;
    margin-bottom: 30px;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: inline-block;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .cta-section,
    .menu-toggle,
    .mobile-nav,
    .mobile-nav-overlay {
        display: none !important;
    }
    
    body {
        background: #fff;
        color: #000;
    }
    
    .container {
        max-width: 100%;
    }
}
