@charset "UTF-8";
/**
 * Convert pixels to rem units
 * @param {Number} $pixels - The pixel value to convert
 * @return {Number} - The rem equivalent
 * 
 * Usage:
 * font-size: toRem(24px);        // 1.5rem
 * padding: toRem(32px) toRem(16px); // 2rem 1rem
 */
/**
 * Convert rem to pixels
 * @param {Number} $rems - The rem value to convert
 * @param {Number} $base-font-size - The base font size (default: 16px)
 * @return {Number} - The pixel equivalent
 * 
 * Usage:
 * width: px(1.5rem);  // 24px
 */
/**
 * Strip units from a number
 * @param {Number} $number - Number with or without units
 * @return {Number} - Unitless number
 */
/**
 * Fluid typography - calculate font size between two breakpoints
 * @param {Number} $min-size - Minimum font size
 * @param {Number} $max-size - Maximum font size  
 * @param {Number} $min-width - Minimum viewport width
 * @param {Number} $max-width - Maximum viewport width
 * @return {String} - CSS clamp() function
 * 
 * Usage:
 * font-size: fluid-type(toRem(16px), toRem(24px), 320px, 1440px);
 */
/**
 * Calculate line height ratio
 * @param {Number} $font-size - Font size
 * @param {Number} $line-height - Desired line height
 * @return {Number} - Line height ratio
 * 
 * Usage:
 * line-height: line-height-ratio(toRem(16px), toRem(24px)); // 1.5
 */
/**
 * Get a color from a nested map
 * @param {Map} $map - The color map
 * @param {String} $keys... - The nested keys
 * @return {Color} - The color value
 * 
 * Usage:
 * color: map-deep-get($theme-colors, 'primary', 'base');
 */
/**
 * Power function (since Sass doesn't have built-in pow)
 * @param {Number} $base - Base number
 * @param {Number} $exponent - Exponent
 * @return {Number} - Result of base^exponent
 */
/**
 * Modular scale for typography
 * @param {Number} $increment - Scale increment (positive or negative)
 * @param {Number} $base - Base size (default: 1rem)
 * @param {Number} $ratio - Scale ratio (default: 1.25 - major third)
 * @return {Number} - Scaled size
 * 
 * Usage:
 * font-size: modular-scale(2);     // 1.5625rem (1.25^2)
 * font-size: modular-scale(-1);    // 0.8rem (1.25^-1)
 */
/**
 * Z-index management
 * @param {String} $layer - Layer name
 * @return {Number} - Z-index value
 */
/**
 * SVG Icon Path Function
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @return {String} - Full path to the icon
 * 
 * Usage:
 * background-image: url(icon-path('search'));
 */
/**
 * Common SVG Icons Map
 * Store commonly used SVG icons as encoded strings
 */
/**
 * Get SVG Icon as Data URI
 * @param {String} $icon-name - Name of the icon
 * @return {String} - Complete data URI for the SVG
 * 
 * Usage:
 * background-image: svg-icon('search');
 */
/**
 * Design Container - 1440px Design Width
 * Max-width: 1240px (1440px - 100px × 2)
 * Padding: 20px left/right for smaller screens
 * 
 * Usage:
 * @include container-design();
 * @include container-design(1.5rem); // Custom padding
 */
/**
 * Custom Container - Flexible max-width with consistent padding
 * @param {Number} $max-width - Maximum width (default: 1240px)
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-custom(800px, 16px);
 * @include container-custom(toRem(1140px));
 */
/**
 * Full-width Container - 100% width with padding
 * @param {Number} $padding - Left/right padding (default: 20px)
 * 
 * Usage:
 * @include container-full();
 * @include container-full(1rem);
 */
/**
 * Advanced Border Radius Mixin (Backward Compatible)
 * Apply border-radius to specific corners or all corners
 * 
 * @param {String|Number} $corner-or-size - Corner name OR size for backward compatibility
 * @param {Number} $size - The radius size (when using corner names)
 * 
 * Backward Compatible Usage:
 * @include border-radius(10px);               // Old style: all corners
 * 
 * New Advanced Usage:
 * @include border-radius('all', 20px);        // All corners
 * @include border-radius('top', 15px);        // Top left & right
 * @include border-radius('right', 15px);      // Right top & bottom  
 * @include border-radius('bottom', 15px);     // Bottom left & right
 * @include border-radius('left', 10px);       // Left top & bottom
 * @include border-radius('top-left', 5px);    // Single corner
 * @include border-radius('top-right', 5px);   // Single corner
 * @include border-radius('bottom-left', 5px); // Single corner
 * @include border-radius('bottom-right', 5px);// Single corner
 */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/**
 * File-based SVG Icon Mixin (Recommended)
 * @param {String} $icon-name - Name of the icon file (without .svg extension)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * 
 * Usage:
 * @include icon('arrow-down', 0.9rem);
 * @include icon('cart', 1.25rem);
 * 
 * Place your SVG files in: assets/icons/icon-name.svg
 */
