/* ===== THNKR Brand Overrides ===== */

/* Font & Body */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8fafc;
    color: #2d3748;
}

/* Header Navigation */
.thnkr-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.thnkr-header img {
    height: 40px;
}
.thnkr-header nav a {
    color: white;
    font-weight: 500;
    margin-left: 1.5rem;
    text-decoration: none;
}
.thnkr-header nav a:hover {
    opacity: 0.85;
}

/* ===== Hero Section ===== */
.thnkr-hero {
    background: linear-gradient(135deg, rgba(102,126,234,0.55) 0%, rgba(118,75,162,0.55) 100%),
                url("https://support.thnkr.app/ebe7ae06-ff36-403b-81d1-368d812ff518.png") center/cover no-repeat;
    color: white;
    padding: 10.5rem 2rem; /* smaller height */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thnkr-hero-content {
    max-width: 800px;
}
.thnkr-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}
.thnkr-hero p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}
.thnkr-hero .btn {
    background: white;
    color: #667eea;
    font-weight: 700;
    border-radius: 10px;
    padding: 0.6rem 1.4rem;
}
.thnkr-hero .btn:hover {
    background: #f7fafc;
}

/* === Rounded UI Elements === */

/* Search bar */
#search_form input[type="text"],
#search_form input[type="search"] {
    border-radius: 50px;
    padding: 0.8rem 1.2rem;
    border: 1px solid #e2e8f0;
}

/* Action buttons (Submit ticket, View existing tickets) */
.home-actions .action-item {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
}
.home-actions .action-item:hover {
    transform: translateY(-2px);
}

/* Knowledgebase & article cards */
.article-list .article,
.article-list .kb-item,
.kb-category,
.kb-article {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Search results container */
#search_results .result {
    border-radius: 20px !important;
    overflow: hidden;
}

/* === Rounded UI Elements === */

/* Tab containers */
.tabbed__tabs,
.tabbed__head {
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Buttons */
.btn {
    border-radius: 10px !important;
}

/* Search form */
.search__form {
    border-radius: 20px !important;
    background-color: #718096 !important;
    padding: 0.5rem 1rem;
}

/* Nav links */
.navlink {
    border-radius: 8px !important;
    padding: 0.4rem 0.8rem;
    transition: background-color 0.2s ease;
}
.navlink:hover {
    background-color: rgba(113, 128, 150, 0.2); /* soft hover */
}
footer.footer {
    visibility: hidden;
}