/* ============================================
   OPENMIND - BRAND STYLE GUIDE
   Colors: Dark Blue (Shield), Light Green (Border)
   Soft Gray (#F4F6F7), Deep Navy (Dark Blue)
   Typography: Ubuntu (Google Fonts)
   ============================================ */

:root {
    --tranquil-blue: #193753;
    --mindful-green: #87b692;
    --soft-gray: #F4F6F7;
    --deep-navy: #193753;
    --white: #FFFFFF;
    --text-dark: #193753;
    --text-light: #666666;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.7;
    color: var(--deep-navy);
    background-color: var(--white);
    font-size: 16px;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--deep-navy);
}

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

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    min-height: fit-content;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(25, 55, 83, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--tranquil-blue);
    height: 100%;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--tranquil-blue), var(--mindful-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.nav-link {
    color: var(--deep-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--tranquil-blue);
    background: rgba(25, 55, 83, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--tranquil-blue), var(--mindful-green));
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.main-nav.no-transition .nav-link::after {
    transition: none;
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link.active {
    color: var(--tranquil-blue);
    background: rgba(25, 55, 83, 0.08);
}

.nav-link.active::after {
    width: 60%;
}

.cta-button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 8px rgba(135, 182, 146, 0.2);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--mindful-green), #7aab85);
    color: var(--white);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #7aab85, var(--mindful-green));
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(135, 182, 146, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--tranquil-blue);
    border: 2px solid var(--tranquil-blue);
}

.cta-button.secondary:hover {
    background: var(--tranquil-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.header-cta {
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-navy);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    margin: 0;
    background: linear-gradient(135deg, var(--tranquil-blue), var(--mindful-green));
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 55, 83, 0.9), rgba(135, 182, 146, 0.9));
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/background.png') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0;
    margin: 0;
    margin-top: -5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-logo {
    width: auto;
    max-width: 250px;
    height: 250px;
    margin: 0 auto 0.5rem;
    margin-top: 0;
    padding: 0;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    object-fit: contain;
}

.hero-logo-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 3.25rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 auto 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