/**
 * SVG Icon Mixin (For encoded SVGs in map)
 * @param {String} $icon-name - Name of the icon
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Color} $color - Color of the icon (default: currentColor)
 * 
 * Usage:
 * @include svg-icon('search');
 * @include svg-icon('cart', 1.5rem, #333);
 */
/**
 * Icon with Text Mixin
 * @param {String} $icon-name - Name of the icon
 * @param {String} $position - Position of icon (before, after)
 * @param {Number} $size - Size of the icon (default: 1rem)
 * @param {Number} $spacing - Space between icon and text (default: 0.5rem)
 * 
 * Usage:
 * @include icon-with-text('search', 'before');
 */
/**
 * Content Type Color Mixin
 * Applies colors based on body class fot-page--{slug}
 * @param {String} $property - CSS property to apply color to (color, background-color, border-color, etc.)
 * @param {String} $shade - Color shade (dark, medium, light, pastel, gradient)
 * 
 * Usage:
 * @include content-type-color('color', 'dark');
 * @include content-type-color('background', 'gradient');
 * @include content-type-color('border-color', 'medium');
 */
/**
 * Quick Content Type Color Functions
 * Shorthand mixins for common use cases
 */
/**
 * Content Type Search Icon Mixin
 * Applies different search icons based on body class fot-page--{slug}
 * @param {Number} $width - Width of the icon (default: 20px)
 * @param {Number} $height - Height of the icon (default: 20px)
 * 
 * Usage:
 * @include content-type-search-icon();
 * @include content-type-search-icon(toRem(24px), toRem(24px));
 */
/* stylelint-disable selector-class-pattern */
.fot-forums .bp-pagination.top {
  display: none;
}
.fot-forums ul.bbp-forums {
  border: none !important;
  margin-top: 50px;
  padding: 0 25px;
}
.fot-forums ul.bbp-forums li.bbp-header {
  display: none;
}
.fot-forums .bbp-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 767.98px) {
  .fot-forums .bbp-body {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 991.98px) {
  .fot-forums {
    grid-template-columns: repeat(2, 1fr);
  }
}
.fot-forums .bbp-body + .bbp-footer {
  display: none;
}
.fot-forums .bbp-body > ul {
  border: 1px solid #ECEDEE;
  padding: 0 !important;
  background: #fff !important;
  border-radius: 22px;
  margin: 0;
}
.fot-forums .bbp-body > ul li {
  list-style: none;
}
.fot-forums .bbp-body > ul li.bbp-forum-header {
  min-height: 200px;
}
.fot-forums .bbp-body > ul li.bbp-forum-header img {
  width: 100%;
}
.fot-forums .bbp-body > ul li.bbp-forum-info {
  width: 100%;
  padding: 0 15px;
}
.fot-forums .bbp-body > ul li.bbp-forum-info .bbp-forum-title {
  color: #232325;
  font-weight: 600;
}
.fot-forums .bbp-body > ul li.bbp-forum-info .bbp-forum-content {
  margin-bottom: 0 !important;
}
.fot-forums .bbp-body > ul li.bbp-forum-info .bbp-forum-content p {
  margin: 0;
  font-size: 0.95rem;
}
.fot-forums .bbp-body > ul li.bbp-forum-topic-count,
.fot-forums .bbp-body > ul li.bbp-forum-reply-count {
  display: none;
}
.fot-forums .bbp-body > ul li.bbp-forum-freshness {
  padding: 0 15px 3px 15px;
  display: block;
  width: 100%;
  text-align: left;
}
.fot-forums .bbp-body > ul li.bbp-forum-freshness a {
  font-size: 0.85rem;
  color: #6E6E6F;
}
.fot-forums .bbp-body > ul li.bbp-forum-freshness .bbp-topic-meta {
  display: none;
}
.fot-forums .bbp-breadcrumb {
  position: absolute;
  z-index: 3;
  margin-left: 40px;
  margin-top: 5px;
}
.fot-forums .bbp-search-form {
  float: none !important;
  text-align: center;
}
.fot-forums .bbp-search-form h2 {
  color: #490200;
  margin-top: 50px;
}
.fot-forums .bbp-search-form .bbp-search-form-description {
  max-width: 525px;
  margin: 0 auto 17px;
}
.fot-forums .bbp-search-form #bbp_search {
  border: #ECEDEE;
  padding: 16px 150px 16px 15px;
  border-radius: 14px;
  width: 600px !important;
}
.fot-forums .bbp-search-form #bbp_search_submit {
  position: absolute;
  background: #E52B17;
  border: none;
  color: white;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 11px;
  margin-top: 4px;
  margin-left: -166px;
}

