/* Vision Painter Studio - Shared Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    color: #333;
    background: #fff;
    font-size: 15px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
    padding: 1.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

nav {
    display: flex;
    gap: 2rem;
    justify-self: start;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.6;
}

nav a.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

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

.logo-center img {
    height: 80px;
    width: auto;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #333;
    margin: 5px 0;
}

/* Hero Section - Index */
.hero {
    min-height: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-repeat: no-repeat;
    background-image: url('https://characommunity.com/wp-content/uploads/2026/01/Fog-Rolling-Wide.gif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.hero-questions {
    margin-bottom: 3rem;
}

.hero-questions p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    color: #555;
}

.divider {
    width: 60px;
    height: 1px;
    background: #ccc;
    margin: 1.5rem auto;
}

.hero-answer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
}

.hero-answer p {
    margin-bottom: 0.3rem;
}

.hero-answer em {
    font-style: italic;
    font-size: 1.5rem;
}

/* Full-width image section */
.hero-image-section {
    position: relative;
    z-index: 1;
    height: 60vh;
    min-height: 400px;
    background: #fff7bf;
    background-image: url('/people tell story.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.hero-image-section .cta-box {
    background: #fff;
    padding: 1rem 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.hero-image-section .cta-box:hover {
    background: #333;
    color: #fff;
}

/* Page Section (About, Founder, Contact) */
.page-section {
    padding: 4rem 5rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text strong {
    font-weight: 400;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-cta {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    margin-top: 3rem;
}

/* Founder Section */
.page-section > h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.founder-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1rem;
}

.founder-text .yours {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.founder-text .yours strong {
    font-weight: 500;
}

.founder-text p {
    margin-bottom: 1.5rem;
}

.founder-closing {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.founder-closing strong {
    font-weight: 500;
}

.founder-image-container {
    text-align: center;
}

.founder-image-container img.founder-photo {
    width: 100%;
    max-width: 320px;
    height: auto;
}

.founder-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
    font-weight: 400;
}

.founder-credentials {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 0.02em;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.contact-info .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.contact-info a {
    color: #333;
    text-decoration: underline;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-form label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-form label span {
    color: #999;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.75rem;
}

.contact-form .sub-label {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
    background: transparent;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: #333;
}

.contact-form .name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    border: 1px solid #ddd;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.contact-form button {
    background: #333;
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.contact-form button:hover {
    background: #555;
}

/* Footer */
footer {
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

footer a {
    color: #333;
    text-decoration: underline;
}

footer .copyright {
    color: #999;
}


/* start test */
.hero-section {
  position: relative;
  height: 100vh;
  background: #0a0a0a;
  overflow: hidden;
  
  /* ADD THESE TWO LINES TO FIX CENTERING */
  display: flex;
  justify-content: center;
  align-items: center;
}

.fog-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  filter: blur(2px) grayscale(0.2);
  z-index: 1;
}

.fog-img {
  position: absolute;
  height: 100%;
  width: 200%;
  background: url('https://characommunity.com/wp-content/uploads/2026/01/trees-fog-copy-scaled.webp') repeat-x;
  background-size: contain;
}

#fog-layer-1 {
  opacity: 0.3;
  animation: rollFog 60s linear infinite;
}

#fog-layer-2 {
  opacity: 0.15;
  animation: rollFog 30s linear infinite;
}

@keyframes rollFog {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  /* Removed display:flex and height:100% from here to let the parent handle it */
}


/* end test */



/* Mobile Responsive */
@media (max-width: 900px) {
    .about-grid,
    .founder-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image,
    .founder-image-container {
        order: -1;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
        position: sticky;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 100;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle {
        display: block;
    }

    .logo-center img {
        height: 60px;
    }

    .hero {
        min-height: 80vh;
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;

    }

    .page-section {
        padding: 3rem 1.5rem;
    }

    .founder-grid,
    .about-grid,
    .contact-grid {
        gap: 2rem;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
}
