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

body {
    font-family: 'Poppins', serif;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.nav {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
}

.nav-toggle {
    display: none;
}

.hamburger {
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #8B2C2A;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu {
    position: absolute;
    top: 2.5rem;
    right: 0;
    background: #F4F1EB;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 8px;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 220px;
    display: none;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
}

.nav-menu a:hover {
    background: rgba(139,44,42,0.08);
    color: #8B2C2A;
}

.nav-toggle:checked + .hamburger + .nav-menu {
    display: block;
}

/* Animate hamburger to X when open */
.nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Section styles */
.section {
   /* min-height: 100vh;*/
    padding: 4rem 2rem;
    display: flex;
   /* align-items: center;*/
    position: relative;
}

/* Ensure anchor targets don't hide behind fixed nav */
.about-container,
.goldilocks-container,
.skills-container,
.services-container {
    scroll-margin-top: 80px;
}

.section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: #8B2C2A;
    opacity: 0.2;
}

.section:last-child::after {
    display: none;
}

.home-section {
    background-color: #F4F1EB;
}

.about-section {
    background-color: #F4F1EB;
    color: #333;
}

.goldilocks-section {
    /*background-color: #F4F1EB;*/
    color: #333;
}

.skills-section {
    background-color: #F4F1EB;
    color: #333;
    padding: 4rem 8rem;
}

/* Services */
.services-section {
    background-color: #F4F1EB;
    color: #333;
}

/* Services section uses Poppins for body text */
.services-section,
.services-section p,
.services-section .offering,
.services-section .services-container,
.services-section .icon-row,
.services-section .contact-button,
.services-section .offering-cta,
.services-section .offering-cta-image {
    font-family: 'Poppins', sans-serif;
}

.services-container {
    max-width: 2000px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
}

.services-container h1 {
    margin-bottom: 3rem;
}

.offering {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(26, 26, 26, 0.05);
}

.offering .bullet-list {
    text-align: left;
    margin: 1rem 0;
}

.offering-feature .bullet-list {
    display: inline-block;
    text-align: left;
    margin: 1rem auto;
    line-height: 1.0;
}

.offering-feature .bullet-list li {
    margin-bottom: 0;
}

.offering-feature {
    max-width: 720px;
    margin: 0 auto 2rem auto;
}

.offering-cta {
    width: auto;
    display: inline-block;
    margin-top: 1rem;
}

.offering-cta-image img {
    display: inline-block;
    width: 220px;
    height: auto;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.offering-cta-image img:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-color: rgba(139,44,42,0.35);
}

.offerings-row .offering {
    height: 100%;
}

.offerings-row .offering .bullet-list {
    display: inline-block;
    text-align: left;
    margin: 1rem auto;
    line-height: 1.0;
}

.offerings-row .offering .bullet-list li {
    margin-bottom: 0;
}

.icon-row {
    display: inline-flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.offering-read-more {
    display: inline-block;
    margin-top: 0.5rem;
    color: #8B2C2A;
    text-decoration: none;
    font-weight: 700;
}

.offering-read-more:hover {
    text-decoration: underline;
}

.calendly-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #8B2C2A;
    text-decoration: none;
    font-weight: 700;
}

.calendly-link:hover {
    text-decoration: underline;
}

.icon-row img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

/* Main content */
main {
    width: 100%;
}

/* Home page */
.home-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.left-column {
    flex: 1;
}

.headshot-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.headshot {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #8B2C2A;
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.home-section .right-column h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3.2rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    font-family: 'Playfair Display', serif;
}

h3, h4, h5, h6 {
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.contact-button {
    display: inline-block;
    background-color: #8B2C2A;
    color: #F4F1EB;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 2rem;
    width: 50%;
    text-align: center;
}

.contact-button:hover {
    background-color: #6B221F;
    color: #F4F1EB;
}

/* About page */
.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    margin-top: 2rem;
}

.about-icons {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1rem;
}

.about-icons .connect-icon {
    width: 22px;
    height: auto;
}

/* Experience & Skills sections */
.goldilocks-container,
.skills-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.goldilocks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.goldilocks-container h1,
.goldilocks-container h2,
.goldilocks-container h3,
.goldilocks-container p,
.goldilocks-container ul {
    color: #333;
}

.goldilocks-container h1 {
    margin-bottom: 3rem;
}

.goldilocks-container .two-column-container {
    gap: 6rem;
    margin-top: 0;
}

.goldilocks-container .bullet-list li {
    font-size: 1.2rem;
    line-height: 1.8;
}

.goldilocks-container .bullet-list li b {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B2C2A;
}

.goldilocks-container h2 {
    margin-bottom: 1rem;
    color: #8B2C2A;
    position: relative;
    padding-left: 2rem;
}