/* stylelint-enable selector-class-pattern */
.fot-discussion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  margin: 0 25px;
}

.fot-discussion-list-title {
  font-size: 20px;
  border: 1px solid #ECEDEE;
  padding: 20px 15px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin: 0;
  background: white;
}

.fot-discussion-list-content {
  padding: 20px 15px;
  border: 1px solid #ECEDEE;
  border-top: none;
  margin-top: -16px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: white;
}

.fot-discussion-count {
  color: #6E6E6F;
  font-size: 14px;
}

.fot-discussion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .fot-discussion-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5625rem;
  }
}

.fot-discussion-item + .fot-discussion-item {
  margin-top: 0.625rem;
}

.fot-discussion-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.fot-discussion-details {
  flex: 1;
  margin-left: 1rem;
}

.fot-discussion-title {
  font-weight: 600;
  color: #111;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 15px;
}

.fot-discussion-meta {
  color: #666;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 767.98px) {
  .fot-discussion-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  span.fot-separator {
    display: none;
  }
}

.fot-discussion-meta .fot-last-reply a {
  color: #6E6E6F;
}

.fot-forum-badge {
  background: #FFEAD8;
  color: #E52B17;
  padding: 7px 17px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Forum Header */
.fot-forum-header {
  display: flex;
  align-items: center; /* vertical center everything */
  justify-content: space-between;
  gap: 2rem;
  padding: 20px 25px 5px;
  margin: 25px 0;
}

.fot-forum-header-left {
  display: flex;
  align-items: center; /* centers image vertically */
  gap: 1.25rem;
  flex: 1;
}

.fot-forum-image {
  max-width: 200px;
  border-radius: 16px;
}

.fot-forum-header-center {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center text beside image */
}

.fot-forum-title {
  font-size: 34px;
  font-weight: 700;
  color: #4b1e1e; /* similar deep brown tone */
  margin: 0;
}

.fot-forum-description {
  color: #666;
  font-size: 0.95rem;
  margin-top: 3px;
}

.fot-forum-description p {
  margin: 0;
}

.fot-forum-header-right {
  flex-shrink: 0;
}

.fot-forum-header-right #subscription-toggle a {
  background: #fff;
  color: #e04e2a;
  padding: 14px 24px;
  border: 1px solid #ECEDEE;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

/* Forum Header End */
.fot-help-banner {
  position: relative;
  overflow: hidden;
  margin-top: -6px;
}

.fot-help-banner__container {
  margin: 0 auto;
  padding: 0 25px;
  position: relative;
  z-index: 2;
}

.fot-help-banner__inner {
  margin: 0 auto;
  padding: 2.8125rem 2.5rem 2.5rem;
  background: linear-gradient(to right, #FFEAD8 0%, #ffffff 100%);
  border-bottom-left-radius: 1.125rem;
  border-bottom-right-radius: 1.125rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 70px;
  border: 1px solid #fff0e3;
}

.fot-help-banner__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 40%;
  height: 100.5%;
  background-image: url(../../images/fot-website-forum-search-left-bg.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
  border-radius: 0.9375rem 0 0 0.9375rem;
}

.fot-help-banner__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 40%;
  height: 100.5%;
  background-image: url(../../images/fot-website-forum-search-right-bg.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
  border-radius: 0 0.9375rem 0.9375rem 0;
}

.fot-help-banner__grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../../images/fot-website-background-grid-light.png);
  background-position: bottom;
  background-repeat: repeat-x;
  opacity: 0.09;
  z-index: 2;
  pointer-events: none;
}

.fot-help-banner__content {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}

