/*
Theme Name: Bharmal Technologies
Description: A dual-brand landing page theme for Bharmal Technologies showcasing The Bid Daily and Website World Wide
Version: 1.0
Author: Bharmal Technologies
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e5e7eb;
    padding: 48px 0;
}

.site-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    text-align: center;
    margin-bottom: 12px;
}

.site-header p {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Main content */
.main-content {
    padding: 80px 0;
}

.intro-section {
    text-align: center;
    margin-bottom: 80px;
}

.intro-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.intro-section p {
    font-size: 1.25rem;
    color: #6b7280;
}

/* Brands grid */
.brands-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.brands-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #e5e7eb, #9ca3af, #e5e7eb);
    transform: translateX(-50%);
    z-index: 10;
}

.brand-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 48px;
    transition: all 0.3s ease;
    height: 100%;
    margin: 0 12px;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.brand-logo {
    text-align: center;
    margin-bottom: 48px;
}

.brand-logo img {
    height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
}

.tbd-title { 
    color: #154360; 
}

.www-title { 
    color: #4164b6; 
}

.brand-description {
    color: #374151;
    margin-bottom: 24px;
    line-height: 1.7;
}

.brand-highlight {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid;
    font-weight: 500;
    color: #1f2937;
}

.tbd-highlight {
    background: linear-gradient(to right, #fef3c7, #dbeafe);
    border-left-color: #ffdb58;
}

.www-highlight {
    background: linear-gradient(to right, #dbeafe, #fef3c7);
    border-left-color: #f3c930;
}

.brand-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: #6b7280;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 12px;
}

.tbd-dot { 
    background-color: #ffdb58; 
}

.www-dot { 
    background-color: #f3c930; 
}

.brand-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: #154360;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.www-button {
    background: #4164b6;
}

.brand-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    color: white;
    text-decoration: none;
}

/* Contact section */
.contact-section {
    margin-top: 120px;
}

.contact-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.contact-card p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-button:hover {
    border-color: #9ca3af;
    background: #f9fafb;
    color: #374151;
    text-decoration: none;
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: white;
    text-align: center;
    padding: 48px 0;
    margin-top: 120px;
}

.site-footer p {
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
    .brands-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .brands-divider {
        display: none;
    }
    
    .brand-card {
        margin: 0;
    }
    
    .site-header h1 {
        font-size: 2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}

/* WordPress specific styles */
.wp-block-group {
    margin: 0;
}

.alignwide {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}