/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */
/* Header base */.site-header {    background-color: #fff;    border-bottom: 1px solid #eee;    padding: 15px 0;    box-shadow: 0 2px 5px rgba(0,0,0,0.03);    position: sticky;    top: 0;    z-index: 1000;}/* Container */.site-header .container {    width: 90%;    max-width: 1200px;    margin: 0 auto;    display: flex;    align-items: center;    justify-content: space-between;}/* Logo */.logo img {    max-height: 50px;}/* Nav */.main-nav ul {    list-style: none;    display: flex;    gap: 25px;    margin: 0;    padding: 0;}.main-nav ul li a {    text-decoration: none;    color: #333;    font-weight: 500;    transition: color 0.3s ease;}.main-nav ul li a:hover {    color: #0073e6;}@media (max-width: 768px) {    .main-nav ul {        flex-direction: column;        background: #fff;        position: absolute;        top: 80px;        right: 0;        width: 200px;        display: none; /* You'll need to toggle this with JS if you add a mobile menu */    }}.site-footer {    background-color: #1a1a1a;    color: #fff;    padding: 40px 0 20px;    font-family: Arial, sans-serif;}.footer-container {    max-width: 1200px;    margin: 0 auto;    display: flex;    flex-wrap: wrap;    justify-content: space-between;    gap: 30px;    padding: 0 20px;}.footer-column {    flex: 1;    min-width: 250px;}.footer-logo {    max-height: 50px;    margin-bottom: 15px;}.footer-column h4 {    color: #fff;    margin-bottom: 15px;    font-size: 18px;}.footer-column ul {    list-style: none;    padding: 0;}.footer-column ul li {    margin-bottom: 10px;}.footer-column ul li a {    color: #ccc;    text-decoration: none;    transition: color 0.3s;}.footer-column ul li a:hover {    color: #fff;}.social-icons a {    display: inline-block;    margin-right: 10px;}.social-icons img {    width: 24px;    height: 24px;    filter: brightness(0) invert(1);    transition: opacity 0.3s;}.social-icons img:hover {    opacity: 0.7;}.footer-bottom {    border-top: 1px solid #333;    text-align: center;    padding-top: 15px;    margin-top: 30px;    font-size: 14px;    color: #aaa;}


/* Wrapper for all guest profiles */


/* Individual guest profile card */
.guest_profile_card {
    width: 365px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding-bottom: 30px;
}
.guest_profile_card:hover {
    transform: scale(1.03);
}

/* Image section */
.guest_profile_card_img img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

/* Guest profile details section */
.guest_profile_card_details {
    padding: 15px;
    min-height: 150px;
}
.guest_profile_card_details .guest-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    color: #333;
}
.guest_profile_card_details .guest-company,
.guest_profile_card_details .guest-role,
.guest_profile_card_details .guest-website,
.guest_profile_card_details .guest-linkedin {
    font-size: 16px;
    margin: 10px 0;
    color: #555;
}

/* Bio section */
.guest_profile_card_bio {
    padding: 15px;
    background-color: #F9F9F9;
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    display: none;
}
.guest_profile_card_bio p {
    margin: 0;
}

/* Guest profiles container */
.guest_profiles_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

/* Read more link */
a#read-more {
    margin: 18px;
    font-family: "Roboto", Sans-serif;
    font-size: 17px;
    font-weight: 500;
    border: 1px solid;
    padding: 10px;
}
/* done */

/* Fluent Forms Styling */
.ff-default .ff-el-form-control {
    border-radius: var(--fluentform-border-radius);
    color: #fff;
    line-height: 1;
    margin-bottom: 0;
    max-width: 100%;
    padding: 11px 15px;
    background: #1a1a1a;
    border: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.fluentform.ff-default.fluentform_wrapper_1.ffs_custom_wrap {
    background-color: #000;
    padding: 18px;
    margin: 0;
    box-shadow: 0 0 0 3px rgba(214, 188, 137, 1);
    border: double 3px rgba(214, 188, 137, 1);
    border-radius: 30px;
}
.fluentform .ff_t_c p,
.ff-default .ff-el-input--label label {
    color: #fff;
}
.ff-default .ff_btn_style {
    color: #000;
    background-color: rgba(223, 199, 156, 1);
    height: 50px;
    width: 100%;
    padding: 0;
    font-size: 19px;
    font-weight: 600;
}
.ff-default .ff_btn_style:focus,
.ff-default .ff_btn_style:hover {
    background: rgba(223, 199, 156, 1);
    color: #000;
}
.cus-single-post:hover
/* Blog post list */

.all-posts .post-content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}


/* Single post card */
.cus-single-post {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 400px;
}
.post-content strong {
    font-size: 16px;
    font-weight: 400;
     margin-bottom: 0;
}

.post_card_body {
    padding: 17px;
}
.post_card_body h2 {
    font-size: 21px;
}
.all-posts {
    display: flex !important;
    flex-wrap: wrap;
    gap: 25px;
}
.post-image {
    min-height: 292px;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
.cus-single-post {
    width: 100%;
}
}


/* === TDAS Affiliate Portal Custom Styles === */
:root {
  --tdas-accent: #A68E6C;
  --tdas-dark: #1A1A1A;
  --tdas-light-bg: #FAF7F2;
  --tdas-white: #ffffff;
}

/* Portal Wrapper */
.affiliatewp-portal {
  background-color: var(--tdas-light-bg);
  color: var(--tdas-dark);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Header Logo */
.affiliatewp-portal-header__logo img {
  max-height: 60px;
  filter: none;
}

/* Top Navigation */
.affiliatewp-portal-tabs__tab {
  font-weight: 600;
  color: var(--tdas-dark);
}

.affiliatewp-portal-tabs__tab--active {
  border-bottom: 3px solid var(--tdas-accent);
  color: var(--tdas-accent);
}

.affiliatewp-portal-tabs__tab:hover {
  color: var(--tdas-accent);
}

/* Table Styling */
.affiliatewp-portal-table th {
  background: var(--tdas-accent);
  color: var(--tdas-white);
  text-transform: uppercase;
  font-size: 12px;
}

.affiliatewp-portal-table td {
  background: #fff;
  border-bottom: 1px solid #E5DED3;
}

/* Buttons */
.affiliatewp-portal-button {
  background-color: var(--tdas-dark);
  color: #fff;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.affiliatewp-portal-button:hover {
  background-color: var(--tdas-accent);
}

/* Referral URL box */
.affiliatewp-portal-referral-url__input {
  border: 1px solid var(--tdas-accent);
  background: #fff;
  border-radius: 6px;
  color: var(--tdas-dark);
}

/* Hide red or default elements */
a,
.affiliatewp-portal a {
  color: var(--tdas-dark);
}

a:hover,
.affiliatewp-portal a:hover {
  color: var(--tdas-accent);
}
