/*
Theme Name: SpreadsheetSuccess
Theme URI: https://spreadsheetsuccess.com
Author: Carlito Hendriks
Author URI: https://spreadsheetsuccess.com
Description: Custom theme for SpreadsheetSuccess
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: spreadsheetsuccess

This file contains non-critical CSS that will be loaded asynchronously.
Critical CSS is loaded inline in the head.
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* Theme Variables */
:root {
    --primary-color: #1B5233;
    --primary-color-light: #3CA560;
    --secondary-color: #0C4169;
    --text-color: #000000;
    --text-light: #FFFFFF;
    --background-color: #FFFFFF;
    --border-color: #E5E7EB;
    --body-font: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --heading-font: 'Oswald', sans-serif;
}

/* Base styles */
body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-color);
}

/* Base Layout */
#page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Header Styles */
.site-header {
    background-color: var(--primary-color);
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    margin-bottom: 2rem;
}

.header-content {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1rem 0;
    box-sizing: border-box;
    gap: 2rem;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.header-logo {
    max-width: 40px;
    height: auto;
}

.site-title {
    color: var(--text-light);
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.site-title a {
    color: var(--text-light);
    text-decoration: none;
}

/* Desktop Navigation (1024px and up) */
.desktop-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.desktop-navigation .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    justify-content: center;
}

.desktop-navigation .nav-menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.desktop-navigation .nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    display: block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.desktop-navigation .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: -1;
}

.desktop-navigation .nav-menu a:hover::after {
    background-color: var(--text-light);
}

.desktop-navigation .nav-menu .current-menu-item a::after {
    background-color: var(--secondary-color);
}

/* Desktop User Menu */
.desktop-navigation .user-menu {
    position: relative;
    margin-left: 2rem;
}

.desktop-navigation .user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.desktop-navigation .user-menu-trigger:hover {
    background-color: var(--primary-color-light);
}

.desktop-navigation .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--text-light);
}

.desktop-navigation .user-greeting {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.desktop-navigation .user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--primary-color);
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.desktop-navigation .user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-navigation .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.desktop-navigation .dropdown-item:hover {
    background-color: var(--primary-color-light);
}

.desktop-navigation .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Desktop Auth Buttons */
.desktop-navigation .auth-buttons {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.desktop-navigation .auth-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: var(--text-light);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.desktop-navigation .login-button {
    background-color: transparent;
    border: 1px solid var(--text-light);
}

.desktop-navigation .register-button {
    background-color: var(--primary-color-light);
}

.desktop-navigation .login-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.desktop-navigation .register-button:hover {
    background-color: var(--secondary-color);
}

/* Desktop Navigation Dropdowns */
.desktop-navigation .menu-item-has-children {
    position: relative;
}

.desktop-navigation .menu-item-has-children > a {
    padding-right: 2.5rem;
    position: relative;
}

.desktop-navigation .menu-item-has-children > a::before {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.desktop-navigation .menu-item-has-children > a::after {
    right: 2.5rem;
}

.desktop-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    min-width: 200px;
    padding: 0.5rem 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 4px 4px;
    z-index: 1000;
}

.desktop-navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-navigation .sub-menu li {
    margin: 0;
    padding: 0;
}

.desktop-navigation .sub-menu a {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.desktop-navigation .sub-menu a::after {
    display: none;
}

.desktop-navigation .sub-menu a:hover {
    background-color: var(--primary-color-light);
}

/* Media Queries */
@media (max-width: 1023px) {
    .desktop-navigation {
        display: none;
    }

    .menu-toggle {
        display: flex !important;
    }

    .mobile-navigation {
        display: block;
    }
}

@media (min-width: 1024px) {
    .mobile-navigation {
        display: none;
    }

    .menu-toggle {
        display: none !important;
    }
}

/* Main Content Layout */
.blog-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    width: 100%;
}

#primary {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    width: 100%;
}

#secondary {
    flex: 0 0 300px;
    position: sticky;
    top: 2rem;
    margin-left: 2rem;
    width: 300px;
}

/* Front Page Sections */
.hero-section,
.youtube-stats,
.youtube-subscription,
.master-excel-section,
.popular-categories {
    width: 80%;
    margin: 0;
    margin: 0 auto;
    padding: 0;
}

.hero-content,
.stats-container,
.subscription-content,
.blog-carousel-container,
.master-excel-content,
.category-grid,
.youtube-stats {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Front Page Specific */
.front-page .container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsive Layout */
@media screen and (max-width: 1024px) {
    .blog-content {
        flex-direction: column;
    }

    #secondary {
        flex: 0 0 100%;
        position: static;
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
    }
}