.goldilocks-container h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('images/star-bullet.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.goldilocks-container p:first-of-type {
    line-height: 1.8;
}

.skills-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
}

.skills-container h1 {
    margin-bottom: 3rem;
}

.skills-container h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
}

.skills-container p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    position: relative;
    padding-left: 2rem;
}

.skills-container p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 16px;
    height: 16px;
    background-image: url('images/compass-bullet.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.skills-container p:last-child {
    margin-bottom: 0;
}

.three-column-container {
    display: flex;
    gap: 4rem;
    margin-top: 0;
    margin-bottom: 3rem;
}

.three-column-container .column {
    flex: 1;
}

.skills-divider {
    border: none;
    border-top: 1px solid #8B2C2A;
    margin: 0 0 2rem 0;
    opacity: 0.3;
}

.skills-headings {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.skills-headings h2 {
    flex: 1;
    text-align: center;
    margin: 0;
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.skills-container h2:first-child {
    margin-top: 0;
}

.two-column-container {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
}

.two-column-container .left-column,
.two-column-container .right-column {
    flex: 1;
}

.bullet-list {
    list-style-type: disc;
    padding-left: 2rem;
}

.bullet-list li {
    margin-bottom: 2.5rem;
}

.bullet-list li:last-child {
    margin-bottom: 0;
}

.skills-section .bullet-list li {
    margin-bottom: 1rem;
}

.star-bullet-list {
    list-style: none;
    padding-left: 2rem;
    margin-bottom: 2rem;
    margin-left: 1rem;
}

.star-bullet-list:last-child {
    margin-bottom: 0;
}

.star-bullet-list li {
    position: relative;
    padding-left: 2rem;
    line-height: 1.8;
}

.star-bullet-list li::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1.2rem;
    background-image: url('images/star-bullet.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.star-bullet-list li b {
    display: block;
    margin-bottom: 0.5rem;
    color: #8B2C2A;
}

/* Connect section */
.connect-section {
    background-color: #F4F1EB;
    color: #333;
}

.connect-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

.connect-container h1 {
    margin-bottom: 3rem;
    text-align: center;
}

.business-card {
    background-color: #F4F1EB;
    color: #333;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.business-card h2 {
    font-size: 2rem;
    color: #8B2C2A;
    margin-bottom: 2rem;
}

.connect-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.connect-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #555;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease;
}

.connect-link:hover {
    color: #8B2C2A;
}

.connect-icon {
    width: 20px;
    height: auto;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: #F4F1EB;
    color: #333;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

.footer p {
    margin: 0;
}

/* Footer attribution style */
.footer p + p {
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.5rem;
}

.footer-icons {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0 0.5rem 0;
}

.footer-icons .connect-icon {
    width: 22px;
    height: auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .home-section .right-column h1 {
        font-size: 2.6rem;
        letter-spacing: 0.2px;
    }
    .offering-feature {
        margin: 0 1rem 1.5rem 1rem;
    }

    .offerings-row .offering {
        margin-bottom: 1rem;
    }
    .about-container,
    .goldilocks-container,
    .skills-container,
    .services-container {
        scroll-margin-top: 68px;
    }
    .nav {
        top: 0.75rem;
        right: 0.75rem;
    }

    .nav-menu {
        min-width: 200px;
    }
    .home-container,
    .two-column-container,
    .three-column-container,
    .skills-headings {
        flex-direction: column;
        gap: 2rem;
    }

    .home-container {
        margin-right: 1em;
        margin-left: 1em;
    }

    .headshot-container {
        max-width: 300px;
    }

    .section {
        padding: 2rem 1rem;
    }

    .about-container h1 {
        font-size: 1.5em;
    }

    .skills-section {
        padding: 2rem 2rem;
    }

    .skills-container {
        padding: 0 1rem;
    }
    
    .skills-container h1 {
        font-size: 1.5em;
    }

    .skills-headings h2 {
        display: none;
    }

    .skills-container h2 {
        display: none;
    }

    .goldilocks-container h1 {
        font-size: 1.5em;
        margin-bottom: 1em;
    }

    .goldilocks-container h2 {
        font-size: 1.1em;
    }

    .goldilocks-container p {
        display: none;
    }

    .goldilocks-container .two-column-container {
        gap: 0em;
    }


    .connect-container h1 {
        display: none;
    }

    .connect-links {
        display: inline-flex;
        flex-direction: row;
        gap: 1rem;
        margin-left: 1rem;
        vertical-align: middle;
    }

    .connect-link span {
        display: none;
    }

    .connect-link {
        font-size: 1rem;
        padding: 0.5rem;
        width: 100%;
        justify-content: flex-start;
    }

    .connect-icon {
        width: 24px;
        margin: 0;
    }
} 