.hero-section .container {
    padding: 0 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-headline {
    font-size: 2.75rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.4;
}

.hero-intro {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--white);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.hero-ctas .cta-button {
    min-width: 180px;
}

.hero-section .cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-section .cta-button.secondary:hover {
    background: var(--white);
    color: var(--tranquil-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.hero-tagline {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 2rem;
    opacity: 0.95;
    font-weight: 500;
}

.value-blocks {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    max-width: 1000px;
}

.value-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-block:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-block h3 {
    color: var(--tranquil-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.value-block p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 5rem 0;
}

.hero-section {
    padding: 0.5rem 0;
}

.section-header {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--tranquil-blue);
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--white);
}

.mission-statement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-intro {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--tranquil-blue);
}

.mission-visual {
    height: 300px;
    background: var(--soft-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mission-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.founder-block {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin: 4rem 0;
    padding: 3rem;
    background: var(--soft-gray);
    border-radius: 20px;
}

.founder-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-headshot {
    width: 250px;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.founder-content h3 {
    font-size: 2rem;
    color: var(--tranquil-blue);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.founder-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--mindful-green);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.founder-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.team-section {
    margin: 4rem 0;
}

.team-header {
    font-size: 2rem;
    text-align: center;
    color: var(--tranquil-blue);
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: var(--soft-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(25, 55, 83, 0.2);
}

.team-portrait {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.team-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.yvonne-headshot {
    object-position: center 0%;
    transform: scale(1.15);
}

.dani-headshot {
    object-position: center 25%;
}

.tina-headshot {
    object-position: center 0%;
}

.mike-headshot {
    object-position: center 20%;
}

.garrett-headshot {
    object-position: center 10%;
    transform: scale(1.15);
}

.team-member h4 {
    color: var(--tranquil-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-role {
    font-weight: 600;
    color: var(--mindful-green);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--soft-gray);
    border-radius: 20px;
}

.values-header {
    font-size: 2rem;
    text-align: center;
    color: var(--tranquil-blue);
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
}

.value-item h4 {
    color: var(--tranquil-blue);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
    background: var(--soft-gray);
    padding-bottom: 3rem;
}

.three-part-approach {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0 0 0;
}

.approach-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
}

.approach-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.approach-card h3 {
    color: var(--tranquil-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.approach-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.approach-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0 0 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--tranquil-blue);
}

.flow-arrow {
    color: var(--mindful-green);
    font-size: 2rem;
}

.built-in-tools {
    margin: 4rem 0;
}

.tools-header {
    font-size: 2rem;
    text-align: center;
    color: var(--tranquil-blue);
    margin-bottom: 2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tool-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-item h4 {
    color: var(--tranquil-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tool-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   WHO WE SERVE SECTION
   ============================================ */

.who-we-serve-section {
    background: var(--white);
}

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

.serve-card {
    background: var(--soft-gray);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(25, 55, 83, 0.2);
}

.serve-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.serve-card h3 {
    color: var(--tranquil-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.serve-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.serve-tagline {
    text-align: center;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--mindful-green);
    margin: 3rem 0;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   OUR SERVICE SECTION
   ============================================ */

.our-service-section {
    background: var(--soft-gray);
}

.app-announcement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 2rem auto 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 800px;
}

.app-announcement-text {
    flex: 1;
}

.app-title {
    font-size: 2rem;
    color: var(--tranquil-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.app-status {
    font-size: 1.2rem;
    color: var(--mindful-green);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.app-coming-soon {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
    font-style: italic;
    text-align: center;
    margin: 0.5rem 0 2rem 0;
}

.app-logo-container {
    flex-shrink: 0;
}

.app-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 25px;
}

.features-header {
    text-align: center;
    font-size: 2rem;
    color: var(--tranquil-blue);
    margin: 3rem 0 2rem;
    font-weight: 600;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(25, 55, 83, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--tranquil-blue);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   JOIN SECTION
   ============================================ */

.join-section {
    background: var(--soft-gray);
}

.join-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.join-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.join-card:hover {
    transform: translateY(-5px);
}

.join-card h3 {
    color: var(--tranquil-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.join-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.join-card .cta-button {
    width: 100%;
}

/* ============================================
   PRESS SECTION
   ============================================ */

.press-section {
    background: var(--white);
}

.speaking-topics {
    margin: 3rem 0;
}

.speaking-topics h3 {
    font-size: 1.8rem;
    color: var(--tranquil-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.topic-card {
    background: var(--soft-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
}

.topic-card h4 {
    color: var(--tranquil-blue);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* ============================================
   RESEARCH SECTION
   ============================================ */

.research-section {
    background: var(--soft-gray);
}

.research-tagline {
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--mindful-green);
    margin: 2rem 0;
    font-weight: 500;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.email-list-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.email-list-header {
    font-size: 1.8rem;
    color: var(--tranquil-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.email-list-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-list-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-list-form input {
    padding: 1rem;
    border: 2px solid var(--soft-gray);
    border-radius: 10px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-list-form input:focus {
    outline: none;
    border-color: var(--tranquil-blue);
}

.contact-info-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info-header {
    font-size: 1.8rem;
    color: var(--tranquil-blue);
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--tranquil-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--mindful-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--tranquil-blue);
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: var(--deep-navy);
    color: var(--white);
    padding: 2rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1rem;
    min-height: fit-content;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-height: fit-content;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    max-height: 90px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--mindful-green);
}

.footer-nav-mobile-only {
    display: none;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-icon {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--mindful-green);
    border-color: var(--mindful-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--mindful-green);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-copyright a {
    color: var(--mindful-green);
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .main-nav {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 968px) {
    body {
        padding-top: 0;
    }

    .main-header {
        position: relative;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        display: flex;
        gap: 0;
    }

    .main-nav.mobile-nav-open {
        max-height: 500px;
        padding: 2rem;
    }

    .nav-link {
        padding: 0.75rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--soft-gray);
        font-size: 1rem;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        display: none;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }

    .mission-statement {
        grid-template-columns: 1fr;
    }

    .mission-text {
        text-align: center;
    }

    .founder-block {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .founder-image {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-nav-mobile-only {
        display: inline-block;
    }
    
    .social-icons {
        justify-content: center;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 0.5rem 0;
        min-height: calc(100vh - 70px);
    }
    
    .hero-content {
        margin-top: -8vh;
    }
    
    .hero-logo {
        max-width: 200px;
        height: 200px;
        margin: 0 auto 0.75rem;
        margin-top: 0;
    }
    
    .hero-logo-text {
        font-size: 2.5rem;
        margin: 0 auto 0.75rem;
    }
    
    .hero-headline {
        font-size: 2rem;
        margin: 0 0 0.75rem 0;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-intro {
        font-size: 0.9rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .section-header {
        font-size: 2rem;
    }

    .three-part-approach,
    .serve-grid,
    .features-grid,
    .join-paths {
        grid-template-columns: 1fr;
    }

    .app-announcement {
        flex-direction: column;
        text-align: center;
    }

    .app-logo {
        width: 100px;
        height: 100px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .value-blocks {
        flex-direction: column;
        align-items: center;
    }

    .value-block {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .hero-section {
        min-height: calc(100vh - 60px);
        padding: 0.5rem 0;
    }

    .hero-content {
        margin-top: -10vh;
    }

    .hero-logo {
        max-width: 180px;
        height: 180px;
        margin: 0 auto 0.6rem;
        margin-top: 0;
    }
    
    .hero-logo-text {
        font-size: 2rem;
        margin: 0 auto 0.6rem;
    }
    
    .hero-headline {
        font-size: 1.75rem;
        margin: 0 0 0.6rem 0;
    }

    .hero-subheadline {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-intro {
        font-size: 0.85rem;
    }

    .section-header {
        font-size: 1.75rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
