/* Nova Insight Integrative Therapy - Shared Styles */

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

:root {
    --primary: #3d7a8a;
    --teal: #4a8fa0;
    --peach: #f4a261;
    --sage: #c8d5c7;
    --light: #f5f3f0;
    --cream: #f9f7f4;
    --dark: #4a4a4a;
    --text: #5a5a5a;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
}

/* Navigation */
nav {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo-img { height: 50px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-links li:has(.portal-button) {
    margin-right: -0.75rem;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--teal); }

.cta-button, .portal-button {
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-button { background: var(--teal); }
.portal-button { background: var(--peach); }

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    background: var(--peach);
    color: var(--teal);
}

.portal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    background: var(--teal) !important;
    color: var(--peach) !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--teal);
}

/* Page Headers */
.page-header {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--teal), var(--primary));
    color: white;
    padding: 3.5rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Hero Section (Home Page) */
.hero {
    margin-top: 70px;
    height: 85vh;
    background: linear-gradient(rgba(74, 143, 160, 0.4), rgba(61, 122, 138, 0.5)), url('hero-flowers.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Smaller hero title for 1-line display */
.hero-title-small {
    font-size: 2.64rem !important;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

/* Logo Section with White Background */
.logo-section {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
}

.tall-logo {
    max-height: 150px;
    width: auto;
    max-width: 100%;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Intro Section (Home Page) */
.intro-section {
    background: var(--sage);
    padding: 3rem 2rem;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.intro-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.intro-highlight {
    background: var(--primary);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    color: white;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Feature Cards (Home Page) */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: white;
    padding: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.feature-icon { font-size: 2rem; margin-bottom: 0.6rem; }

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-size: 1.1rem;
}

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

/* About Page Styles */
.about-intro {
    background: #e8f0e7;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.about-intro h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.about-intro p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.therapist-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    padding: 2rem;
}

.therapist-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    align-items: start;
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .office-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.therapist-photo {
    width: 180px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.therapist-info {
    padding: 0;
}

.therapist-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.therapist-info h4 {
    color: var(--teal);
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.therapist-contact {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light);
}

.therapist-contact a {
    color: var(--teal);
    text-decoration: none;
}

.specialties-box {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.specialties-box strong {
    color: var(--primary);
}

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

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Image Carousel/Slider */
.image-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-container img {
    width: 100%;
    min-width: 100%;
    height: 450px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 15px; }
.carousel-btn.next { right: 15px; }

.carousel-dots {
    text-align: center;
    padding: 1rem;
    background: white;
}

.carousel-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light);
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dots span.active {
    background: var(--teal);
}

/* Services Page Styles */
.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-section {
    margin-bottom: 3rem;
    text-align: center;
}

.section-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.section-title {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Pill/Tag Container */
.pill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Sage/Muted Pills */
.pill-sage {
    background: var(--sage);
    border: none;
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Fees Card */
.fees-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    max-width: 500px;
    margin: 2rem auto 0;
}

.fees-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

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

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light);
    font-size: 0.95rem;
}

.service-list li:before {
    content: "✓ ";
    color: var(--teal);
    font-weight: bold;
}

.fees-section {
    margin-top: 1.5rem;
}

.fees-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.fees-section strong {
    color: var(--primary);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
}

.submit-btn {
    width: 100%;
    background: var(--teal);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.submit-btn:hover {
    background: var(--primary);
}

.contact-info {
    background: var(--sage);
    padding: 3rem;
    border-radius: 15px;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.info-item a {
    color: var(--teal);
    text-decoration: none;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Emergency Notice Box */
.emergency-notice {
    background: var(--light);
    border-left: 4px solid var(--peach);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    text-align: center;
}

.emergency-notice p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark);
    margin: 0;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 2rem 2rem;
    text-align: center;
    font-size: 0.8rem;
}

footer a { color: white; }

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .nav-links.active { display: flex; }
    
    .hero h1 { font-size: 2.5rem; }
    .logo-img { height: 40px; }
    .hero-content-box { padding: 2rem; }
    .page-header h1 { font-size: 2rem; }
    .therapist-grid { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
