/*
Theme Name: Movie24
Theme URI: https://movie24.com/ 
Author: Your Name 
Author URI: https://movie24.com/
Description: Custom theme for Movie24 site.
Version: 3.3
Text Domain: movie24
Tags: custom-theme, movie-database, responsive-layout, mobile-first
*/

/* --- General Reset --- */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { margin: 0; padding: 0; line-height: 1.5; }
img { max-width: 100%; height: auto; display: block; }


/* === GLOBAL HEADER STYLES === */
.site-header-unified {
	background: #fff;
	color: #333;
	border-bottom: 1px solid #eee;
	padding: 0;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05); 
}

.site-header-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.site-top-bar {
    display: flex;
    align-items: center; 
    justify-content: space-between; /* Default for desktop */
	padding: 10px 0;
	flex-wrap: wrap; /* Allow wrapping */
}
/* Homepage par border */
body.home .site-top-bar {
    border-bottom: 1px solid #eee; 
}


/* === FINAL CONSISTENT SITE LOGO STYLE (GLOBAL) === */
.site-logo { 
	font-size: 1.8rem; /* Logo size for desktop */
	font-weight: 900;  
	line-height: 1;
	white-space: nowrap;
	margin: 0;
	padding: 5px 0;
    text-align: left; /* Default alignment */
    margin-bottom: 0; 
}

.site-logo a {
	text-decoration: none;
	color: #007bff; /* Blue color for "Movie" */
    display: inline-block; 
}

.site-logo a .hubb-red {
	color: #dc3545; /* Red color for "24" */
}

/* Responsive logo size */
@media (max-width: 768px) {
    .site-logo {
        font-size: 1.6rem; /* Slightly smaller on mobile */
        text-align: center; /* Center on mobile */
        width: 100%; /* Take full width */
        margin-right: 0;
    }
    .site-top-bar {
        justify-content: center;
		border-bottom: none; /* Mobile par border nahi (unless homepage) */
    }
    body.home .site-top-bar {
        border-bottom: 1px solid #eee; /* Homepage mobile par border rakho */
    }
}
/* === END FINAL LOGO STYLE === */

/* General content styling */
.site-content {
	min-height: 60vh; 
    padding: 1px 0; 
}

/* Footer Styling */
.site-footer {
	margin-top: 30px;
	padding: 20px 15px;
	background-color: #f8f9fa; 
	border-top: 1px solid #eee;
	text-align: center;
	color: #6c757d; 
	font-size: 0.9em;
}
.site-footer .site-info p { margin: 0; }

/* Hide Lightbox on non-movie pages */
body:not(.single-movie) .lightbox-overlay {
    display: none !important;
}

/* Search & Archive Page Specific */
.site-main-search .page-header,
.site-main-archive .page-header {
    text-align: center;
    margin: 20px 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.site-main-search .page-title,
.site-main-archive .page-title {
    font-size: 1.6rem;
    color: #333;
    margin: 0;
}
.site-main-search .page-title span {
    font-style: italic;
    color: #007bff;
}
.no-results, .no-movies-found { 
    text-align: center;
    padding: 40px 15px;
    color: #666;
    grid-column: 1 / -1; 
}
}