/* ===================================
   MYVALIDATION.ORG CUSTOM STYLES
   Premium domain for sale site
   Validation & Professional Services Theme
   =================================== */

/* Color Variables - Validation & Trust Theme */
:root {
    --validation-blue: #0066CC;
    --trust-green: #00A86B;
    --professional-navy: #1e3a8a;
    --accent-teal: #14b8a6;
    --certified-gold: #d97706;
    --sale-red: #ff4757;
    --primary-dark: #1e293b;
    --success-green: #27ae60;
    --info-blue: #3498db;
    --warning-orange: #f39c12;
    --gold: #fbbf24;
    --light-bg: #f8f9fa;
    --medium-bg: #f1f5f9;
}

/* Body Background */
body {
    background: var(--light-bg);
    color: #1a1a1a;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.0rem;
}

/* List Markers */
ul li::marker {
    color: var(--validation-blue);
}

/* Navigation Menu */
.navbar .dropmenu a,
.navbar .overlay-menu a {
    font-size: 1rem;
}

/* Icon Spacing */
.fa, .fa-solid {
    margin-right: 0.5rem;
}

/* Heading Colors */
h2 {
    color: var(--professional-navy);
}

h3 {
    color: var(--validation-blue);
}

/* Link Styling */
a {
    color: var(--validation-blue);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--professional-navy);
}

/* ===================================
   ICON COLORS - VALIDATION & PROFESSIONAL THEME
   =================================== */

/* Validation and Check Icons */
.fa-check-circle,
.fa-circle-check,
.fa-shield-check,
.fa-check-double,
.fa-clipboard-check {
    color: var(--trust-green);
}

/* Certificate and Award Icons */
.fa-certificate,
.fa-award,
.fa-medal,
.fa-trophy,
.fa-stamp {
    color: var(--certified-gold);
}

/* Professional and Business Icons */
.fa-briefcase,
.fa-building,
.fa-handshake,
.fa-user-tie,
.fa-chart-line {
    color: var(--professional-navy);
}

/* Success and Money Icons */
.fa-dollar-sign,
.fa-coins,
.fa-money-bill {
    color: var(--success-green);
}

/* Info and Feature Icons */
.fa-lightbulb,
.fa-star,
.fa-gem,
.fa-crown {
    color: var(--info-blue);
}

/* Warning and Alert Icons */
.fa-exclamation-triangle,
.fa-bell,
.fa-flag {
    color: var(--warning-orange);
}

/* Technical and Validation Icons */
.fa-code,
.fa-clipboard-list,
.fa-tasks,
.fa-list-check,
.fa-file-check {
    color: var(--accent-teal);
}

/* Sale Badge Icons */
.fa-tag,
.fa-tags {
    color: var(--sale-red);
}

/* ===================================
   FOR SALE BANNERS & BADGES
   =================================== */

.for-sale-badge {
    background: linear-gradient(135deg, var(--sale-red) 0%, #e84118 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 1rem;
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
    }
}

.for-sale-banner {
    background: linear-gradient(135deg, var(--validation-blue) 0%, var(--professional-navy) 100%);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.for-sale-banner h2 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.for-sale-banner .price {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin: 1rem 0;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
    animation: price-pop 3s ease-in-out infinite;
}

@keyframes price-pop {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.for-sale-banner .tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ===================================
   PRICING HIGHLIGHT BOX
   =================================== */

.price-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--validation-blue);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.price-highlight h3 {
    color: var(--sale-red);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-highlight p {
    font-size: 1.1rem;
    margin: 0.75rem 0;
    line-height: 1.8;
}

/* ===================================
   DOMAIN TAG
   =================================== */

.domain-tag {
    background: linear-gradient(135deg, var(--professional-navy) 0%, var(--validation-blue) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 6px 18px rgba(30, 58, 138, 0.3);
}

/* ===================================
   BUTTONS - LARGER SIZE
   =================================== */

.button,
a.button {
    padding: 1.25rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1.8;
    min-height: 60px;
}

.button:hover,
a.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* ===================================
   HOMEPAGE HERO SECTION
   =================================== */

.title-center.title-h1h2 h1:first-of-type {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--professional-navy);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.title-center.title-h1h2 h1:first-of-type::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--validation-blue) 0%, var(--trust-green) 100%);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.title-center.title-h1h2 h1:first-of-type + h2 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 2.5rem;
}

/* ===================================
   ICON LISTS - REMOVE BULLETS
   =================================== */

/* Remove list bullets when list item contains an icon */
ul:has(li > .fa),
ul:has(li > .fa-solid) {
    list-style-type: none;
    padding-left: 0;
}

ul li:has(> .fa),
ul li:has(> .fa-solid) {
    list-style-type: none;
    padding-left: 0;
}

/* Alternative: Direct li with icon child */
li:has(.fa:first-child),
li:has(.fa-solid:first-child) {
    list-style-type: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Text Colors */
.text-primary { color: var(--validation-blue); }
.text-secondary { color: var(--professional-navy); }
.text-success { color: var(--success-green); }
.text-warning { color: var(--warning-orange); }
.text-info { color: var(--info-blue); }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Font Weight */
.fw-bold { font-weight: 700; }
.fw-normal { font-weight: 400; }

/* Spacing - Margins */
.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; }

/* Spacing - Padding */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 960px) {
    .title-center.title-h1h2 h1:first-of-type {
        font-size: 2.25rem;
    }

    .for-sale-banner .price {
        font-size: 2.5rem;
    }

    .button,
    a.button {
        font-size: 1.1rem;
        padding: 1rem 1.75rem;
    }
}

@media (max-width: 600px) {
    .title-center.title-h1h2 h1:first-of-type {
        font-size: 1.75rem;
        margin-top: 2rem;
    }

    .for-sale-banner .price {
        font-size: 2rem;
    }

    .for-sale-badge {
        display: block;
        margin-left: 0;
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    .button,
    a.button {
        width: 100%;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* ===================================
   FOOTER
   =================================== */

#footer {
    font-size: 0.8rem;
    color: #6c757d;
}
