/* ============================================
   SOPH FOR GROWTH - WEBSITE STYLES
   Friendly, Professional, Female-Owned Vibe
   ============================================ */

/* Variables */
:root {
    --primary-color: #E8B4D0;     /* Soft pink */
    --secondary-color: #7B5B7E;   /* Deep purple */
    --accent-color: #F4A460;      /* Warm peach */
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --light-bg: #FAFAF8;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    margin-bottom: 0.8em;
    font-weight: 600;
}

h1 {
    font-size: 3em;
    line-height: 1.2;
}

h2 {
    font-size: 2.2em;
}

h3 {
    font-size: 1.5em;
}

p {
    margin-bottom: 1em;
    color: var(--text-light);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background-color: var(--white);
    border-bottom: 2px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em 20px;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2em;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 0.5em;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        gap: 1em;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        font-size: 0.9em;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, #FFF5F8 0%, #F5F0FF 100%);
    padding: 120px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    color: var(--secondary-color);
    margin-bottom: 1em;
    font-size: 3.5em;
}

.hero-content p {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 2em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   CALL TO ACTION BUTTON
   ============================================ */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1em 2.5em;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
    box-shadow: 0 4px 15px rgba(232, 180, 208, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 180, 208, 0.4);
    color: white;
}

/* ============================================
   OVERVIEW / CARDS SECTION
   ============================================ */
.overview {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.overview h2 {
    text-align: center;
    margin-bottom: 3em;
}

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

.card {
    background: var(--white);
    padding: 2em;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.card-icon {
    font-size: 2.5em;
    margin-bottom: 1em;
}

.card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8em;
}

/* ============================================
   FEATURED SERVICES
   ============================================ */
.featured-services {
    padding: 80px 20px;
}

.featured-services h2 {
    text-align: center;
    margin-bottom: 3em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2em;
    margin-bottom: 3em;
}

.service-item {
    background: linear-gradient(135deg, #FFF5F8 0%, #F5F0FF 100%);
    padding: 2em;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1em;
}

.learn-more-btn {
    display: block;
    text-align: center;
    background-color: var(--light-bg);
    color: var(--secondary-color);
    padding: 0.8em 2em;
    border-radius: 50px;
    font-weight: 600;
    margin: 0 auto;
    width: fit-content;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.learn-more-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #FFF5F8 0%, #F5F0FF 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--text-dark);
}

.page-header h1 {
    margin-bottom: 0.5em;
}

.page-header p {
    font-size: 1.2em;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.services-detail,
.about-content,
.testimonials,
.blog,
.contact {
    padding: 60px 20px;
}

.service-detail-item,
.about-section {
    margin-bottom: 3em;
    background: var(--light-bg);
    padding: 2em;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-detail-item h2,
.about-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1em;
}

.service-detail-item ul,
.about-section ul {
    list-style: none;
    margin: 1.5em 0;
}

.service-detail-item li,
.about-section li {
    padding: 0.5em 0;
    padding-left: 1.5em;
    position: relative;
    color: var(--text-light);
}

.service-detail-item li:before,
.about-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--light-bg);
    padding: 2.5em;
    border-radius: 10px;
    margin-bottom: 2em;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.testimonial-header h3 {
    color: var(--secondary-color);
    font-size: 1.3em;
}

.testimonial-org {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9em;
    margin-top: -0.5em;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin: 1.5em 0;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ============================================
   BLOG
   ============================================ */
.blog-post {
    background: var(--light-bg);
    padding: 2em;
    border-radius: 8px;
    margin-bottom: 2em;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post h2 {
    color: var(--secondary-color);
    font-size: 1.5em;
}

.blog-date {
    color: var(--accent-color);
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 0.5em;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1em;
    transition: transform 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
}

.contact-info h2 {
    margin-bottom: 2em;
}

.info-item {
    margin-bottom: 2.5em;
}

.info-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5em;
}

.info-item p {
    color: var(--text-light);
}

.contact-form-wrapper h2 {
    margin-bottom: 2em;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5em;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5em;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8em;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 180, 208, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-note {
    margin-top: 1em;
    text-align: center;
    font-size: 0.95em;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #FFF5F8 0%, #F5F0FF 100%);
    padding: 3em;
    border-radius: 10px;
    text-align: center;
    margin-top: 3em;
}

.cta-section h3 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
}

.cta-section p {
    font-size: 1.05em;
    margin-bottom: 1.5em;
}

/* ============================================
   SUBSCRIBE FORM
   ============================================ */
.subscribe-form {
    display: flex;
    gap: 0.5em;
    max-width: 400px;
    margin: 1em auto 0;
}

.subscribe-form input {
    flex: 1;
    padding: 0.8em;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1em;
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 2em 20px;
    margin-top: 3em;
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5em;
}

footer a {
    color: var(--primary-color);
}

footer a:hover {
    color: var(--accent-color);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .overview,
    .featured-services,
    .services-detail,
    .about-content,
    .testimonials,
    .blog,
    .contact {
        padding: 40px 20px;
    }

    .subscribe-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    .hero-content h1 {
        font-size: 1.5em;
    }

    .overview-cards,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1em;
    }
}