2025-06-17 19:03:48 -06:00

575 lines
10 KiB
CSS

/* Linda Lindsay for Ward B School Trustee - Modern Website Styles */
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/* Color Palette from Original Site */
--primary-green: #008385;
--accent-yellow: #cec735;
--warm-brown: #603913;
--text-white: #ffffff;
--text-dark: #333333;
--bg-light: #f8f9fa;
--bg-white: #ffffff;
--border-light: #e9ecef;
--shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.1);
--shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
--border-radius: 8px;
--border-radius-lg: 12px;
--transition: all 0.3s ease;
}
/* Typography */
body {
font-family: 'Gothic A1', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
font-size: 17px;
line-height: 1.7;
color: var(--text-dark);
background-color: var(--bg-light);
}
h1, h2, h3, h4, h5, h6 {
line-height: 1.3;
margin-bottom: 1rem;
font-weight: 600;
}
h1 {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-green);
margin-bottom: 1.5rem;
}
h2 {
font-size: 2rem;
color: var(--primary-green);
margin-bottom: 1.25rem;
}
h3 {
font-size: 1.5rem;
color: var(--accent-yellow);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 1rem;
}
h4 {
font-size: 1.25rem;
color: var(--primary-green);
margin-bottom: 0.75rem;
}
p {
margin-bottom: 1.5rem;
line-height: 1.7;
}
a {
color: var(--primary-green);
text-decoration: none;
transition: var(--transition);
}
a:hover {
color: var(--accent-yellow);
text-decoration: underline;
}
/* Layout Components */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
.section {
padding: 4rem 0;
}
.section-alt {
background-color: var(--bg-white);
}
/* Header Styles */
.header {
background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-yellow) 100%);
color: var(--text-white);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: var(--shadow-medium);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.logo {
display: flex;
align-items: center;
gap: 1rem;
}
.logo img {
height: 60px;
width: auto;
}
.logo-text {
font-size: 1.5rem;
font-weight: 700;
color: var(--text-white);
}
.nav {
display: flex;
gap: 2rem;
align-items: center;
}
.nav a {
color: var(--text-white);
font-weight: 600;
padding: 0.5rem 1rem;
border-radius: var(--border-radius);
transition: var(--transition);
}
.nav a:hover,
.nav a.active {
background-color: rgba(255, 255, 255, 0.2);
text-decoration: none;
color: var(--text-white);
}
/* Mobile Navigation */
.mobile-nav-toggle {
display: none;
background: none;
border: none;
color: var(--text-white);
font-size: 1.5rem;
cursor: pointer;
}
@media (max-width: 768px) {
.nav {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary-green);
flex-direction: column;
padding: 1rem;
box-shadow: var(--shadow-medium);
}
.nav.active {
display: flex;
}
.mobile-nav-toggle {
display: block;
}
}
/* Hero Section */
.hero {
background: url('/assets/images/LInda-Lindsay-Edits-5-1-scaled.jpg') center top/cover no-repeat;
color: var(--text-white);
padding: 8rem 0;
text-align: left;
min-height: 70vh;
display: flex;
align-items: center;
position: relative;
}
.hero .container {
display: flex;
align-items: center;
min-height: 100%;
}
.hero .hero-content {
max-width: 50%;
padding-right: 2rem;
z-index: 2;
}
.hero h1 {
color: var(--text-white);
font-size: 3.5rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.hero .tagline {
font-size: 1.5rem;
margin-bottom: 2rem;
color: var(--accent-yellow);
font-weight: 600;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.hero p {
font-size: 1.2rem;
margin-bottom: 2rem;
max-width: 100%;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
line-height: 1.6;
}
/* Buttons */
.btn {
display: inline-block;
padding: 1rem 2rem;
border-radius: var(--border-radius);
font-weight: 600;
text-decoration: none;
transition: var(--transition);
border: 2px solid transparent;
cursor: pointer;
font-size: 1rem;
}
.btn-primary {
background-color: var(--accent-yellow);
color: var(--warm-brown);
border-color: var(--accent-yellow);
}
.btn-primary:hover {
background-color: transparent;
color: var(--accent-yellow);
border-color: var(--accent-yellow);
text-decoration: none;
}
.btn-secondary {
background-color: transparent;
color: var(--text-white);
border-color: var(--text-white);
}
.btn-secondary:hover {
background-color: var(--text-white);
color: var(--primary-green);
text-decoration: none;
}
.btn-group {
display: flex;
gap: 1rem;
margin-top: 2rem;
justify-content: center;
flex-wrap: wrap;
}
/* Content Sections */
.content-section {
background-color: var(--bg-white);
border-radius: var(--border-radius-lg);
padding: 3rem;
margin-bottom: 2rem;
box-shadow: var(--shadow-soft);
}
.content-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
/* Image Styles */
.image-gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
margin: 2rem 0;
}
.image-gallery img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: var(--border-radius);
box-shadow: var(--shadow-soft);
transition: var(--transition);
}
.image-gallery img:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-medium);
}
.featured-image {
width: 100%;
max-width: 600px;
height: auto;
border-radius: var(--border-radius);
box-shadow: var(--shadow-soft);
margin: 2rem auto;
display: block;
}
/* Cards */
.card {
background-color: var(--bg-white);
border-radius: var(--border-radius-lg);
padding: 2rem;
box-shadow: var(--shadow-soft);
transition: var(--transition);
}
.card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-medium);
}
.card h3 {
color: var(--primary-green);
margin-bottom: 1rem;
}
/* Form Styles */
.form-group {
margin-bottom: 1.5rem;
}
.form-label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--text-dark);
}
.form-input {
width: 100%;
padding: 1rem;
border: 2px solid var(--border-light);
border-radius: var(--border-radius);
font-size: 1rem;
transition: var(--transition);
}
.form-input:focus {
outline: none;
border-color: var(--primary-green);
box-shadow: 0 0 0 3px rgba(0, 131, 133, 0.1);
}
/* Footer */
.footer {
background-color: var(--primary-green);
color: var(--text-white);
padding: 3rem 0 1rem;
margin-top: 4rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h4 {
color: var(--accent-yellow);
margin-bottom: 1rem;
}
.footer-section a {
color: var(--text-white);
}
.footer-section a:hover {
color: var(--accent-yellow);
}
.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding-top: 1rem;
text-align: center;
font-size: 0.9rem;
}
.social-links {
display: flex;
gap: 1rem;
justify-content: center;
margin-top: 1rem;
}
.social-links a {
color: var(--text-white);
font-size: 1.5rem;
transition: var(--transition);
}
.social-links a:hover {
color: var(--accent-yellow);
text-decoration: none;
}
/* Responsive Design */
@media (max-width: 768px) {
.container {
padding: 0 1rem;
}
.hero {
text-align: center;
padding: 0;
min-height: 40vh;
background: url('/assets/images/LInda-Lindsay-Edits-5-1-scaled.jpg') center/cover no-repeat;
align-items: flex-end;
}
.hero .hero-content {
display: none;
}
.hero h1 {
font-size: 2.5rem;
}
.hero .tagline {
font-size: 1.25rem;
}
.content-section {
padding: 2rem 1.5rem;
}
.btn-group {
flex-direction: column;
align-items: center;
}
.btn {
width: 100%;
max-width: 300px;
text-align: center;
}
}
@media (max-width: 480px) {
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.75rem;
}
.hero {
padding: 0;
min-height: 35vh;
background: url('/assets/images/LInda-Lindsay-Edits-5-1-scaled.jpg') center/cover no-repeat;
}
.hero .hero-content {
display: none;
}
.hero h1 {
font-size: 2rem;
}
.hero .tagline {
font-size: 1.1rem;
}
.section {
padding: 3rem 0;
}
}
/* Utility Classes */
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.hidden {
display: none;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
/* Loading Animation */
.loading {
opacity: 0.7;
pointer-events: none;
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Focus styles for accessibility */
*:focus {
outline: 2px solid var(--primary-green);
outline-offset: 2px;
}
/* Print styles */
@media print {
.header,
.footer,
.btn {
display: none;
}
body {
background: white;
color: black;
}
}