/* David Townshend - Professional Authority Website */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #10b981;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--gray-800);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    z-index: 1000;
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--light) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Proof Bar */
.proof-bar {
    background: var(--dark);
    padding: 60px 0;
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.proof-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.proof-label {
    color: var(--gray-100);
    font-size: 14px;
}

/* Sections */
.what-i-do,
.about-section,
.video-preview,
.cta-section,
.final-cta,
.services-detail,
.video-library,
.media-content {
    padding: 100px 0;
}

.what-i-do h2,
.about-section h2,
.video-preview h2,
.services-detail h2,
.media-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--primary-dark);
}

/* CTA Sections */
.cta-section,
.final-cta {
    background: var(--dark);
    color: white;
    text-align: center;
}

.cta-section h2,
.final-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p,
.final-cta p {
    color: var(--gray-100);
    font-size: 18px;
    margin-bottom: 40px;
}

/* About Section */
.about-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 900;
    margin: 0 auto;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-links {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.video-card {
    background: var(--gray-50);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-thumbnail {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.video-card h3 {
    font-size: 20px;
    margin: 20px;
    font-weight: 700;
}

.video-card p {
    margin: 0 20px 20px;
    color: var(--gray-600);
}

/* Page Headers */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: var(--gray-50);
}

.page-header h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 16px;
}

/* Service Detail */
.service-block {
    background: var(--gray-50);
    padding: 60px;
    border-radius: 16px;
    margin-bottom: 40px;
    text-align: center;
}

.service-icon-large {
    font-size: 72px;
    margin-bottom: 24px;
}

.service-block h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.service-block ul {
    list-style: none;
    margin: 32px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-block li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

/* Bridge Pages */
.bridge-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--dark);
    color: white;
}

.spider-logo {
    font-size: 80px;
    margin-bottom: 24px;
}

.bridge-hero h1 {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
}

.bridge-content {
    padding: 100px 0;
}

.bridge-cta {
    margin: 40px 0;
}

/* Links Page */
.links-hero {
    padding: 140px 0 60px;
    background: var(--gray-50);
}

.links-avatar {
    width: 120px;
    height: 120px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    margin: 0 auto 24px;
}

.links-list {
    padding: 60px 0;
}

.link-button {
    display: block;
    background: var(--gray-50);
    padding: 20px 32px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.link-button:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.link-button.primary {
    background: var(--primary);
    color: white;
}

/* Music Page */
.music-platforms {
    padding: 80px 0;
}

.streaming-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.streaming-button {
    display: block;
    padding: 20px 32px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
}

.streaming-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer p {
    color: var(--gray-100);
    font-size: 14px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 12px;
}

.footer a {
    color: var(--gray-100);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-100);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 16px;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 36px;
    }
}
