/*

Theme Name: Studios

Version: 1.0.0

Text Domain: yuclick

*/

/* ===================================
   FONTS
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ===================================
   GLOBAL STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ecf0f1;
    background-attachment: fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll issues */
}
img{
    max-width: 100%;
}
a {
    text-decoration: none;
}
h1.main-heading {
    font-size: 29px;
    color: #333;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===================================
   NAVIGATION STYLES
   =================================== */

/* ===================================
   NAVIGATION STYLES
   =================================== */

.navbar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 1168px;
    width: 100%;
    height: 72px;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 0px 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.nav-link:focus-visible {
    outline: 0;
    box-shadow: none;
}
/*
.navbar-hidden {
    transform: translateX(-50%) translateY(-100%);
    opacity: 0.7;
}

.navbar-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}*/

.navbar-brand {
    font-family: "Poppins", sans-serif !important;
    font-weight: 600;
    text-decoration: none;
    color: #2c3e50;
}

.navbar-brand i {
    margin-right: 5px;
}

.nav-link, .navbar ul li a {
    color: #2c3e50 !important;
    font-family: "Poppins", sans-serif !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 20px;
    transition: all 0.3s ease;
    margin: 0 2px;
	    text-decoration: none;
}
.custom-logo-link img {
    height: 32px;
    width: auto;
    margin-right: .5rem;
}
.nav-link:hover, .navbar ul li a:hover {
    color: #0d6efd !important;
}

.navbar-nav {
    font-family: "Poppins", sans-serif !important;
}

.navbar-toggler {
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(13, 110, 253, 0.1);
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.navbar-toggler:hover {
    background: rgba(13, 110, 253, 0.2);
}

.search-container {
    position: relative;
    margin-left: 1rem;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    border-radius: 8px;
    border: none !important;
    padding: 8px 16px 8px 36px !important;
    width: 160px;
    background: #f5f5f5;
    color: #333;
    font-size: 0.9rem;
    transition: width 0.3s ease;
}

.search-input::placeholder {
    color: #999;
}

.search-input:focus {
    box-shadow: none !important;
    border: none !important;
    outline: none;
    background: #f5f5f5;
    width: 240px;
    transition: width 0.3s ease;
}

.search-input:focus + .search-icon,
.search-container:focus-within .search-icon {
    color: #0d6efd;
}

/* ===================================
   BANNER SECTION
   =================================== */

.banner-background {
    position: relative;
    height: 73vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
}

.banner-background.banner-compact {
    height: 34vh;
}

.banner-background.banner-hidden {
    height: 0;
    min-height: 0;
}

.image-credit-container {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1168px;
    width: 100%;
    text-align: right;
}


.image-credit {
    display: inline-block;
    background: #0009;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

/* ===================================
   MAIN LAYOUT
   =================================== */

.main-container {
    margin-top: -50px;
    padding: 0 15px;
}

.content-wrapper {
    display: flex;
    gap: 30px;
	/* align-items: flex-start;*/
    z-index: 100;
    position: relative;
    max-width: 1168px;
    margin: 0 auto;
}

.main-content {
    flex: 1;
    order: 1;
}

.tags-sidebar {
    flex-shrink: 0;
    width: 280px;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Ensure sticky children work properly 
    height: fit-content;*/
}

/* ===================================
   CONTENT SECTIONS
   =================================== */

.content-section {
    border-radius: 15px;
    opacity: 0;
	    margin-bottom: 40px;
    transform: translateY(20px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
/*
.content-section p:last-child {
    margin-bottom: 0;
}
*/
.content-section .card-body {
	padding: 46px 3.563em 35px;
}
.content-section.fade-in,
.content-section:not(.d-none) {
    opacity: 1;
    transform: translateY(0);
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section h3 {
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 500;
}

.content-section p {
    color: #212529;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
}

.content-section ul {
    color: #5a6c7d;
    line-height: 1.6;
}

.content-section li {
    margin-bottom: 8px;
}

/* Content section backgrounds */
#catalog-content,
#messageboards-content,
#contact-content {
    background: white;
    padding: 46px 3.563em 35px;
}

/* ===================================
   CARDS
   =================================== */

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 20%);
}

.card-body {
    border: none;
}

/* ===================================
   PROFILE SECTION
   =================================== */

.profile-card {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 20%);
    text-align: center;
  
}
.sidebar-banner img {
    max-width: 100%;
}
section.static_image {
     top: 20px;
    position: static;
    max-width: 280px;
    transition: 1s;
    position: sticky;
    top: 24px;
}

.profile-avatar img {
    max-width: 100%;
    margin: 0;
	   border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar-image:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-info {
    margin-bottom: 20px;
}

.profile-name {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 0;
}

.profile-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.profile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link.twitter {
    background-color: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
}

.social-link.github {
    background-color: rgba(51, 51, 51, 0.1);
    color: #333;
}

.social-link.linkedin {
    background-color: rgba(0, 119, 181, 0.1);
    color: #0077b5;
}

.social-link:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link.twitter:hover {
    background-color: #1da1f2;
    color: white;
}

.social-link.github:hover {
    background-color: #333;
    color: white;
}

.social-link.linkedin:hover {
    background-color: #0077b5;
    color: white;
}

/* ===================================
   CATEGORIES SECTION
   =================================== */

.categories-container {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0px 2px 5px 2px rgb(0 0 0 / 20%);
}

.categories-title {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: rgba(248, 249, 250, 0.8);
    color: #495057;
    font-weight: 500;
    border: 1px solid transparent;
}

.category-item:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-color: rgba(13, 110, 253, 0.2);
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.15);
}

.category-name {
    font-size: 0.95rem;
}

.category-count {
    background-color: rgba(108, 117, 125, 0.15);
    color: #6c757d;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-item:hover .category-count {
    background-color: rgba(13, 110, 253, 0.15);
    color: #0d6efd;
}

/* ===================================
   TAGS SECTION
   =================================== */

.tags-container {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tags-title {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.tag:hover {
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
    background-color: #0d6efd;
    color: white;
}

/* ===================================
   FORM ELEMENTS
   =================================== */
.login-pagebg p.login-title {
    display: none;
}

.form-control {
	    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    transition: border-color 0.2s 
ease-in-out, box-shadow 0.2s 
ease-in-out;
}

form.login_form input.login-input, .create-signup .form-control {
	    width: 100%;
		 margin-bottom: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus, form.login_form input.login-input:focus,
.create-signup .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.btn-primary, button.login-button, .join_now_btn input[type="submit"] {
     border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover, button.login-button:hover, .join_now_btn input[type="submit"]:hover {
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}
.d-flex.align-middle.login-remember input {
    margin-right: 3px;
}
button.login-button, .join_now_btn input[type="submit"] {
    margin-top: 15px;
	 border-radius: 5px;
    padding: 10px 60px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
	background:#4c505c;
	color:#fff;
	    border: 0;
}
.btn-outline-secondary {
    border-radius: 20px;
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bottom-links a{ }
.bottom-links a:hover{}
/* ===================================
   INTERACTIVE ELEMENTS
   =================================== */

.list-group-item-action:hover {
    background-color: rgba(13, 110, 253, 0.05);
    transition: all 0.2s ease-in-out;
}

.content-section .bi {
    background-color: rgba(13, 110, 253, 0.1);
    padding: 6px;
    border-radius: 6px;
    margin-right: 8px !important;
    transition: all 0.2s ease-in-out;
}

.content-section .bi:hover {
    background-color: rgba(13, 110, 253, 0.2);
}
.search-nav i.bi.bi-search {
	display:none;
}

.top_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ccc;
    padding-top: 21px;
}

.top_content p.edit-link {
    margin: 0;
}

.top_content p.edit-link a.post-edit-link {
    text-decoration: none;
    color: #00749e;
}
.top_content p.edit-link a.post-edit-link:hover {
    color: #0a58ca;
}
.search-phone input.phone_search_butn {
    position: absolute;
    width: 25px;
    height: 25px;
    padding: 0;
    font-size: 0;
    top: 5px;
    left: 5px;
    opacity: 0;
}
/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
.navbar {
	max-width: 930px;
}
.nav-link {
    margin: 0 1px;
    font-size: 15px;
}
}
@media (max-width: 991px) {
	.content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .tags-sidebar {
        width: 100%;
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
    
    .profile-card {
        position: relative;
        top: auto;
   }

    .categories-tags-sticky-container {
        position: relative;
        top: auto;
    }

    .navbar-collapse, .search-phone{
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        width: auto;
        background: white;
        border-radius: 16px;
        margin-top: 8px;
        margin-right: 8px;
        padding: 0 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 1000;
		        transition: 1s;
    }
.search-phone {
	width: 100%;
	left: 0;
	right: 0;
	margin-right: 0;
	padding: 5px;
}
.search-phone .search-container .search-input {
	width: 100%;
}
.search-phone .search-container {
		padding: 0;
	display: block;
	margin: 0;
}
.search-phone .search-container {
    display: block;
}
    ul.navbar-nav.mx-auto{
		 padding: 20px 0;
	}
	.navbar-nav {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-link, .navbar ul li a {
        display: block;
        text-align: left;
        padding: 12px 16px !important;
        margin: 0;
        border-radius: 12px;
        font-size: 0.95rem;
        white-space: nowrap;
    }
    
    .search-input {
        width: 100%;
        margin: 0;
        font-size: 0.9rem;
        padding: 12px 16px;
        border-radius: 12px;
        transition-property: all;
        transition-timing-function: cubic-bezier(.4, 0, .2, 1);
        transition-duration: .15s;
    }
	.navbar {
		width: calc(100% - 30px);
		max-width: 690px;
	}
	.search-nav i.bi.bi-search,
	.search-nav i.bi.bi-x-lg.x-phone {
		color: #000;
		font-size: 18px;
		margin-right: 15px;
		display:inline-block;
	}
	.search-container {
		display: none;
	}
	h1.main-heading {
    font-size: 25px;
 }
 .content-section .card-body {
    padding: 30px 1.5em 35px;
}
section.static_image.fixed-header {
    position: relative;
    margin-bottom: 50px;
	    max-width: inherit;
}
}

@media (max-width: 768px) {
    .search-input {
        width: 120px;
        font-size: 0.85rem;
        transition-property: all;
        transition-timing-function: cubic-bezier(.4, 0, .2, 1);
        transition-duration: .15s;
    }

    .nav-link, .navbar ul li a  {
        padding: 6px 12px !important;
        margin: 2px 0;
    }
	section.static_image.fixed-header {
    position: relative;
}
	
}
@media (max-width: 767px) {
.navbar {
        max-width: 510px;
    }	
	.content-section {
		margin-bottom: 0;
	}
	.top_content p.edit-link {
    width: 100px;
}
}
@media (max-width: 576px) {
	
    .search-input {
        width: 100px;
        transition-property: all;
        transition-timing-function: cubic-bezier(.4, 0, .2, 1);
        transition-duration: .15s;
    }

    .navbar-nav .nav-item {
        text-align: center;
    }
	.navbar .container {
		padding: 0;
	}
	.navbar-brand {
		margin-right: 0;
	}
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #0d6efd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #0b5ed7;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.back-to-top:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* ===================================
   SIMPLE FOOTER
   =================================== */

.simple-footer {
    padding: 30px 0;
    margin-top: 30px;
}

.footer-text {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.footer-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #0d6efd;
    text-decoration: none;
}

.footer-powered {
    font-size: 0.85rem;
    color: #868e96;
    margin-top: 8px;
    display: inline-block;
}

@media (max-width: 768px) {
    .footer-text {
        font-size: 0.85rem;
    }
    
    .footer-powered {
        font-size: 0.8rem;
    }
}