/* AuctionMessenger.net - Professional CSS Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2c3e50;
    --accent-gold: #FFD700;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
    --link-color: #007bff;
    --link-hover: #0056b3;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #34495e 100%);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: var(--accent-gold);
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

nav {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
    pointer-events: auto;
}

nav a:hover {
    color: var(--accent-gold);
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

.article-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--link-color);
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto !important;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-light);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-gold);
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content ul, .article-content ol {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content a {
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.article-content a:hover {
    color: var(--link-hover);
    border-bottom-color: var(--link-hover);
}

.intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 2rem;
    border-radius: 4px;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffd700 100%);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 4px 12px rgba(255,215,0,0.3);
}

.cta-box h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.tags {
    margin-bottom: 2rem;
}

.tags a {
    display: inline-block;
    background: var(--bg-light);
    padding: 0.3rem 0.8rem;
    margin: 0.3rem;
    border-radius: 20px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
    cursor: pointer;
    pointer-events: auto;
}

.tags a:hover {
    background: var(--accent-gold);
}

.related-articles {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.related-articles h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.related-articles ul {
    list-style: none;
    margin-left: 0;
}

.related-articles li {
    margin-bottom: 0.8rem;
}

.related-articles a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    pointer-events: auto;
}

.related-articles a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
    pointer-events: auto;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
}

/* Homepage specific */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.category-card h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.category-card a {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-blue);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    cursor: pointer;
    pointer-events: auto;
}

.category-card a:hover {
    background: #e6c200;
}

.article-list {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.article-list h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 0.5rem;
}

.article-list ul {
    list-style: none;
    margin-left: 0;
}

.article-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.article-list li:last-child {
    border-bottom: none;
}

.article-list a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    pointer-events: auto;
}

.article-list a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

/* Sitemap */
.sitemap-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sitemap-section {
    margin-bottom: 2.5rem;
}

.sitemap-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    nav {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Ensure ALL links are clickable */
a {
    cursor: pointer !important;
    pointer-events: auto !important;
}

button, .btn, .cta-button {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */
.contact-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0,123,255,0.1);
}

.contact-card h2 {
    color: #007bff;
    margin-top: 0;
    font-size: 1.3rem;
}

.contact-email {
    background: #e7f3ff;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.contact-email a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

.response-time {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.contact-newsletter {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.contact-newsletter h2 {
    color: white;
    margin-top: 0;
}

.newsletter-box {
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.newsletter-email {
    font-size: 1.3rem;
    text-align: center;
    margin: 1.5rem 0;
}

.newsletter-email a {
    color: #667eea;
    font-weight: bold;
    text-decoration: none;
    padding: 0.8rem 2rem;
    background: #f8f9fa;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.newsletter-email a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.newsletter-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.newsletter-benefits {
    margin-top: 1.5rem;
}

.newsletter-benefits h3 {
    color: #333;
    margin-top: 0;
}

.newsletter-benefits ul {
    list-style: none;
    padding: 0;
}

.newsletter-benefits li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.contact-faq {
    margin: 3rem 0;
}

.faq-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-left: 4px solid #007bff;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.faq-item h3 {
    color: #007bff;
    margin-top: 0;
    font-size: 1.2rem;
}

.contact-footer-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.cta-email {
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    background: #007bff;
    color: white !important;
    padding: 1rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */
.about-hero {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.about-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.about-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.about-section:last-of-type {
    border-bottom: none;
}

.about-section h2 {
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.offering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.offering-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.offering-card h3 {
    color: #333;
    margin-top: 0;
    font-size: 1.3rem;
}

.trust-list, .about-section ul {
    list-style: none;
    padding: 0;
}

.trust-list li, .about-section ul li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-cta {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.about-cta h2 {
    color: #007bff;
    margin-top: 0;
}

.about-cta ul {
    list-style: none;
    padding: 0;
}

.about-cta li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

.about-cta a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.about-cta a:hover {
    text-decoration: underline;
}

.about-footer {
    text-align: center;
    font-style: italic;
    color: #666;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 3rem 0;
}

/* ================================
   NEWSLETTER SECTION (HOMEPAGE)
   ================================ */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    margin: 4rem -2rem 0 -2rem;
    border-radius: 12px;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-container h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-container p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.newsletter-cta {
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.newsletter-button {
    color: #667eea !important;
    font-weight: bold;
    text-decoration: none;
    padding: 0.8rem 2rem;
    background: #f8f9fa;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.newsletter-button:hover {
    background: #667eea;
    color: white !important;
    transform: translateY(-2px);
}

.newsletter-benefits ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.newsletter-benefits li {
    font-size: 1rem;
    padding: 0.5rem 0;
}

/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */
@media (max-width: 768px) {
    .contact-grid, .offering-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-section {
        margin: 4rem 0 0 0;
        padding: 3rem 1.5rem;
    }
    
    .about-hero {
        padding: 2rem 1.5rem;
    }
    
    .about-tagline {
        font-size: 1.2rem;
    }
}

/* Back Navigation Styling */
.back-navigation {
    margin: 40px 0 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.back-navigation:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateX(-3px);
}

.back-navigation a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.back-navigation a:hover {
    color: #FFD700;
}

.back-navigation a::before {
    content: '←';
    margin-right: 8px;
    font-size: 20px;
    font-weight: bold;
}
