/*
Theme Name: lwc365
Theme URI: https://example.com/lwc365
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme for Skill Shoot Photography School
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lwc365
*/

/* =================================
   Color Variables
   ================================= */

:root {
    --color-primary-dark: #245d51;
    --color-secondary: #cb8461;
    --color-text-dark: #2c2c2c;
    --color-text-muted: #808080;
    --color-bg-light: #f8f8f8;
    --color-bg-light-beige: #f2e2db;
    --color-white: #ffffff;
    --color-link-blue: #0d6efd;
}

/* =================================
   Base Styles
   ================================= */

* {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-white);
}

/* =================================
   Typography Classes from Design
   ================================= */

.text-heding-2-regular-7_769 {
    font-size: 36px;
    font-family: "Poppins-Regular";
    font-weight: 400;
    letter-spacing: 0em;
}

.text-body-2-regular-7_745 {
    font-size: 16px;
    font-family: "Poppins-Regular";
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 35px;
}

.text-heding-2-semibold-7_761 {
    font-size: 36px;
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    letter-spacing: 0em;
}

.fill-paragraf-7_893-paragraph {
    color: var(--color-text-muted);
}

.fill-body-7_894-paragraph {
    color: var(--color-text-dark);
}

.text-heding-4-regular-7_767 {
    font-size: 24px;
    font-family: "Poppins-Regular";
    font-weight: 400;
    letter-spacing: 0em;
}

.text-body-2-semibold-7_742 {
    font-size: 16px;
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    letter-spacing: 0em;
    line-height: 35px;
}

.fill-body-7_894-text {
    color: var(--color-text-dark);
}

.text-heding-2-bold-7_753 {
    font-size: 36px;
    font-family: "Poppins-Bold";
    font-weight: 700;
    letter-spacing: 0em;
}

.text-heding-3-bold-7_752 {
    font-size: 28px;
    font-family: "Poppins-Bold";
    font-weight: 700;
    letter-spacing: 0em;
}

.fill-secondary-color-7_887 {
    background-color: var(--color-secondary);
}

.fill-primary-color-7_888 {
    background-color: var(--color-primary-dark);
}

.text-heding-5-bold-7_750 {
    font-size: 20px;
    font-family: "Poppins-Bold";
    font-weight: 700;
    letter-spacing: 0em;
}

.text-heding-1-bold-7_754 {
    font-size: 48px;
    font-family: "Poppins-Bold";
    font-weight: 700;
    letter-spacing: 0em;
}

.text-heding-4-semibold-7_759 {
    font-size: 24px;
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    letter-spacing: 0em;
}

.text-body-3--regular-7_744 {
    font-size: 12px;
    font-family: "Poppins-Regular";
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 30px;
}

.text-body-3--semibold-7_741 {
    font-size: 12px;
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    letter-spacing: 0em;
    line-height: 30px;
}

.fill-primary-color-7_888-paragraph {
    color: var(--color-primary-dark);
}

.text-body-1-semibold-7_743 {
    font-size: 18px;
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    letter-spacing: 0em;
    line-height: 35px;
}

.text-body-1-regular-7_746 {
    font-size: 18px;
    font-family: "Poppins-Regular";
    font-weight: 400;
    letter-spacing: 0em;
    line-height: 35px;
}

.text-heding-4-bold-7_751 {
    font-size: 24px;
    font-family: "Poppins-Bold";
    font-weight: 700;
    letter-spacing: 0em;
}

.text-display-1-semibold-7_774 {
    font-size: 60px;
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    letter-spacing: 0em;
}

/* Enhance carousel indicators */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
    background-color: #007bff;
    width: 30px;
    border-radius: 15px;
}

/* Ensure carousel controls are always visible */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Make control icons larger */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* =================================
   Helper Classes
   ================================= */

