- Create custom SVG logo with professional branding - Implement premium color scheme with blue and gold accents - Add custom CSS with professional styling for cards, tables, buttons - Update logo template to use new logo.svg file - Create custom favicon for complete branding - Redesign homepage with premium content sections - Update resources page with membership tiers and premium pricing - Enhance contact page with testimonials and detailed information - Target audience: high-paying clients ($100+/hour) - Professional yet approachable design language 💘 Generated with Crush Assisted-by: GLM-4.7 via Crush <crush@charm.land>
396 lines
7.0 KiB
CSS
396 lines
7.0 KiB
CSS
/* Custom Theme for Starting Line Productions LLC */
|
|
|
|
/* Color Palette */
|
|
:root {
|
|
--primary-color: #1e3a8a;
|
|
--primary-light: #3b82f6;
|
|
--primary-dark: #1e40af;
|
|
--accent-color: #f59e0b;
|
|
--accent-dark: #d97706;
|
|
--text-primary: #1e293b;
|
|
--text-secondary: #64748b;
|
|
--bg-light: #f8fafc;
|
|
--bg-white: #ffffff;
|
|
--bg-dark: #0f172a;
|
|
}
|
|
|
|
/* Typography */
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
color: var(--text-primary);
|
|
background-color: var(--bg-light);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2rem;
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
/* Navigation */
|
|
.navbar {
|
|
background: var(--bg-white);
|
|
border-bottom: 2px solid var(--primary-color);
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
|
|
}
|
|
|
|
.navbar .navbar-brand {
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
color: var(--primary-color) !important;
|
|
}
|
|
|
|
.navbar .nav-item a {
|
|
font-weight: 500;
|
|
color: var(--text-primary) !important;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.navbar .nav-item a:hover {
|
|
color: var(--primary-light) !important;
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
|
|
color: white;
|
|
padding: 4rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.hero h1 {
|
|
color: white;
|
|
font-size: 3rem;
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.hero h2 {
|
|
color: rgba(255,255,255,0.9);
|
|
font-size: 1.5rem;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.hero p {
|
|
color: rgba(255,255,255,0.85);
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
/* Buttons */
|
|
.btn {
|
|
padding: 0.75rem 2rem;
|
|
font-weight: 600;
|
|
border-radius: 8px;
|
|
transition: all 0.3s ease;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: var(--primary-light);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
|
|
}
|
|
|
|
.btn-accent {
|
|
background: var(--accent-color);
|
|
color: white;
|
|
}
|
|
|
|
.btn-accent:hover {
|
|
background: var(--accent-dark);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
|
|
}
|
|
|
|
/* Cards */
|
|
.card {
|
|
background: var(--bg-white);
|
|
border: 1px solid #e2e8f0;
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
|
|
transition: all 0.3s ease;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.card:hover {
|
|
box-shadow: 0 8px 24px rgba(0,0,0,0.12);
|
|
transform: translateY(-4px);
|
|
border-color: var(--primary-light);
|
|
}
|
|
|
|
.card-header {
|
|
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
|
|
color: white;
|
|
padding: 1.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.card-body {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
/* Tables */
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-bottom: 2rem;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
th {
|
|
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
|
|
color: white;
|
|
padding: 1rem;
|
|
text-align: left;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
font-size: 0.85rem;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
td {
|
|
padding: 1rem;
|
|
border-bottom: 1px solid #e2e8f0;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: var(--bg-light);
|
|
}
|
|
|
|
tr:hover td {
|
|
background-color: rgba(59, 130, 246, 0.05);
|
|
}
|
|
|
|
/* Pricing Tables */
|
|
.pricing-table {
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.pricing-table .card {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.pricing-table .price {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
margin: 1.5rem 0;
|
|
}
|
|
|
|
.pricing-table .price small {
|
|
font-size: 1rem;
|
|
color: var(--text-secondary);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.pricing-table .price span {
|
|
font-size: 1rem;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
/* Feature Icons */
|
|
.feature-icon {
|
|
width: 60px;
|
|
height: 60px;
|
|
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: white;
|
|
font-size: 1.5rem;
|
|
margin: 0 auto 1.5rem;
|
|
}
|
|
|
|
/* Section Styling */
|
|
section {
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.section-header h2 {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.section-header p {
|
|
color: var(--text-secondary);
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
/* Contact Form */
|
|
.contact-form .form-control {
|
|
border: 2px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
padding: 0.75rem 1rem;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.contact-form .form-control:focus {
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
background: var(--bg-dark);
|
|
color: white;
|
|
padding: 3rem 0;
|
|
}
|
|
|
|
footer a {
|
|
color: rgba(255,255,255,0.8);
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
footer a:hover {
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.hero h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.hero h2 {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.75rem;
|
|
}
|
|
}
|
|
|
|
/* Animations */
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.card {
|
|
animation: fadeIn 0.6s ease-out;
|
|
}
|
|
|
|
/* Custom scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: var(--bg-light);
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: var(--primary-light);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: var(--primary-color);
|
|
}
|
|
|
|
/* Logo styling */
|
|
.logo img {
|
|
max-height: 80px;
|
|
width: auto;
|
|
}
|
|
|
|
/* Call to Action */
|
|
.cta-section {
|
|
background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
|
|
color: white;
|
|
text-align: center;
|
|
padding: 3rem 0;
|
|
margin: 3rem 0;
|
|
}
|
|
|
|
.cta-section h2 {
|
|
color: white;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.cta-section p {
|
|
margin-bottom: 2rem;
|
|
color: rgba(255,255,255,0.95);
|
|
}
|
|
|
|
.cta-section .btn-white {
|
|
background: white;
|
|
color: var(--accent-dark);
|
|
}
|
|
|
|
.cta-section .btn-white:hover {
|
|
background: rgba(255,255,255,0.9);
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
/* Service Cards Grid */
|
|
.services-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
/* Testimonials */
|
|
.testimonial {
|
|
background: var(--bg-white);
|
|
border-left: 4px solid var(--accent-color);
|
|
padding: 2rem;
|
|
margin: 2rem 0;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
|
|
}
|
|
|
|
.testimonial p {
|
|
font-style: italic;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.testimonial cite {
|
|
display: block;
|
|
margin-top: 1rem;
|
|
font-weight: 600;
|
|
color: var(--primary-color);
|
|
}
|