/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1A1A1A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --off-white: #FAFAFA;
    --subtle-border: #E8E8E8;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.7;
}

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--subtle-border);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 100px;
    width: auto;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover img {
    opacity: 0.8;
}

.main-nav {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Section Visibility */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

/* Hero Section - For Business Owners */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.65) 100%);
    display: flex;
    align-items: flex-end;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    color: var(--white);
}

.hero-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
}

/* About Me Layout - Side by Side */
.about-layout-wrapper {
    display: flex;
    min-height: 85vh;
    width: 100%;
}

.about-image-container {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.about-content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 6rem;
    background: var(--white);
}

.about-content-container .content-body {
    margin-bottom: 0;
    max-width: 650px;
}

.about-content-container .content-body p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 1.75rem;
}


/* Contact Layout - Side by Side */
.contact-layout-wrapper {
    display: flex;
    min-height: 85vh;
    width: 100%;
}

.contact-image-container {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% top;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 6rem;
    background: var(--white);
}

.contact-content-container .content-body {
    margin-bottom: 0;
    max-width: 650px;
}

.contact-heading {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--primary-color);
}

.contact-intro {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contact-details-block {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 2px solid var(--subtle-border);
    border-bottom: 2px solid var(--subtle-border);
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.contact-value {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-detail-item:first-child .contact-value {
    text-decoration: underline;
    text-decoration-color: rgba(26, 26, 26, 0.3);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.contact-detail-item:first-child .contact-value:hover {
    text-decoration-color: var(--primary-color);
    opacity: 1;
}

.contact-detail-item:last-child .contact-value {
    text-decoration: none;
    cursor: default;
}

.contact-tagline {
    margin-top: 3rem;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--primary-color);
    margin-bottom: 0;
}


/* Content Container */
.content-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--white);
}

.content-body {
    margin-bottom: 4rem;
}

.content-body p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.content-body h2 {
    font-size: 26px;
    font-weight: 500;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Lead Text (highlighted content) */
.lead-text {
    font-size: 26px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

/* About Me Specific Styles */
.about-name {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    line-height: 1.2;
}

.about-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: #555;
}

/* Contact Section - Same styling as other sections */

/* Industry List */
.industry-list {
    list-style: none;
    margin: 1.5rem 0;
    padding-left: 0;
}

.industry-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.industry-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-53%);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2em;
}


/* Section Footer */
.section-footer {
    background: #1A1A1A;
    margin: 0;
    padding: 2rem;
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-company-name {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin: 0;
    color: var(--white);
}

.footer-email {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.footer-email a {
    color: #CCCCCC;
    text-decoration: none;
    transition: var(--transition);
}

.footer-email a:hover {
    color: var(--white);
    opacity: 1;
}

.footer-right {
    text-align: right;
}

.footer-copyright {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    color: #CCCCCC;
    letter-spacing: 0.2px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .content-container {
        padding: 3rem 1.5rem;
    }

    .about-name {
        font-size: 30px;
    }

    .lead-text {
        font-size: 24px !important;
    }
    
    .about-layout-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .about-image-container {
        flex: 0 0 auto;
        height: 50vh;
        min-height: 350px;
    }
    
    .about-content-container {
        padding: 3rem 2rem;
    }
    
    .about-content-container .content-body p {
        font-size: 18px;
    }
    
    
    .contact-layout-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .contact-image-container {
        flex: 0 0 auto;
        height: 50vh;
        min-height: 350px;
    }
    
    .contact-content-container {
        padding: 3rem 2rem;
    }
    
    .contact-heading {
        font-size: 38px;
    }
    
    .contact-intro {
        font-size: 18px;
    }
    
    .contact-value {
        font-size: 20px;
    }
    
    .contact-tagline {
        font-size: 26px;
    }
    
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 75px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        height: 50vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 0 1.5rem 2rem;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .about-layout-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .about-image-container {
        flex: 0 0 auto;
        height: 40vh;
        min-height: 300px;
    }
    
    .about-content-container {
        padding: 2.5rem 1.5rem;
    }
    
    .about-content-container .content-body p {
        font-size: 17px;
    }
    
    
    .contact-layout-wrapper {
        flex-direction: column;
        min-height: auto;
    }
    
    .contact-image-container {
        flex: 0 0 auto;
        height: 40vh;
        min-height: 300px;
    }
    
    .contact-content-container {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-heading {
        font-size: 32px;
        margin-bottom: 1.5rem;
    }
    
    .contact-intro {
        font-size: 17px;
        margin-bottom: 2rem;
    }
    
    .contact-details-block {
        margin: 2rem 0;
        padding: 2rem 0;
    }
    
    .contact-detail-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-value {
        font-size: 19px;
    }
    
    .contact-tagline {
        font-size: 24px;
        margin-top: 2rem;
    }
    

    .content-container {
        padding: 2rem 1rem;
    }

    .content-body {
        margin-bottom: 3rem;
    }

    .content-body p,
    .contact-details p {
        font-size: 17px;
    }
    
    .industry-list li {
        font-size: 17px;
        padding-left: 1.5rem;
    }

    .content-body h2,
    .contact-heading,
    .about-title {
        font-size: 22px;
    }

    .lead-text {
        font-size: 22px !important;
    }

    .about-name {
        font-size: 28px;
    }
    
    .section-footer {
        padding: 1.75rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .footer-right {
        text-align: left;
    }
    
    .footer-company-name {
        font-size: 22px;
    }
    
    .footer-email {
        font-size: 15px;
    }
    
    .footer-copyright {
        font-size: 14px;
    }

    .contact-details {
        padding: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-content {
        padding: 0 1rem 1.5rem;
    }

    .content-container {
        padding: 1.5rem 1rem;
    }

    .about-name {
        font-size: 26px;
    }

    .content-body h2,
    .contact-heading,
    .lead-text {
        font-size: 20px !important;
    }
    
    .section-footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-company-name {
        font-size: 20px;
    }
    
    .footer-email {
        font-size: 14px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
}

