/*
Theme Name: Domain Marketplace Theme
Theme URI: https://example.com/domain-marketplace-theme
Author: Generated by GPT-5.1 Thinking
Author URI: https://example.com
Description: A lightweight theme for listing and selling domain names, featuring domain name, price, and call-to-action links, with optional WooCommerce integration.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: domain-marketplace-theme
*/

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f7fb;
    color: #111827;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    background: #0f172a;
    color: #e5e7eb;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title a {
    color: #e5e7eb;
    font-weight: 600;
    font-size: 1.3rem;
}

.site-nav a {
    margin-left: 16px;
    color: #e5e7eb;
    font-size: 0.95rem;
}

.site-footer {
    background: #020617;
    color: #9ca3af;
    padding: 24px 5%;
    margin-top: 40px;
    font-size: 0.85rem;
}

.container {
    width: 90%;
    max-width: 1120px;
    margin: 24px auto 40px;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.domain-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 18px 16px;
    box-shadow: 0 8px 22px rgba(15,23,42,0.08);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.domain-card-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: #0f172a;
    word-break: break-all;
}

.domain-card-price {
    margin-top: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #16a34a;
}

.domain-card-status {
    display: inline-flex;
    margin-top: 6px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #eef2ff;
    color: #3730a3;
}

.domain-card-meta {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #4b5563;
}

.domain-card-cta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
    text-decoration: none;
}

.btn-secondary {
    background: #e5e7eb;
    color: #111827;
}

.btn-secondary:hover {
    background: #d1d5db;
    text-decoration: none;
}

.hero {
    padding: 40px 5% 24px;
    background: radial-gradient(circle at top left, #1d4ed8 0, #0f172a 55%, #020617 100%);
    color: #e5e7eb;
}

.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 0.98rem;
    max-width: 520px;
    color: #cbd5f5;
}

.hero-search {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-search input[type="search"] {
    flex: 1;
    min-width: 220px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #4b5563;
    background: #020617;
    color: #e5e7eb;
}

.hero-search button {
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    background: #22c55e;
    color: #022c22;
    font-weight: 600;
    cursor: pointer;
}

.hero-search button:hover {
    background: #16a34a;
}

.section-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 14px;
}

@media (max-width: 640px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
