/* Tomorrow's Teacher - Shared Styles */

html {
	scroll-behavior: smooth;
}

:root {
	--accent: #512888;
	--accent-light: #6b3fa0;
	--accent-dark: #3d1a5f;
	--text-dark: #2c3e50;
	--border-light: #e0e0e0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
	color: var(--text-dark);
	line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 0.75rem;
}

h1 {
	font-size: 2.5rem;
	letter-spacing: -0.5px;
}

h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--text-dark);
}

h3 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.1rem;
	font-weight: 700;
}

p {
	color: #555;
	margin-bottom: 1rem;
	line-height: 1.7;
}

.lead {
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.8;
}

/* Navbar */
.brand-img {
	height: 100px;
	transition: transform 0.2s;
}

.navbar {
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1030;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.navbar-brand {
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--text-dark) !important;
}

.nav-link {
	color: var(--text-dark) !important;
	font-weight: 500;
	transition: color 0.2s ease;
}

.nav-link:hover {
	color: var(--accent) !important;
}

/* Responsive navbar logo sizing */
@media (max-width: 992px) {
	.brand-img {
		height: 70px;
	}
}

@media (max-width: 576px) {
	.brand-img {
		height: 65px;
	}
}

.nav-link.active {
	color: var(--accent) !important;
	border-bottom: 2px solid var(--accent);
}

/* Buttons */
.btn-primary {
	background: var(--accent);
	border-color: var(--accent);
	font-weight: 600;
	transition: all 0.2s ease;
}

.btn-primary:hover {
	background: var(--accent-dark);
	border-color: var(--accent-dark);
	transform: translateY(-1px);
}

.btn-light {
	background: #fff;
	color: var(--accent);
	font-weight: 600;
	border: 2px solid transparent;
	transition: all 0.2s ease;
}

.btn-light:hover {
	background: var(--accent);
	color: #fff;
	border-color: var(--accent);
}

.btn-outline-light {
	border: 2px solid #fff;
	color: #fff;
	font-weight: 600;
	transition: all 0.2s ease;
}

.btn-outline-light:hover {
	background: #fff;
	color: var(--accent);
	transform: translateY(-1px);
}

/* Footer */
footer {
	padding: 2.5rem 0;
	background: #f5f5f5;
	border-top: 1px solid var(--border-light);
	color: #666;
	font-size: 0.95rem;
}

footer a {
	color: #666;
	transition: color 0.2s ease;
}

footer a:hover {
	color: var(--accent);
}