.text-primary-dark {
    color: var(--color-primary-dark);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-muted {
    color: var(--color-text-muted);
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-light-beige {
    background-color: var(--color-bg-light-beige);
}

.rounded-10 {
    border-radius: 10px;
}

.min-vh-75 {
    min-height: 75vh;
}

/* =================================
   Header & Navigation
   ================================= */

header.sticky-top {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand .text-heding-2-bold {
    font-size: 28px;
    font-family: "Poppins-Bold";
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-family: "Poppins-Regular";
    font-weight: 400;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color-secondary);
}

.navbar-nav .nav-link.active {
    color: var(--color-secondary);
}

/* =================================
   Hero Section
   ================================= */

.hero-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-section h1 {
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-section p {
    margin-bottom: 32px;
}

/* =================================
   Buttons
   ================================= */

.btn {
    font-family: "Poppins-Medium";
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: #b87452;
    border-color: #b87452;
}

.btn-outline-secondary {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn-outline-secondary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

/* =================================
   Stats Section
   ================================= */

.stats-section {
    padding: 60px 0;
}

.stats-bg {
    background-color: var(--color-bg-light);
    border-radius: 10px;
    padding: 40px 0;
}

.stat-item h3 {
    margin-bottom: 5px;
}

.stat-item p {
    margin-bottom: 0;
}

/* =================================
   Courses Section
   ================================= */

.courses-section {
    padding: 80px 0;
}

.course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.course-image {
    position: relative;
    overflow: hidden;
}

.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(253, 208, 186, 0.9);
    color: var(--color-secondary);
    padding: 5px 15px;
    border-radius: 24px;
    font-size: 16px;
    font-family: "Poppins-Regular";
}

.course-info h3 {
    margin-bottom: 10px;
}

.course-description {
    margin-bottom: 20px;
}

/* =================================
   Testimonials Section
   ================================= */

.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-text {
    margin-bottom: 24px;
}

/* =================================
   Subscribe Section
   ================================= */

.subscribe-section {
    padding: 80px 0;
}

.subscribe-form .form-control {
    max-width: 400px;
    font-family: "Poppins-Regular";
}

/* =================================
   Channels Section
   ================================= */

.channels-section {
    padding: 80px 0;
}

.channel-card {
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #eee;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.channel-content-full {
    padding: 40px 20px;
    text-align: center;
}

.channel-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
    font-family: "Poppins-SemiBold";
}

.channel-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
    font-family: "Poppins-Regular";
}

.channel-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.channel-link:hover .channel-title {
    color: var(--color-secondary);
}

.channel-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 100%;
    transition: all 0.3s ease;
}

.channel-btn:hover .channel-title {
    color: var(--color-secondary);
}

/* =================================
   Products Section
   ================================= */

.products-section {
    padding: 80px 0;
}

.product-grid {
    margin-top: 20px;
}

.product-link-item {
    display: block;
    padding: 15px;
    color: var(--color-link-blue);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.product-link-item:hover {
    color: var(--color-secondary);
    background-color: rgba(203, 132, 97, 0.05);
    border-radius: 5px;
}

/* =================================
   Cases Section
   ================================= */

.cases-section {
    padding: 80px 0;
}

.case-grid {
    margin-top: 20px;
}

.case-link-item {
    display: block;
    padding: 15px;
    color: var(--color-link-blue);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.case-link-item:hover {
    color: var(--color-secondary);
    background-color: rgba(203, 132, 97, 0.05);
    border-radius: 5px;
}

/* =================================
   Knowledge Section
   ================================= */

.knowledge-section {
    padding: 80px 0;
}

.knowledge-search-form {
    max-width: 400px;
    margin-left: auto;
}

.knowledge-search-form .input-group {
    display: flex;
}

.knowledge-search-form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    padding: 10px 15px;
}

.knowledge-search-form .btn {
    border-radius: 0 5px 5px 0;
    padding: 10px 20px;
}

.knowledge-list {
    margin-top: 30px;
}

.knowledge-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.knowledge-item:last-child {
    border-bottom: none;
}

.knowledge-image-link {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.knowledge-image-link img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.knowledge-title {
    margin-bottom: 15px;
}

.knowledge-title a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.knowledge-title a:hover {
    color: var(--color-secondary);
}

.knowledge-excerpt {
    line-height: 1.8;
}

/* =================================
   Pagination
   ================================= */

.pagination {
    justify-content: center;
    margin-top: 40px;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    color: var(--color-primary-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    padding: 8px 16px;
}

.pagination .page-link:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.pagination .page-item.active .page-link {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.pagination .page-item.disabled .page-link {
    color: var(--color-text-muted);
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.1);
}

/* WordPress Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.pagination li {
    margin: 0 5px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.pagination .current {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.pagination .prev,
.pagination .next {
    font-weight: bold;
}

.pagination .prev a,
.pagination .next a {
    background-color: #f8f9fa;
}

.pagination .prev a:hover,
.pagination .next a:hover {
    background-color: var(--color-secondary);
}


/* =================================
   Footer
   ================================= */

footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 80px 0 30px;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--color-secondary);
}

footer .footer-title {
    color: var(--color-white);
    font-family: "Poppins-Bold";
    font-size: 24px;
    margin-bottom: 20px;
}

footer .footer-title span {
    color: var(--color-secondary);
}

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

footer .subscribe-form input {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
}

footer .subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.6);
}

