@charset "UTF-8";

/* --- BOOTSTRAP REBOOT (Resets) --- */
:root {
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, ::after, ::before { box-sizing: border-box; }
body { 
  margin: 0; 
  font-family: var(--bs-font-sans-serif); 
  font-size: 1rem; 
  line-height: 1.5; 
  color: #212529; 
  background-color: #fff; 
  -webkit-text-size-adjust: 100%; 
  -webkit-tap-highlight-color: transparent; 
}

/* --- BOOTSTRAP GRID BASE --- */
.container { 
  width: 100%; 
  padding-right: 15px; 
  padding-left: 15px; 
  margin-right: auto; 
  margin-left: auto; 
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

.row { 
  display: flex; 
  flex-wrap: wrap; 
  margin-right: -15px; 
  margin-left: -15px; 
}
.row > * { 
  flex-shrink: 0; 
  width: 100%; 
  max-width: 100%; 
  padding-right: 15px; 
  padding-left: 15px; 
}

/* --- UTILITIES --- */
.m-auto { margin: auto !important; }

/* --- SPECIFIC COLUMNS USED IN YOUR HTML --- */
.col { flex: 1 0 0%; }
.col-12 { flex: 0 0 auto; width: 100%; }

/* Mobile */
@media (min-width: 576px) {
  .col-sm-12 { flex: 0 0 auto; width: 100%; }
}

/* Tablet */
@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-12 { flex: 0 0 auto; width: 100%; }
}

/* Desktop */
@media (min-width: 992px) {
  .col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }
}

/* Widescreen */
@media (min-width: 1200px) {
  .col-xl-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.66666667%; }
}

ul {
    list-style: none;
    padding: 0
}

a {
    transition: all .15s ease
}

a:hover {
    color: #ff5e3a
}

p {
    font-size: 16px
}

.h1,.h2,.h3,.h4,.h5,.h6 {
    color: #515365
}

.h1,.h2,.h3,.h4,h1,h2,h3,h4 {
    font-weight: 300
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block
}

.footer {
    width: 100%;
    margin: 0 auto;
    padding: 70px 55px 0;
    background-color: #fff;
    box-shadow: 0 0 34px 0 rgba(63,66,87,.1);
    position: relative
}

.footer .widget .title {
    margin-bottom: 25px
}

.footer.footer-full-width {
    width: 100%
}

.sub-footer-copyright {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e6ecf5;
    margin-top: 60px
}

.sub-footer-copyright span {
    font-size: 12px
}

.sub-footer-copyright a {
    color: #ff5e3a;
    opacity: .7;
    font-weight: 500
}

.sub-footer-copyright a:hover {
    opacity: 1
}

@media(max-width: 1024px) {
    .footer .widget {
        margin-bottom:40px
    }

    .footer {
        padding: 40px 15px;
        width: 100%
    }
}

@media(max-width: 768px) {
    .footer {
        text-align:center
    }

    .footer .w-about .logo {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin-bottom: 10px
    }

    .sub-footer-copyright {
        margin-top: 0;
        padding-bottom: 0
    }
}

section {
    position: relative
}

.content-bg-wrap {
    background-position: 0 0;
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    text-align: center;
    box-sizing: border-box;
    -webkit-animation: slide 50s linear infinite;
    animation: slide 50s linear infinite;
    will-change: background-position;
    background-size: auto
}

.content-bg-wrap:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
    z-index: auto
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0
    }

    to {
        background-position: -4000px 0
    }
}

button.btn {
    padding: .5rem 1rem
}

button.btn-lg {
    padding: 1rem 3rem
}

button:hover {
    cursor: pointer
}

.btn {
    color: #fff;
    margin-bottom: 15px;
    position: relative
}

.btn:hover {
    opacity: .8;
    color: #fff
}

.btn:focus {
    box-shadow: none
}

.btn-lg i,.btn-lg svg {
    font-size: 16px
}

@media(max-width: 1080px) {
    .btn-lg {
        padding:1rem
    }
}

.btn-primary:hover {
    background-color: #ff763a;
    border-color: #ff763a;
    opacity: 1
}

.back-to-top {
    position: fixed;
    z-index: 19;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    fill: #fff;
    stroke: inherit;
    transition: all .3s ease;
    bottom: 10px;
    right: 85px;
    cursor: pointer;
    box-shadow: 0 0 10px 0 rgba(63,66,87,.4);
    border-radius: 100%;
    background-color: #ff5e3a
}

.back-to-top .back-icon {
    height: 20px;
    width: 20px;
    margin: auto
}

@media(max-width: 768px) {
    .back-to-top {
        width:40px;
        height: 40px;
        line-height: 40px;
        right: 10px
    }

    .back-to-top .back-icon {
        height: 15px;
        width: 15px
    }
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff
}

.logo img {
    transition: opacity .3s ease;
    display: block
}

.logo:hover {
    color: #fff
}

.logo .img-wrap {
    position: relative
}

.main-header.main-landing {
    width: 100%;
    max-width: 100%
}

.main-header.main-landing .logo {
    text-align: center;
    display: block;
    background-color: transparent;
    margin-bottom: 60px
}

.main-header.main-landing .logo img {
    display: block;
    margin: 0 auto 10px
}

.main-header.main-landing h1 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 40px
}

.main-header.main-landing p {
    margin-bottom: 60px
}

.img-rocket {
    position: absolute;
    bottom: 160px;
    right: 30%
}

@media(max-width: 800px) {
    .img-rocket {
        right:5px
    }
}

