mirror of
https://github.com/myronblair/tomsjavajive
synced 2026-06-30 17:50:32 -05:00
771e1a15b1
Split style.css into home.css (hero, features, newsletter, splash) and products.css (product grid/cards). Each page loads only what it needs via $extraHead. style.css now contains only truly shared styles. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
539 lines
9.5 KiB
CSS
539 lines
9.5 KiB
CSS
/**
|
|
* Tom's Java Jive - Main Stylesheet
|
|
* Matching original React design
|
|
*/
|
|
|
|
:root {
|
|
--color-primary: #FF5E1A;
|
|
--color-primary-dark: #E54D0D;
|
|
--color-secondary: #8B4513;
|
|
--color-accent: #FF5E1A;
|
|
--color-background: #FDFBF7;
|
|
--color-surface: #FFFFFF;
|
|
--color-text: #1B1B1B;
|
|
--color-text-muted: #6B7280;
|
|
--color-text-light: #9CA3AF;
|
|
--color-border: #E8E2D9;
|
|
--color-success: #10B981;
|
|
--color-warning: #F59E0B;
|
|
--color-error: #EF4444;
|
|
|
|
--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
--font-display: 'Playfair Display', Georgia, serif;
|
|
|
|
--radius-sm: 6px;
|
|
--radius-md: 8px;
|
|
--radius-lg: 12px;
|
|
--radius-xl: 16px;
|
|
--radius-full: 9999px;
|
|
|
|
--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
|
|
--shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
|
|
--shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
|
|
--shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
|
|
|
|
--transition: all 0.2s ease;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-primary);
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
color: var(--color-text);
|
|
background: var(--color-background);
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-primary);
|
|
text-decoration: none;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
a:hover {
|
|
color: var(--color-primary-dark);
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
/* Container */
|
|
.container {
|
|
width: 100%;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 1.5rem;
|
|
}
|
|
|
|
/* Header / Navigation */
|
|
.header {
|
|
background: var(--color-surface);
|
|
border-bottom: 1px solid var(--color-border);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
}
|
|
|
|
.nav {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 70px;
|
|
}
|
|
|
|
.logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
font-weight: 700;
|
|
font-size: 1.25rem;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.logo:hover {
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.logo-img {
|
|
height: 45px;
|
|
width: auto;
|
|
}
|
|
|
|
.logo-text {
|
|
font-family: var(--font-display);
|
|
font-size: 1.5rem;
|
|
color: var(--color-secondary);
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2rem;
|
|
list-style: none;
|
|
}
|
|
|
|
.nav-links a {
|
|
color: var(--color-text);
|
|
font-weight: 500;
|
|
font-size: 0.9375rem;
|
|
padding: 0.5rem 0;
|
|
position: relative;
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
.nav-links a.active {
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
.nav-links a::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: var(--color-primary);
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.nav-links a:hover::after,
|
|
.nav-links a.active::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.nav-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.cart-btn {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: var(--radius-full);
|
|
background: var(--color-background);
|
|
color: var(--color-text);
|
|
font-size: 1.25rem;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.cart-btn:hover {
|
|
background: var(--color-primary);
|
|
color: white;
|
|
}
|
|
|
|
.cart-count {
|
|
position: absolute;
|
|
top: -4px;
|
|
right: -4px;
|
|
background: var(--color-primary);
|
|
color: white;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
min-width: 20px;
|
|
height: 20px;
|
|
border-radius: var(--radius-full);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
/* Buttons */
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
padding: 0.75rem 1.5rem;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
border-radius: var(--radius-md);
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: var(--transition);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--color-primary);
|
|
color: white;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: var(--color-primary-dark);
|
|
color: white;
|
|
transform: translateY(-2px);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: white;
|
|
color: var(--color-text);
|
|
border: 2px solid var(--color-border);
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
border-color: var(--color-primary);
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
.btn-outline {
|
|
background: transparent;
|
|
color: white;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
.btn-outline:hover {
|
|
background: white;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.btn-lg {
|
|
padding: 1rem 2rem;
|
|
font-size: 1.125rem;
|
|
}
|
|
|
|
.btn-sm {
|
|
padding: 0.5rem 1rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.btn-block {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Sections */
|
|
.section {
|
|
padding: 5rem 0;
|
|
}
|
|
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.section-header h2 {
|
|
font-family: var(--font-display);
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.section-header p {
|
|
font-size: 1.125rem;
|
|
color: var(--color-text-muted);
|
|
}
|
|
|
|
/* Cards */
|
|
.card {
|
|
background: var(--color-surface);
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: var(--shadow-sm);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card-header {
|
|
padding: 1.25rem;
|
|
border-bottom: 1px solid var(--color-border);
|
|
}
|
|
|
|
.card-body {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
/* Forms */
|
|
.form-group {
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.form-label {
|
|
display: block;
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.form-input,
|
|
.form-select,
|
|
.form-textarea {
|
|
width: 100%;
|
|
padding: 0.75rem 1rem;
|
|
font-size: 1rem;
|
|
border: 2px solid var(--color-border);
|
|
border-radius: var(--radius-md);
|
|
background: var(--color-surface);
|
|
transition: var(--transition);
|
|
font-family: inherit;
|
|
}
|
|
|
|
.form-input:focus,
|
|
.form-select:focus,
|
|
.form-textarea:focus {
|
|
outline: none;
|
|
border-color: var(--color-primary);
|
|
box-shadow: 0 0 0 3px rgba(255,94,26,0.1);
|
|
}
|
|
|
|
.form-textarea {
|
|
min-height: 120px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.form-error {
|
|
color: var(--color-error);
|
|
font-size: 0.8125rem;
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
.form-checkbox {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Alerts */
|
|
.alert {
|
|
padding: 1rem 1.25rem;
|
|
border-radius: var(--radius-md);
|
|
margin-bottom: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.alert-success {
|
|
background: rgba(16, 185, 129, 0.1);
|
|
color: var(--color-success);
|
|
border: 1px solid rgba(16, 185, 129, 0.3);
|
|
}
|
|
|
|
.alert-error {
|
|
background: rgba(239, 68, 68, 0.1);
|
|
color: var(--color-error);
|
|
border: 1px solid rgba(239, 68, 68, 0.3);
|
|
}
|
|
|
|
.alert-warning {
|
|
background: rgba(245, 158, 11, 0.1);
|
|
color: var(--color-warning);
|
|
border: 1px solid rgba(245, 158, 11, 0.3);
|
|
}
|
|
|
|
/* Badges */
|
|
.badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 0.25rem 0.75rem;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
border-radius: var(--radius-full);
|
|
}
|
|
|
|
.badge-primary {
|
|
background: rgba(255,94,26,0.15);
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
.badge-success {
|
|
background: rgba(16, 185, 129, 0.15);
|
|
color: var(--color-success);
|
|
}
|
|
|
|
.badge-warning {
|
|
background: rgba(245, 158, 11, 0.15);
|
|
color: var(--color-warning);
|
|
}
|
|
|
|
.badge-error {
|
|
background: rgba(239, 68, 68, 0.15);
|
|
color: var(--color-error);
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
background: var(--color-text);
|
|
color: white;
|
|
padding: 2.5rem 0 1.5rem;
|
|
}
|
|
|
|
.footer-grid {
|
|
display: grid;
|
|
grid-template-columns: 2fr 1fr 1fr;
|
|
gap: 2rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.footer-brand p {
|
|
color: rgba(255,255,255,0.7);
|
|
margin-top: 1rem;
|
|
font-size: 0.9375rem;
|
|
}
|
|
|
|
.footer h4 {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
margin-bottom: 1.25rem;
|
|
color: white;
|
|
}
|
|
|
|
.footer-links {
|
|
list-style: none;
|
|
}
|
|
|
|
.footer-links li {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.footer-links a {
|
|
color: rgba(255,255,255,0.7);
|
|
font-size: 0.9375rem;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.footer-links a:hover {
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
.footer-bottom {
|
|
padding-top: 2rem;
|
|
border-top: 1px solid rgba(255,255,255,0.1);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 0.875rem;
|
|
color: rgba(255,255,255,0.5);
|
|
}
|
|
|
|
.footer-social {
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.footer-social a {
|
|
color: rgba(255,255,255,0.7);
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.footer-social a:hover {
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
/* Utilities */
|
|
.text-center { text-align: center; }
|
|
.text-muted { color: var(--color-text-muted); }
|
|
.text-success { color: var(--color-success); }
|
|
.text-error { color: var(--color-error); }
|
|
|
|
.mb-0 { margin-bottom: 0; }
|
|
.mb-1 { margin-bottom: 1rem; }
|
|
.mb-2 { margin-bottom: 1.5rem; }
|
|
.mt-1 { margin-top: 1rem; }
|
|
.mt-2 { margin-top: 1.5rem; }
|
|
|
|
/* Loading Spinner */
|
|
.loading {
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 2px solid currentColor;
|
|
border-radius: 50%;
|
|
border-top-color: transparent;
|
|
animation: spin 0.8s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 1024px) {
|
|
.footer-grid {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.section-header h2 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.nav-links {
|
|
display: none;
|
|
}
|
|
|
|
.footer-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.footer-bottom {
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
text-align: center;
|
|
}
|
|
}
|
|
|