/*
Theme Name: Byte and Tidy
Description: An elegant WordPress theme for lifestyle and home organization
Version: 1.0
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* Elegant Color Scheme */
:root {
	--navy: #2A344C;
	--mint-green: #ADEBB3;
	--off-white: #F3F4F6;
	--soft-yellow: #FDFD96;
    --white: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --border-color: #e2e8f0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter";
    line-height: 1.7;
    color: black;
    background: var(--white);
    font-size: 16px;
}

/* Global Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 500;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Elegant Header */
.site-header {
    background: var(--navy);
    border-bottom: 1px solid var(--border-color);
    position: static;
    z-index: 1000;
    box-shadow: 0 2px 4px var(--shadow-light);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Refined Logo */
.site-logo {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.logo-bite,
.logo-tidy {
    font-family: 'Montserrat', sans-serif;
	font-weight: 600;
    font-size: 2.2rem !important;
    color: var(--off-white);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.logo-ampersand {
    font-family: 'Rock Salt', cursive !important;
    font-size: 1.6rem !important;
    color: grey;
    margin: 0 4px;
    text-decoration: none !important;
}

/* Clean Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
	font-family: Arimo;
	font-weight: 600;
  	font-style: normal;
	font-style: uppercase;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
  	font-weight: 700;
	color: var(--off-white);
    font-size: 1.2rem;
	text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

/* Elegant Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Landing Page */

.landing-page {
	padding-top: 20px;
	padding-bottom: 20px;
  	margin-left: auto;
  	margin-right: auto;
	background-color: var(--off-white);
}

.landing-phrase {
	font-family: 'Montserrat', sans-serif;
	color: var(--navy); 
  	font-weight: 400;
  	font-style: normal;
	font-size: 2em;
	text-align: center;
}

/* Hero Page */

.hero-cleaning {
	height: 450px;
	content: block;
}

.hero-coding {
	height: 450px;
	content: block;
	background-color: var(--off-white);
}

/* Hero Page Title */

.hero-cleaning-title {
	font-family: 'Montserrat', sans-serif;
	color: var(--navy);
	font-weight: 600;
	font-style: normal;
	font-size: 2em;
	text-align: center;
	padding-top: 0.5em;
	padding-bottom: 1em;
}

.hero-coding-title {
	font-family: 'Montserrat', sans-serif;
	color: var(--navy);
	font-weight: 600;
	font-style: normal;
	font-size: 2em;
	text-align: center;
	padding-top: 0.5em;
	padding-bottom: 1em;
}

/* Images cleaning */

.images-cleaning {
  float: left;
  width: 33.33%;
  padding-left: 2em;
}

/* Posts Container */
.posts-container {
    width: 100%;
}

.latest-post {
	font-family: 'Montserrat', sans-serif;
	font-weight: 800;
	font-size: 1rem;
	text-transform: uppercase;
	padding-bottom: 1.5em;
	color: var(--navy);
	letter-spacing: 0.5px;
}

/* Blog Post Styles - Tile Layout */
/* Fixed Post Layout */
.post {
    background: #fff;
    border-radius: 10px;
    box-shadow: none;
    margin-bottom: 30px;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

.post:hover {
    transform: translateY(-2px);
    opacity: 0.85;
    box-shadow: none;
}

.post-layout {
    display: flex;
    align-items: stretch;
    min-height: 200px;
}

.post-image {
    flex: 0 0 300px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-image:hover img {
    transform: scale(1.05);
}

.post-details {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--navy);
}

.post-title a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--mint-green);
}

.post-meta {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    font-family: 'Inter', sans-serif;
}

.read-more {
    background: none;
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    width: auto;
    border: none;
    box-shadow: none;
}

.read-more:hover {
    background: none;
    color: var(--mint-green);
    transform: none;
    box-shadow: none;
    text-decoration: underline;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    .post-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .post-image {
        flex: none;
        height: 220px;
        order: -1;
        width: 100%;
    }
    
    .post-details {
        padding: 20px;
    }
    
    .post-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .post-meta {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .post-content {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .read-more {
        padding: 0;
        font-size: 0.9rem;
        width: auto;
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .post {
        margin-bottom: 20px;
    }
    
    .post-details {
        padding: 15px;
    }
    
    .post-title {
        font-size: 1.2rem;
    }
    
    .post-image {
        height: 180px;
    }
}

/* Elegant Sidebar */
.sidebar {
    background: var(--off-white);
    border-radius: 12px;
    padding: 0;
    height: fit-content;
    border: 1px solid var(--border-color);
}

.widget {
    background: transparent;
    padding: 30px;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
    font-family: 'Inter', sans-serif;
}

.widget:last-child {
    border-bottom: none;
}

.widget-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy) !important;
    margin-bottom: 20px;
    position: relative;
    text-transform: none;
    letter-spacing: normal;
}

/* Additional specificity for widget titles */
.sidebar .widget .widget-title,
.sidebar .widget h3.widget-title {
    color: var(--navy) !important;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    margin-bottom: 12px;
    padding: 0;
    position: relative;
}

.widget li::before {
    display: none;
}

.widget a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

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

/* Elegant Footer */
.site-footer {
    background: var(--navy);
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    text-align: center;
    padding: 50px 0;
    margin-top: 80px;
}

.site-footer p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Privacy Policy Widget */
.privacy-policy-widget {
    margin-top: 15px;
    text-align: center;
}

.privacy-policy-widget p {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

.privacy-policy-widget a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-policy-widget a:hover {
    color: var(--mint-green);
    text-decoration: underline;
}

.privacy-widget {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #999;
}

.privacy-widget-title {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .privacy-policy-widget p {
        font-size: 0.7rem;
    }
    
    .privacy-widget {
        font-size: 0.7rem;
    }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        gap: 40px;
        padding: 0 15px;
    }
    
    .post-layout {
        flex-direction: column;
    }
    
    .post-image {
        flex: none;
        height: 200px;
    }
    
    .hero-cleaning-title,
    .hero-coding-title {
        font-size: 1.8em;
    }
    
    .landing-phrase {
        font-size: 1.8em;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px 15px;
    }
    
    .logo-bite,
    .logo-tidy {
        font-size: 1.8rem !important;
    }
    
    .logo-ampersand {
        font-size: 1.4rem !important;
    }
    
    .main-navigation ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-navigation a {
        font-size: 1rem;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .post-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .post-image {
        flex: none;
        height: 200px;
        order: -1;
    }
    
    .post-details {
        padding: 20px;
    }
    
    .post-title {
        font-size: 1.5rem;
    }
    
    .hero-cleaning,
    .hero-coding {
        height: 300px;
    }
    
    .hero-cleaning-title,
    .hero-coding-title {
        font-size: 1.5em;
        padding: 0.5em 15px 1em;
    }
    
    .landing-phrase {
        font-size: 1.5em;
        padding: 0 15px;
    }
    
    .images-cleaning {
        width: 100%;
        padding-left: 1em;
        padding-right: 1em;
        margin-bottom: 1em;
    }
    
    .widget {
        padding: 20px;
    }
    
    .widget-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 15px 10px;
    }
    
    .logo-bite,
    .logo-tidy {
        font-size: 1.5rem !important;
    }
    
    .logo-ampersand {
        font-size: 1.2rem !important;
    }
    
    .main-navigation ul {
        gap: 15px;
    }
    
    .main-navigation a {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .main-content {
        padding: 0 10px;
        gap: 20px;
    }
    
    .post {
        margin-bottom: 20px;
    }
    
    .post-details {
        padding: 15px;
    }
    
    .post-title {
        font-size: 1.3rem;
    }
    
    .post-image {
        height: 180px;
    }
    
    .hero-cleaning,
    .hero-coding {
        height: 250px;
    }
    
    .hero-cleaning-title,
    .hero-coding-title {
        font-size: 1.3em;
        padding: 0.5em 10px 1em;
    }
    
    .landing-phrase {
        font-size: 1.3em;
        padding: 0 10px;
    }
    
    .latest-post {
        font-size: 0.9em;
        font-weight: 800;
    }
    
    .widget {
        padding: 15px;
    }
    
    .widget-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .widget a {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Additional Elegant Touches */
.post-layout:first-child .post-image {
    height: 200px;
}

@media (max-width: 768px) {
    .post-layout:first-child .post-image {
        height: 200px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Single Post Layout */
.single-post-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.single-post-main {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

/* Mobile responsive for single posts */
@media (max-width: 768px) {
    .single-post-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px 15px;
    }
    
    .single-post-sidebar {
        order: 2;
        margin-top: 20px;
    }
    
    .single-post-main {
        order: 1;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .single-post-wrapper {
        padding: 15px 10px;
        gap: 20px;
    }
    
    .single-post-main {
        padding: 15px;
    }
    
    .single-post-title {
        font-size: 1.7rem;
    }
    
    .single-post-content {
        font-size: 1rem;
    }
    
    .comments-area {
        padding: 15px;
    }
    
    .comments-title {
        font-size: 1.3rem;
    }
}

.single-post-header {
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 30px;
}

.single-post-title {
    font-family: 'Montserrat', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.single-post-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single-post-image {
    margin-bottom: 30px;
    text-align: center;
}

.single-post-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.single-post-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 40px;
}

.single-post-content p {
    margin-bottom: 20px;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    font-family: 'Montserrat', serif;
    color: #2c3e50;
    margin: 30px 0 15px 0;
}

.single-post-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
    margin-top: 40px;
}

/* Featured Posts Section - Updated with !important to override existing styles */
.featured-posts-section {
    margin-top: 40px !important;
    padding: 30px !important;
    background: var(--off-white) !important;
    border-radius: 12px !important;
    border: 1px solid var(--border-color) !important;
}

.featured-posts-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.8rem !important;
    color: var(--navy) !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.featured-posts-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 25px !important;
}

.featured-post-item {
    background: var(--white) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    border: 1px solid var(--border-color) !important;
    cursor: pointer !important;
    transition: opacity 0.3s ease !important;
    /* Remove any shadows and transforms */
    box-shadow: none !important;
    transform: none !important;
}

.featured-post-item:hover {
    /* Remove hover effects */
    box-shadow: none !important;
    transform: none !important;
}

.featured-post-item:active {
    opacity: 0.7 !important;
}

.featured-post-image {
    overflow: hidden !important;
    height: 200px !important;
    width: 100% !important;
}

.featured-post-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    /* Remove any shadows */
    box-shadow: none !important;
}

.featured-post-content {
    padding: 20px !important;
}

.featured-post-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
}

.featured-post-title a {
    color: var(--navy) !important;
    text-decoration: none !important;
}

.featured-post-meta {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #666 !important;
    margin-bottom: 12px !important;
}

.featured-post-excerpt {
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    color: #555 !important;
    line-height: 1.5 !important;
    margin-bottom: 15px !important;
}

.featured-post-read-more {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: color 0.3s ease !important;
}

.featured-post-read-more:hover {
    color: var(--mint-green) !important;
}

/* Responsive Design for Featured Posts */
@media (max-width: 768px) {
    .featured-posts-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .featured-posts-section {
        padding: 20px !important;
        margin-top: 30px !important;
    }
    
    .featured-posts-title {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
    }
    
    .featured-post-image {
        height: 180px !important;
    }
}

.single-post-sidebar {
    position: static;
    top: 20px;
    height: fit-content;
}

/* Comments Section */
.comments-area {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-medium);
    padding: 40px;
    margin-top: 30px;
    border: 1px solid var(--border-color);
}

/* Threaded Comments - Tree Structure */
.comment-list .children {
    list-style: none;
    margin: 20px 0 0 40px;
    padding: 0;
    border-left: 2px solid var(--mint-green);
    padding-left: 20px;
}

/* Nested replies - deeper indentation */
.comment-list .children .children {
    margin-left: 30px;
    border-left: 2px solid #e2e8f0;
}

/* Third level and beyond */
.comment-list .children .children .children {
    margin-left: 25px;
    border-left: 1px solid #f1f5f9;
}

/* Reply indicator */
.comment-list .children::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 12px;
    height: 2px;
    background: var(--mint-green);
    margin-top: 25px;
}

/* Parent comment styling */
.comment.parent {
    position: relative;
}

/* Reply comment styling */
.comment-list .children .comment {
    position: relative;
    background: rgba(173, 235, 179, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid rgba(173, 235, 179, 0.2);
}

/* Reply label */
.comment-list .children .comment::before {
    content: 'Reply to:';
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mint-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

/* Adjust reply link positioning */
.reply {
    margin-top: 10px;
    text-align: right;
}

.comment-reply-link {
    background: var(--mint-green);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    background: var(--navy);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Maximum nesting depth styling */
.comment-list .children .children .children .children {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
}

.comment-list .children .children .children .children .comment::before {
    content: 'Continued thread:';
}

.comments-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 30px;
    border-bottom: 2px solid var(--mint-green);
    padding-bottom: 10px;
    font-weight: 600;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.comment:last-child {
    border-bottom: none;
}

/* Comment Header with Avatar and Meta Info */
.comment-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-avatar {
    margin-right: 0;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--mint-green);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.comment-avatar img:hover {
    transform: scale(1.05);
}

/* Comment Meta Information */
.comment-meta-info {
    flex: 1;
}

/* Name and Website Container - Same Line */
.comment-name-website {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

/* Author Name - Montserrat Navy Bold */
.comment-author-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0;
}

/* Website URL - Same styling as name */
.comment-website {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.comment-website a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-website a:hover {
    color: var(--mint-green);
}

/* Comment Date - Grey and Bold, Below */
.comment-date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
}

/* Comment Content */
.comment-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 15px;
}

/* Reply Link */
.comment-reply-link {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.comment-reply-link:hover {
    color: var(--mint-green);
    text-decoration: underline;
}

/* Comment Awaiting Moderation */
.comment-awaiting-moderation {
    color: #f59e0b;
    font-style: italic;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

/* Remove old comment author and meta styles */
.comment-author {
    display: none;
}

.comment-meta {
    display: none;
}

/* Comment Form */
.comment-respond {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.comment-reply-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 600;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: var(--mint-green);
    box-shadow: 0 0 0 3px rgba(173, 235, 179, 0.1);
}

.comment-form-comment textarea::placeholder,
.comment-form-author input::placeholder,
.comment-form-email input::placeholder,
.comment-form-url input::placeholder {
    color: #94a3b8;
    font-style: italic;
}

.form-submit .submit {
    background: var(--navy);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit .submit:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 52, 76, 0.3);
}

.required {
    color: var(--mint-green);
    font-weight: 600;
}

.comment-form-cookies-consent {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 15px;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--mint-green);
}
/* Enhanced Responsive Design for Single Posts */
@media (max-width: 1024px) {
    .single-post-wrapper {
        gap: 30px;
        padding: 30px 15px;
    }
}

/* Enhanced Responsive Design */
/* Tablet Styles (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .comment {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .comment-header {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .comment-avatar img {
        width: 55px;
        height: 55px;
    }
    
    .comment-author {
        font-size: 1.1rem;
    }
    
    .comment-date {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    }
    
    .comment-website {
        font-size: 0.9rem;
    }
    
    .comment-list .children {
        margin-left: 35px;
        padding-left: 18px;
    }
}

/* Mobile Styles (up to 767px) */
@media (max-width: 767px) {
    .comment {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .comment-avatar {
        align-self: center;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .comment-avatar img {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .comment-info {
        text-align: center;
        width: 100%;
    }
    
    .comment-author {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    
    .comment-content {
        margin-top: 15px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

        .comment-name-website {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .comment-author-name {
        font-size: 1rem;
    }
    
    .comment-website {
        font-size: 1rem;
    }
    
    .comment-date {
        font-size: 0.75rem;
    }
    
    /* Threaded comments on mobile */
    .comment-list .children {
        margin-left: 15px;
        padding-left: 12px;
        border-left-width: 2px;
    }
    
    .comment-list .children .children {
        margin-left: 10px;
    }
    
    .comment-list .children .children .children {
        margin-left: 5px;
        border-left: 1px solid #f1f5f9;
    }
    
    .comment-reply-link {
        padding: 8px 16px;
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 10px;
    }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    .comment-avatar img {
        width: 45px;
        height: 45px;
    }
    
    .comment-author {
        font-size: 0.95rem;
    }
    
    .comment-date,
    .comment-website {
        font-size: 0.75rem;
    }
    
    .comment-content {
        font-size: 0.85rem;
    }
    
    .comment-list .children {
        margin-left: 10px;
        padding-left: 8px;
    }
    
    .comment-list .children .children {
        margin-left: 5px;
    }
}

/* Large Desktop Styles (1200px+) */
@media (min-width: 1200px) {
    .comment-avatar img {
        width: 65px;
        height: 65px;
    }
    
    .comment {
        padding: 25px;
    }
    
    .comment-author {
        font-size: 1.2rem;
    }
    
    .comment-date,
    .comment-website {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .single-post-wrapper {
        padding: 15px 10px;
    }
    
    .single-post-main {
        padding: 15px;
    }
    
    .single-post-title {
        font-size: 1.7rem;
    }
    
    .single-post-content {
        font-size: 1rem;
    }
    
    .comments-area {
        padding: 15px;
    }
    
    .comments-title {
        font-size: 1.3rem;
    }
}

/* Footer Widgets */
.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget-area {
    display: flex;
    flex-direction: column;
}

.footer-widget {
    font-family: 'Inter', sans-serif;
}

/* Footer Widget Titles - All titles (sample and custom) */
.footer-widget-title,
.footer-widget h1,
.footer-widget h2,
.footer-widget h3,
.footer-widget h4,
.footer-widget h5,
.footer-widget h6,
.widget-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white) !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Widget Lists */
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Footer Widget Links - All links (sample and custom) */
.footer-widget a {
    color: var(--off-white) !important;
    text-decoration: none;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: var(--mint-green) !important;
}

/* Footer Widget Text - All paragraphs and text (sample and custom) */
.footer-widget p,
.footer-widget div,
.footer-widget span {
    color: var(--off-white) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Custom Widget Content Styling */
.footer-widget .textwidget,
.footer-widget .widget-content {
    font-family: 'Inter', sans-serif !important;
    color: var(--off-white) !important;
}

/* Footer Widget Form Elements */
.footer-widget input,
.footer-widget textarea,
.footer-widget select {
    font-family: 'Inter', sans-serif !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
}

.footer-bottom p {
    margin: 5px 0;
    font-family: 'Inter', sans-serif;
    color: var(--off-white);
    font-size: 0.9rem;
}

/* Theme Credit Styling */
.theme-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    color: var(--off-white);
    font-size: 0.9rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-logo-bite,
.footer-logo-tidy {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--off-white);
    transition: all 0.3s ease;
}

.footer-logo-ampersand {
    font-family: 'Rock Salt', cursive;
    font-size: 1rem;
    color: grey;
    margin: 0 2px;
}

.footer-logo:hover .footer-logo-bite,
.footer-logo:hover .footer-logo-tidy {
    color: var(--mint-green);
}

/* Mobile responsive for footer widgets */
@media (max-width: 768px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 30px 0;
        padding: 30px 0;
    }
    
    .footer-widget-title {
        font-size: 1.1rem;
    }
    
    .footer-widget a,
    .footer-widget p {
        font-size: 0.9rem;
    }
    
    .theme-credit {
        flex-direction: column;
        gap: 4px;
    }
    
    .footer-logo-bite,
    .footer-logo-tidy {
        font-size: 1.2rem;
    }
    
    .footer-logo-ampersand {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-widgets {
        gap: 20px;
        margin: 20px 0;
        padding: 20px 0;
    }
    
    .footer-widget-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-logo-bite,
    .footer-logo-tidy {
        font-size: 1.1rem;
    }
}