/* HEADSHOT POSITIONING - BASED ON ACTUAL HTML */
.about-image {
    text-align: center;
    margin-bottom: 2rem;
}

.about-image .profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    display: block;
    margin: 0 auto;
}

/* MEDIUM SCREENS - Prevent headshot cutoff */
@media screen and (min-width: 769px) and (max-width: 1200px) {
    .about-text {
        padding-left: 20px !important;
    }
    
    .about-image {
        position: static !important;
        left: auto !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
}

/* DESKTOP: Put headshot in left gutter */
@media screen and (min-width: 1201px) {
    .about-text {
        position: relative !important;
        padding-left: 20px !important;
    }
    
    .about-image {
        position: absolute !important;
        left: -120px !important;
        top: 0 !important;
        margin: 0 !important;
    }
    
    .about-image .profile-image {
        width: 100px !important;
        height: 100px !important;
        margin: 0 !important;
    }
    
    .about-text h2 {
        text-align: left !important;
        display: block !important;
        margin-top: 0 !important;
    }
}

/* MOBILE HERO FIX - BETTER BREAKPOINTS */
@media screen and (max-width: 480px) {
    .hero {
        min-height: 80vh !important;
        padding: 90px 8vw 20px 8vw !important;
    }
}

/* VERY SMALL SCREENS (iPhone) */
@media screen and (max-width: 375px) {
    .hero {
        min-height: 110vh !important;
        padding: 100px 2vw 50px 2vw !important;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(37, 99, 235, 0.1) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background: #ffffff;
    --background-light: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    background: var(--background);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url('/assets/images/Jon-DeLeon-Media-Logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.logo span {
    font-size: 0.75rem;
    color: var(--text-secondary); /* Change to gray instead of blue */
    font-weight: 400; /* Much lighter weight */
    text-transform: none; /* Remove uppercase */
    letter-spacing: 0.05em; /* Less letter spacing */
    margin-top: 0.25rem; /* Add some space above */
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #4b5563 100%);
    min-height: 70vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: calc(70px + 3rem) 8vw 3rem 8vw;
    box-sizing: border-box;
}

/* Force hero container to have consistent padding at ALL screen sizes */
.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    padding: 0 !important;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    color: white;
    margin-top: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    width: 100%;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat span {
    font-size: 0.75rem;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
}

/* Buttons */
.btn, .btn-primary, .btn-secondary {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-width: 150px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn {
    background: var(--accent-color);
    color: white;
    width: 100%;
    justify-content: center;
}

.btn:hover {
    background: var(--secondary-color);
}

/* How I Help Section */
.how-i-help {
    padding: 4rem 0;
    background: var(--background);
}

.how-i-help h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.help-item {
    text-align: center;
}

.help-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.help-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.help-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.help-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--background-light);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-subtitle {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--background);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color);
    flex: 0 1 300px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(37, 99, 235, 0.25);
    border-color: var(--primary-color);
}

.service-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.popular {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-card li:last-child {
    border-bottom: none;
}

/* SERVICES SECTION UPDATE */
.services-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 40px;
    font-size: 14px;
}

/* Tools Section */
.tools {
    padding: 4rem 0;
    background-color: var(--background);
}

.tools h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.tools-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.tool-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* About Section */
.about {
    padding: 6rem 0 0 0;
    background: var(--background);
}

.about-header {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    justify-content: flex-start !important;
    margin-bottom: 1rem !important;
    flex-direction: row !important;
    text-align: left !important;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@media (min-width: 769px) {
    .about-header {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
    }
}

.header-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text {
    width: 100%;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin: 0 auto 1rem auto;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
    display: block;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.about p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.credentials {
    margin-top: 2rem;
}

.cred {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.2s ease;
}

.cred:hover {
    transform: translateX(4px);
}

.cred strong {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cred span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: var(--background-light);
}

.portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: var(--background);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.portfolio-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.portfolio-item p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.portfolio-item audio {
    width: 100%;
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--background);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--background);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 1rem;
}

.contact-info .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--background);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Section Dividers */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    margin: 2rem auto;
    max-width: 200px;
}

/* Enhanced Typography */
section h2 {
    position: relative;
    margin-bottom: 3rem;
}


/* Footer */
footer {
    background: var(--text-primary);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .logo {
        gap: 0.5rem; /* Tighter spacing */
    }
    
    .logo h1 {
        font-size: 1.2rem; /* Smaller company name */
    }
    
    .logo span {
        font-size: 0.65rem; /* Smaller tagline */
        white-space: nowrap;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--background);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
        font-size: 1.2rem;
    }
    
    .hero {
        min-height: 60vh;
        padding: calc(70px + 2rem) 6vw 2rem 6vw !important;
    }
    .hero .container {
        padding: 0;
    }

    
    .hero h1 {
        font-size: 2.2rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        margin-bottom: 3rem;
        margin-top: 0.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 100%;
        margin-bottom: 3rem;
    }
    .stat {
        width: 100%;
        max-width: 350px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .about-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .about-content {
        text-align: center;
        order: 1;
    }
    
    .about-header {
        order: 0;
    }
    
    .about h2 {
        order: 0;
        margin-top: 0;
    }
    
    .about-text {
        order: 1;
    }
    
    .contact-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-grid {
        flex-direction: column;
        align-items: center;
    }

    .tools-list {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .tool-item {
        font-size: 15px;
    }

    .help-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--background-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-item {
    background: var(--background);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 2px solid var(--border-color);
}

.quote-mark {
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: serif;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

 .privacy-container a {
    color: #0066cc;
    text-decoration: underline;
}

.privacy-container a:hover {
    color: #004499;
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }
    .logo h1 {
        font-size: 1rem;
    }
    
    .logo span {
        font-size: 0.6rem;
    }

   .hero {
        min-height: 95vh;
        padding: calc(70px + 2.5rem) 10vw 2.5rem 10vw !important;
    }
    .hero .container {
        padding: 0;
    }
    .hero h1 {
        font-size: 1.8rem;
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
        word-break: break-word;
    }
    .hero-subtitle {
        margin-bottom: 2rem;
        margin-top: 0.4rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
        margin-bottom: 2.5rem;
    }
    .stat {
        width: 100%;
        max-width: 350px;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .testimonial-item {
        padding: 1.5rem 1rem;
    }

}