/* Member Profile Styles */
/* stylelint-disable-next-line selector-class-pattern */
body.bbpress {
  background: linear-gradient(to bottom, #fff9f4 0%, #ffffff 100%);
  position: relative;
  min-height: 100vh;
}

/* stylelint-disable-next-line selector-class-pattern */
body.bbpress::before {
  content: "";
  position: fixed;
  inset: 0; /* shorthand for top, right, bottom, left: 0 */
  background-image: url(../../images/fot-website-background-grid-light.png);
  background-repeat: repeat-x; /* or repeat if you want vertical too */
  background-position: bottom;
  background-size: auto; /* keeps original image size */
  z-index: -1;
  opacity: 0.33;
  pointer-events: none; /* optional: prevents blocking clicks */
}

/* stylelint-disable-next-line selector-class-pattern */
.bbp-breadcrumb {
  margin-left: 25px;
  margin-top: 25px;
}

/* stylelint-disable-next-line selector-class-pattern */
.bbp-breadcrumb a {
  color: #232325;
}

/* stylelint-disable selector-class-pattern */
#item-header-cover-image {
  display: block !important;
  background: white;
  border: 1px solid #ecedee;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  padding: 25px;
}

#item-header-cover-image #item-header-avatar {
  margin-top: -121px;
}

#item-header-avatar .member-status {
  display: none;
}

#item-header-avatar .link-change-profile-image {
  display: none !important;
}

#item-header-avatar .avatar {
  border: 4px solid #fff;
  border-radius: 50%;
  display: block;
  width: 120px;
}

.link-change-overlay,
.link-change-cover-image,
.position-change-cover-image {
  display: none !important;
}

#item-header-content .user-nicename {
  text-shadow: none !important;
  color: #1f2937 !important;
  font-size: 28px !important;
  font-weight: 700;
  margin-bottom: 0 !important;
}

.bb-user-content-wrap .member-title-wrap {
  text-align: center;
  margin-top: 8px;
}

.bb-user-content-wrap .item-meta {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 10px;
}

.bb-user-content-wrap .item-meta .separator {
  margin: 0 5px;
}

.bb-user-content-wrap .member-social .flex.align-items-center {
  display: flex;
  gap: 24px;
  color: #6e6e6f;
  font-size: 14px;
  margin-top: -41px;
  text-transform: capitalize;
}

.buddypress-wrap {
  padding: 0 25px 25px;
  margin-top: -40px;
}

.bp-wrap nav.main-navs {
  border: none !important;
}

.bp-wrap nav.main-navs ul li a {
  background: none !important;
  color: #490200 !important;
  font-size: 17px;
}

.bp-wrap nav.bp-navs {
  border: none !important;
  box-shadow: none !important;
}

.bp-wrap nav.bp-navs ul li a {
  background: none !important;
  color: #490200 !important;
  padding-top: 0;
  padding-left: 0;
  padding-right: 20px;
}

.bp-wrap nav.bp-navs ul li.selected a .bb-single-nav-item-point {
  border-bottom: 2px solid #E52B17;
}

.profile-fields.bp-tables-user tr,
.profile-fields.bp-tables-user td {
  background: none !important;
  border: none !important;
}

.bp-wrap #item-body {
  background: #fff;
  border: 1px solid #ecedee;
  border-radius: 16px;
  padding: 20px;
}

.bp-wrap .profile.public .screen-heading {
  margin: 0 0 20px;
  border: none;
}

.bp-wrap .profile.public h3.screen-heading {
  margin: 0 0 20px;
  border: none;
  font-size: 18px;
}

.member-header-actions-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.member-header-actions-wrap .bb_more_options {
  display: none !important;
}

.member-header-actions-wrap button.follow-button {
  background: #E52B17 !important;
  color: white !important;
  border: none !important;
  border-radius: 9px !important;
  font-weight: 600 !important;
  padding: 15px 19px 12px !important;
  font-size: 14px !important;
  min-width: 110px !important;
}

#drag-drop-area {
  border: 2px dashed #00BEFF;
  border-radius: 10px;
}

.bp-feedback.info {
  box-shadow: none;
}

.bp-feedback.info .bp-icon {
  display: none;
}

.bp-avatar-nav ul.avatar-nav-items li.current {
  border-color: #ecedee;
  border-bottom-color: #fff;
}

.bp-avatar-nav ul {
  border-bottom-color: #ecedee;
}

.avatar-nav-items li a {
  color: #232325;
}

.drag-drop-info {
  font-size: 1rem;
}

#bp-browse-button,
#bp-delete-avatar,
.button.avatar-crop-submit,
#bp-delete-cover-image {
  position: relative;
  z-index: 1;
  background: #002C87 !important;
  color: white !important;
  border-radius: 5px;
  border: none;
  font-size: 1rem !important;
}

#buddypress p.warning,
#bp-cover-image-feedback,
#bp-avatar-feedback {
  border-width: 2px;
  border-style: solid;
  border-radius: 10px;
  font-size: 1rem;
}

/*# sourceMappingURL=forums.css.map */