/* Sidebar Styles */
.widget-area {
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.sidebar-widget {
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Search Widget Styles */
.search-widget {
    margin-bottom: 2rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-field {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-right: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-submit {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-submit:hover {
    color: var(--primary-color-light);
}

/* Recent and Popular Posts Widget Styles */
.recent-posts-list,
.popular-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.recent-post-item,
.popular-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.recent-post-item:last-child,
.popular-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-item .post-thumbnail,
.popular-post-item .post-thumbnail {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.recent-post-item .post-thumbnail img,
.popular-post-item .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .post-thumbnail img,
.popular-post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.recent-post-item .post-content,
.popular-post-item .post-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding-right: 0.5rem;
}

.recent-post-item h4,
.popular-post-item h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
    overflow: hidden;
}

.recent-post-item h4 a,
.popular-post-item h4 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.recent-post-item h4 a:hover,
.popular-post-item h4 a:hover {
    color: var(--primary-color-light);
}

.post-date {
    font-size: 0.8rem;
    color: var(--secondary-color);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Comment Form Styles */
.comment-form-friendreferral {
    display: none !important;
}

.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.comment-body {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--background-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author img {
    border-radius: 50%;
}

.comment-meta {
    display: flex;
    flex-direction: column;
}

.comment-meta .fn {
    font-weight: 600;
    color: var(--primary-color);
}

.comment-content {
    margin-bottom: 1rem;
}

.reply {
    margin-top: 1rem;
}

.reply a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.875rem;
    transition: background-color 0.3s ease;
}

.reply a:hover {
    background-color: var(--primary-color-light);
}

/* Front Page Styles */
.hero-section {
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color-light) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color-light);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 4px;
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {

    .hero-section,
    .youtube-stats,
    .youtube-subscription {
        padding: 3rem 0;
    }

    .hero-content,
    .stats-container,
    .subscription-content {
        width: 90%;
    }
}

/* Latest Posts Section */
.latest-posts {
    margin-bottom: 4rem;
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Blog Carousel Styles */
.blog-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
    padding: 0 1rem;
    overflow: hidden;
}

.blog-carousel {
    position: relative;
    display: flex;
    transition: transform 0.5s ease;
    width: max-content;
}

.blog-carousel.animate {
    transition-duration: 0.5s;
    transition-property: transform;
}

.blog-card {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 1rem;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0;
    transition: transform 0.3s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* Home page blog card content */
.home .blog-card-content {
    padding: 1.5rem;
    background: var(--background-color);
    border-top: 1px solid var(--border-color);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    margin: 0 0 1rem;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.3;
    font-family: var(--heading-font);
    color: var(--primary-color);
}

.blog-card h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h3 a:hover {
    color: var(--primary-color-light);
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.blog-card-meta span {
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--secondary-color);
    padding: 0.2rem 0.75rem;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.blog-card-meta span:hover {
    background: var(--primary-color);
}

/* Navigation Buttons */
.blog-carousel-container i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.blog-carousel-container i:hover {
    background: var(--primary-color);
}

.blog-carousel-container i#left {
    left: 0;
}

.blog-carousel-container i#right {
    right: 0;
}

/* Responsive Adjustments */
@media screen and (min-width: 768px) {
    .blog-card {
        width: 280px;
    }
}

@media screen and (min-width: 1024px) {
    .blog-card {
        width: 320px;
    }
}

@media screen and (min-width: 1660px) {
    .blog-card {
        width: 350px;
    }
}

@media screen and (min-width: 2200px) {
    .blog-card {
        width: 380px;
    }
}

@media screen and (min-width: 2600px) {
    .blog-card {
        width: 400px;
    }
}

/* Master Excel Section */
.master-excel-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-light) 100%);
    color: var(--text-light);
    padding: 4rem 0;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.master-excel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

/* YouTube Stats Section */
.youtube-stats {
    background: linear-gradient(to bottom, var(--primary-color) 0%, #2a8150 70%, var(--primary-color-light) 100%);
    padding: 4rem 0;
    margin-bottom: 4rem;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.stats-container {
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 1.25rem;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 0;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {

    .hero-section,
    .youtube-stats,
    .youtube-subscription {
        padding: 3rem 0;
    }

    .hero-content,
    .stats-container,
    .subscription-content {
        width: 90%;
    }

    .stat-item {
        padding: 1.5rem;
    }
}

/* YouTube Subscription Section */
.youtube-subscription {
    background: linear-gradient(to bottom, var(--secondary-color) 0%, #0951af 100%);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.subscription-content {
    position: relative;
    z-index: 1;
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.subscription-content h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.subscription-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.youtube-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: #FF0000;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.youtube-button:hover {
    background-color: #CC0000;
}

/* Popular Categories Section */
.popular-categories {
    margin-bottom: 4rem;
}

.popular-categories h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.post-count {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 1rem;
    margin-top: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
    box-sizing: border-box;
}

.footer-widget {
    padding: 0 1rem;
}

.footer-widget h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color-light);
}

.footer-widget p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo {
    max-width: 150px;
    height: auto;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 1;
}

.social-links {
    margin-top: 1.5rem;
}

.youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background-color: #FF0000;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.youtube-link:hover {
    background-color: #CC0000;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-legal-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-menu li {
    margin: 0;
}

.footer-legal-menu a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.75rem;
    transition: opacity 0.3s ease;
}

.footer-legal-menu a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-legal-menu {
        justify-content: center;
    }
}

/* Unified Border Radius */
.hero-section,
.youtube-stats,
.youtube-subscription,
.category-card,
.blog-card,
.stat-item {
    border-radius: 8px;
}

/* Category Page Styles */
.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color-light) 100%);
    color: var(--text-light);
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
}