footer .item-ga {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAUCAMAAAC3SZ14AAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAADAUExURUxpcfz13vnkjOnOi+K2YPDdsvHVvuvGX+nOneGwXuvQfdjEc5dwWfjqoNyjVNuwfvXHbO3jquW5d7CQe9yrasJ/Ptu6hum8VdI7IuWvT/DOa+GaQNEFBwAEff/UXAIBa9mSR9QfF9lpNfvEVO1qKHB5hMO3g9aIPdtJJ5aOffPeddmlULScZFQnUDoZQOqCOc9zM7oHDsFRJq6FUHtiUsgiEFtXb/qbOfeyRRIuj//paJlfMwYAX/0sD1sBN3uKlx8mLuYAAAAXdFJOUwActZX9YAr+Rujs+/wtyq7DgMLO4JyYg9OOagAAAR9JREFUGNNF0MVywzAUhWHFUJnCaWWBJTNzHKb3f6vamXR6F3fxzfybA8D7Zup2q87A/2lL6zYMe2up/slXWd/aMFTKev/1iVaV1TA7Zae4kt42V+rjyfO81OuCqDbmE2XOPmS2x2wWxiKbT9lIKfPsCU0RSTOgnjKnbFjvIpeFpsj4GvzQ2BmC3vZ9P7kOTnyWwS4hF9E3qe2PKi453QG9Pb+c7uH3bfPoRBQkOlhSHl+e3eFwSO2nExMsg42L+csR96q6CyfiCl4Bo3ApMa2oLI7HCFKKDaCiwm0DzoMzv/LExVADQIUoSQjCiBDqElObltEhRAiOjyIC9YmkPFcUhEcpECK5NK0lKygYO4wggsb6M6H2vVjo+mIjTxX4BWR7IwKuvUM8AAAAAElFTkSuQmCC);
    background-position: 0;
    background-repeat: no-repeat;
    background-size: 14px auto;
    display: inline-block;
    margin-left: 10px;
    padding-left: 20px;
}

/* =================================
   Modal
   ================================= */

.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-title {
    color: var(--color-primary-dark);
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.modal-body img {
    max-width: 300px;
    border-radius: 8px;
}

/* =================================
   Custom Bootstrap Columns
   ================================= */

.col-lg-1-5 {
    position: relative;
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

@media (min-width: 992px) {
    .col-lg-1-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* =================================
   Footer QR Link
   ================================= */

.qr-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

.qr-link:hover {
    color: var(--color-secondary);
}

.beian-icon {
    height: 18px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

/* =================================
   Responsive Adjustments
   ================================= */

@media (max-width: 768px) {
    .channel-box {
        padding: 30px 15px;
        min-height: 120px;
    }
    
    .channel-card h3 {
        font-size: 16px;
    }
    
    .knowledge-search-form {
        max-width: 100%;
        margin-left: 0;
    }
    
    .product-link-item,
    .case-link-item {
        padding: 10px;
        font-size: 14px;
    }
}
