/*
Theme Name: WLSM
Theme URI: https://example.com/wlsm-theme
Author: Your Name
Author URI: https://example.com
Description: A simple, minimal WordPress theme built around the School Management System login page, featuring the [wlsm-top-login-links] shortcode.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wlsm-theme
*/

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
	color: #1f2937;
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	display: block;
}

/* ------------------------------------------------------------------ */
/* Site header                                                         */
/* ------------------------------------------------------------------ */

.wlsm-site-header {
	padding: 20px 40px;
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.wlsm-site-branding {
	font-size: 22px;
	font-weight: 700;
	text-decoration: none;
	color: #1a56db;
}

#menu-top-menu{
	display: flex;
    padding: 0;
    gap: 20px;
}
#menu-top-menu li{
	display: flex;
}
#menu-top-menu li a{
	text-decoration: none;
}

/* ------------------------------------------------------------------ */
/* Homepage hero: login card + background photos                      */
/* ------------------------------------------------------------------ */

.wlsm-hero {
	position: relative;
	min-height: calc(100vh - 78px);
	display: block;
	align-items: flex-start;
	padding: 60px 0px;
	overflow: hidden;
}
.hero-left{flex: 1;padding: 130px 50px}
.hero-right{flex: 1}
.hero-text{max-width: 500px}
.hero-text button{
	background-color: #45a549;
    border: none;
    cursor: pointer;
    color: white;
    padding: 14px 20px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
}
.hero-text a{
	background-color: #45a549;
    border: none;
    cursor: pointer;
    color: white;
    padding: 14px 20px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
}
.wlsm-hero-photos {
	padding-top: 40px;
	width: 100%;
	display: flex;
	gap: 4px;
	z-index: 0;
}

.wlsm-hero-photos > div {
	flex: 1;
	height: 260px;
	background-size: cover;
	background-position: center top;
}

.wlsm-hero-photos .photo-1 {
	background-color: #94a3b8;
}
.wlsm-hero-photos .photo-2 {
	background-color: #64748b;
}
.wlsm-hero-photos .photo-3 {
	background-color: #475569;
}

.wlsm-hero-card-position {
	position: relative;
	z-index: 1;
	width: 100%;
	display: flex;
}
.wlsm-site-logo{
	align-self: baseline;
}
.wlsm-site-logo img{

}

.wlsm-faq{
	padding: 130px 50px;
	background-color: #fafafa;
}

/*
 * The card itself (white rounded box, tabs, inline login panel) is styled
 * by the WLSM plugin's own assets/css/wlsm.css, loaded automatically when
 * the [wlsm-top-login-links] shortcode is used — no need to duplicate that
 * styling here. This wrapper only positions and constrains its width.
 */

/* ------------------------------------------------------------------ */
/* Site footer                                                         */
/* ------------------------------------------------------------------ */

.wlsm-site-footer {
	position: relative;
    z-index: 1;
    text-align: center;
    padding: 16px;
    font-size: 13px;
    color: #ffffff;
    background: #45a549;
}

/* ------------------------------------------------------------------ */
/* Responsive                                                          */
/* ------------------------------------------------------------------ */

@media (max-width: 640px) {
	.wlsm-site-header {
		padding: 16px 20px;
	}
	.wlsm-hero {
		padding: 30px 0px 0;
	}
	.wls-top-login-links {
		flex-direction: column;
	}
	.wlsm-hero-photos > div {
		height: 160px;
	}
}