.category-header h1 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
}

.category-description {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Category page specific blog grid */
.category .blog-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    width: 100%;
    box-sizing: border-box;
}

.category .blog-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    width: 100%;
}

.category .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.category .blog-card-image {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    max-height: 220px;
    line-height: 0;
    font-size: 0;
}

.category .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
    padding: 0;
}

.category .blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.category .blog-card-content {
    padding: 1.5rem 1.5rem 0 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: none;
    border-top: none;
}

.category .blog-card .entry-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.category .blog-card .entry-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.category .blog-card .entry-title a:hover {
    color: var(--primary-color-light);
}

.category .blog-card .entry-meta {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category .category-pill,
.category .tag-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category .category-pill {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.category .category-pill:hover {
    background-color: var(--primary-color-light);
    color: var(--text-light);
}

.category .tag-pill {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.category .tag-pill:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.category .blog-card .read-more {
    align-self: flex-start;
    margin-top: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.category .blog-card .read-more:hover {
    background-color: var(--primary-color-light);
}

/* Category page responsive adjustments */
@media screen and (max-width: 768px) {
    .category .blog-card {
        flex-direction: column;
    }

    .category .blog-card-image {
        flex: 0 0 200px;
        min-height: 200px;
        max-height: 200px;
    }

    .category-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .category-header h1 {
        font-size: 2rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .category .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1025px) {
    .category .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Sidebar */
@media screen and (max-width: 768px) {
    .widget-area {
        margin-top: 2rem;
    }
}

.load-more-container {
    text-align: center;
    margin: 3rem 0;
}

.load-more-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.load-more-button:hover {
    background-color: var(--primary-color-light);
}

.load-more-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Single Post Layout */
.single .site-main {
    max-width: 800px;
    margin: 0;
    padding: 2rem 0;
    width: 100%;
}

.single #secondary {
    flex: 0 0 300px;
    position: sticky;
    top: 2rem;
    margin-left: 2rem;
}

.single .blog-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .single .blog-content {
        flex-direction: column;
    }

    .single #secondary {
        flex: 0 0 100%;
        position: static;
        margin-left: 0;
        margin-top: 2rem;
    }
}

.single .entry-header {
    text-align: left;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color-light) 100%);
    color: var(--text-light);
    border-radius: 8px;
    position: relative;
}

.single .featured-image {
    margin: -2rem -2rem 2rem -2rem;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    max-height: 400px;
}

.single .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ensure the negative margins don't affect other elements */
.single .entry-header > *:not(.featured-image) {
    position: relative;
    z-index: 2;
}

.single .entry-title {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.single .entry-meta {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
}

.single .entry-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single .entry-meta i {
    font-size: 1rem;
    opacity: 0.9;
}

.single .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.single .entry-content p {
    margin-bottom: 1.5rem;
}

.single .entry-content h2,
.single .entry-content h3,
.single .entry-content h4 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.single .entry-content h2 {
    font-size: 2rem;
}

.single .entry-content h3 {
    font-size: 1.75rem;
}

.single .entry-content h4 {
    font-size: 1.5rem;
}

.single .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.single .entry-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single .entry-content a:hover {
    color: var(--primary-color-light);
}

.single .entry-content ul,
.single .entry-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single .entry-content li {
    margin-bottom: 0.5rem;
}

.single .entry-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 2rem;
    margin: 2rem 0;
    background-color: rgba(27, 82, 51, 0.05);
    border-radius: 0 8px 8px 0;
}

.single .entry-content blockquote p {
    margin: 0;
    font-style: italic;
    color: var(--primary-color);
}

.single .entry-content pre {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.single .entry-content code {
    font-family: monospace;
    background-color: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.single .entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.single .social-share {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.single .social-share-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.single .social-share-buttons {
    display: flex;
    gap: 1rem;
}

.single .social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.single .social-share a:hover {
    background-color: var(--primary-color-light);
    transform: translateY(-2px);
}

/* Comment Form Styles */
.comment-respond {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-respond h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.comment-form {
    display: grid;
    gap: 1.5rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.comment-form textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-form .submit {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form .submit:hover {
    background-color: var(--primary-color-light);
}

.comment-form .required {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .single .entry-title {
        font-size: 2rem;
    }

    .single .entry-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .single .entry-content {
        font-size: 1rem;
    }

    .single .entry-content h2 {
        font-size: 1.75rem;
    }

    .single .entry-content h3 {
        font-size: 1.5rem;
    }

    .single .entry-content h4 {
        font-size: 1.25rem;
    }
}

/* 404 Error Page */
.error-404 {
    padding: 4rem 0;
    width: 100%;
}

.error-404 .container {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.error-content {
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color-light) 100%);
    border-radius: 8px;
    color: var(--text-light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Left Column - Error Content */
.error-404 .error-main {
    text-align: left;
    padding-right: 2rem;
}

.error-404 h1 {
    font-size: 5rem;
    margin: 0;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.error-404 h2 {
    font-size: 2rem;
    margin: 0.5rem 0;
    color: var(--text-light);
    font-family: var(--heading-font);
}

.error-message {
    font-size: 1.2rem;
    margin: 1rem 0;
    opacity: 0.9;
    font-family: var(--body-font);
}

.error-404 .button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--text-light);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--body-font);
    margin-top: 1rem;
}

.error-404 .button:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Right Column - Categories */
.error-404 .right-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.error-404 .popular-categories {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.error-404 .popular-categories h3 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-family: var(--heading-font);
    font-size: 1.5rem;
}

.error-404 .category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    width: 100%;
    max-width: 400px;
}

.error-404 .category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: var(--body-font);
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.error-404 .category-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
    .error-404 .container {
        width: 90%;
    }

    .error-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .error-404 .error-main {
        text-align: center;
        padding-right: 0;
    }

    .error-404 .right-column {
        text-align: center;
    }

    .error-404 .category-list {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .error-404 h1 {
        font-size: 4rem;
    }

    .error-404 h2 {
        font-size: 1.75rem;
    }

    .error-message {
        font-size: 1.1rem;
    }

    .error-404 .category-list {
        flex-direction: column;
    }

    .error-404 .category-link {
        width: 100%;
        justify-content: center;
    }

    .error-content {
        padding: 1.5rem;
    }
}

/* Authentication Pages */
.auth-page {
    padding: 4rem 0;
    width: 100%;
}

.auth-content {
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(to bottom, var(--primary-color) 0%, var(--primary-color-light) 100%);
    border-radius: 8px;
    color: var(--text-light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.auth-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.auth-error {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-group .input {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group .input:focus {
    outline: none;
    border-color: var(--text-light);
    background-color: rgba(255, 255, 255, 0.2);
}

.form-group .input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.remember-me {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.remember-me input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin: 0;
}

.button-primary {
    width: 100%;
    padding: 1rem;
    background-color: var(--text-light);
    color: var(--primary-color);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.button-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

.auth-links {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.auth-links a:hover {
    opacity: 0.8;
}

.auth-links .separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

@media screen and (max-width: 768px) {
    .auth-page {
        padding: 2rem 0;
    }

    .auth-content {
        padding: 1.5rem;
    }

    .auth-header h1 {
        font-size: 2rem;
    }
}

/* Mobile Navigation (below 1024px) */
.mobile-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
}

.mobile-navigation.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-header .header-logo {
    max-width: 40px;
    height: auto;
}

.mobile-menu-header .site-title {
    font-size: 1.25rem;
    margin: 0;
    color: var(--text-light);
}

.menu-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.menu-close:hover {
    opacity: 0.8;
}

.mobile-menu {
    padding: 0;
    height: calc(100% - 80px);
    overflow-y: auto;
}

.mobile-menu .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .nav-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    display: block;
    transition: background-color 0.3s ease;
}

.mobile-menu .nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Dropdowns */
.mobile-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 3rem;
}

.mobile-menu .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.mobile-menu .menu-item-has-children.toggled > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-menu .sub-menu {
    display: none;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu .sub-menu a {
    padding-left: 3rem;
    font-size: 1rem;
}

/* Mobile User Menu */
.mobile-menu .user-menu {
    padding: 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.mobile-menu .user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--text-light);
}

.mobile-menu .user-greeting {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-menu .user-dropdown {
    padding: 0.5rem 0;
}

.mobile-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    color: var(--text-light);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Mobile Auth Buttons */
.mobile-menu .auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
}

.mobile-menu .auth-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 4px;
    color: var(--text-light);
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
}

.mobile-menu .login-button {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu .register-button {
    background-color: var(--primary-color-light);
}

.mobile-menu .login-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu .register-button:hover {
    background-color: var(--secondary-color);
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.menu-toggle:hover {
    opacity: 0.8;
}

.menu-toggle i {
    font-size: 1.25rem;
}