@media(max-width: 420px) {
    .img-rocket {
        bottom:60px
    }
}

.landing-main-content {
    text-align: center;
    margin: 80px 0
}

.landing-main-content .btn {
    margin: 40px 0
}

.landing-main-content .title {
    font-weight: 300;
    margin-bottom: 30px
}

.main-header {
    padding: 40px 0 0;
    margin: 0 auto 80px;
    position: relative;
    background-position: 50% 50%
}

.img-bottom {
    position: relative;
    display: block;
    margin: 20px auto 0;
    margin-bottom: -70px
}

.bg-furry {
    background-image: url(https://furrychat.net/image/furry-bg.png)
}

.main-header-content {
    color: #fff;
    text-align: center
}

.main-header-content>* {
    color: inherit
}

.main-header-content>:first-child {
    font-weight: 300;
    margin-bottom: 20px
}

.main-header-content p {
    font-weight: 400;
    margin-bottom: 0
}

body {
    overflow-x: hidden
}

body:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(43,45,59,.9);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: -999
}

body {background-color: #f9f9fb!important;}

.crumina-heading {
    position: relative;
    z-index: 5;
    margin-bottom: 30px
}

.crumina-heading>:last-child {
    margin-bottom: 0
}

.crumina-heading>:first-child {
    margin-top: 0
}

.crumina-heading+* {
    margin-top: 25px
}

.heading-title {
    margin-bottom: 30px;
    line-height: 1.3em
}

.c-primary {
    color: #ff5e3a
}

.medium-padding80 {
    padding: 80px 0
}

@media(max-width: 1024px) {
    .medium-padding80 {
        padding:45px 0
    }
}

@media(max-width: 800px) {
    .medium-padding80 {
        padding:35px 0
    }
}

.widget+.widget {
    margin-top: 35px
}

.widget p {
    font-size: 13px
}

.w-about .logo {
    color: inherit;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    padding: 0
}

.w-about ul {
    margin-bottom: 0
}

.w-about img {
    margin-right: 17px
}

.w-list a {
    color: #888da8;
    padding: 10px 0;
    display: block;
    font-weight: 500;
    position: relative
}

.w-list a:hover {
    color: #ff5e3a
}

.w-list ul {
    margin-bottom: 0
}

.chatroom-selection {
    text-align: center;
    margin-bottom: 80px;
}

.chatroom-selection h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.chat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.chat-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 88, 135, 0.05);
}

/* 1. The Container & Row (The logic that holds everything) */
.container {
    width: 100%;
    max-width: 1140px; /* Standard Bootstrap Desktop Width */
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* 2. The Centering Logic (lg-6 + m-auto) */
.m-auto { margin: auto !important; }

.col-12 { width: 100%; position: relative; padding: 0 15px; }

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%; /* This is what makes m-auto work */
    }
}

/* 3. The Button (Since you're using btn-primary) */
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    text-decoration: none;
    transition: all .15s ease-in-out;
}

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem;
}

.btn-primary {
    color: #fff;
    background-color: #007bff; /* Your site's specific orange color */
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #ff5e3a;
    border-color: #ff5e3a;
}

/* 4. Content Text Alignment */
.main-header-content {
    text-align: center;
}
.secretshare {
    background-color: #ff5887;
    border: none;
    color: #fff;
    padding: 16px 32px;
    text-align: center;
    font-size: 16px;
    margin: 4px 2px;
    opacity: .8;
    transition: .3s;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

/* --- SECTION PADDING --- */
.medium-padding80 {
    padding: 80px 0;
}

/* --- COLORS --- */
.c-primary { color: #ff5e3a !important; }

/* --- TEXT STYLES --- */
.heading-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.crumina-module p {
    line-height: 1.8;
    color: #515365;
}

/* --- THE WIDESCREEN GRID (Fixes the "Odd" layout) --- */
@media (min-width: 1200px) {
    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.666667%;
    }
    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
}

/* --- THE STACKING LOGIC (Laptops & Tablets) --- */
@media (max-width: 1199px) {
    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
        text-align: center; /* Centers text when stacked */
        margin-bottom: 40px;
    }
}

/* --- IMAGE FIX (Crucial for Mobile) --- */
img {
    max-width: 100%;
    height: auto;
}


/* --- THE GRID UPDATES (Footer Specific) --- */
/* col-lg-4 (The Logo) */
@media (min-width: 992px) {
    .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
    .col-lg-2 { flex: 0 0 auto; width: 16.666667%; } /* The 4 Link Columns */
}

/* col-md-4 (Tablet Layout: 3 columns per row) */
@media (min-width: 768px) and (max-width: 991px) {
    .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
}

/* Mobile: Everything stacks 100% wide */
@media (max-width: 767px) {
    .col-sm-12, .col-12 { flex: 0 0 auto; width: 100%; text-align: center; margin-bottom: 30px; }
}

/* --- FOOTER CONTENT STYLES --- */
.widget .title {
    font-size: 14px;
    font-weight: 700;
    color: #515365;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Remove default bullets and padding from lists */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #888da8;
    text-decoration: none;
    transition: color .3s ease;
}

.footer ul li a:hover {
    color: #ff5e3a; /* Your primary orange */
}

/* --- COPYRIGHT BAR --- */
.sub-footer-copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e6ecf5;
    text-align: center;
    font-size: 12px;
    color: #888da8;
}

.sub-footer-copyright a {
    color: #888da8;
    margin: 0 5px;
}