/*
Theme Name: Natalia Pierce Theme
Author: Your Name
Description: Тема для психотерапевта Наталії Пірс
Version: 1.0
*/


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

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #2A2622;
    background-color: #FFFFFF;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 260px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-link {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #2A2622;
    text-decoration: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #7E7367;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2A2622;
}

.cta-button {
    background: #437056;
    color: #FAF8F5;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.35px;
    box-shadow: 0px 4px 20px rgba(42, 38, 34, 0.06);
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #3a5f4a;
}












/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(67, 112, 86, 0.05) 0%, rgba(192, 149, 89, 0.08) 100%);
    background-image: url('https://static.codia.ai/image/2025-12-18/dV5JBQCPR0.png');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    margin-top: 76px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 124px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
}

.hero-text {
    flex: 1;
    max-width: 544px;
}

.hero-subtitle {
    color: #7E7367;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    color: #2A2622;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: #437056;
}

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    line-height: 36px;
    color: rgba(42, 38, 34, 0.8);
    margin-bottom: 24px;
}

.hero-cta {
    padding-top: 16px;
}

.cta-button-large {
    background: #437056;
    color: #FAF8F5;
    padding: 14px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.45px;
    box-shadow: 0px 4px 20px rgba(42, 38, 34, 0.06);
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background: #3a5f4a;
}

.hero-image {
    flex: 1;
    max-width: 544px;
}

.hero-image img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    border-radius: 40px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #2A2622;
    margin-bottom: 16px;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: #437056;
    border-radius: 9999px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 20px;
    line-height: 28px;
    color: #7E7367;
    margin-top: 16px;
}

/* About Section */
.about {
    background: #F0ECE6;
    padding: 128px 512px;
}

.about-container {
    max-width: 896px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-intro {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #2A2622;
}

.about-description {
    font-size: 20px;
    line-height: 28px;
    color: rgba(42, 38, 34, 0.8);
}

.highlight-text {
    color: #437056;
}

/* Services Section */
.services {
    background: #FAF8F5;
    padding: 128px 260px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1152px;
    margin: 0 auto;
}

.service-card {
    background: #F5F3EF;
    border: 1px solid rgba(224, 218, 209, 0.5);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 23px;
    min-height: 204px;
}

.service-icon {
    width: 56px;
    height: 56px;
    object-fit: cover;
}

.service-title {
    font-size: 18px;
    line-height: 29px;
    color: #2A2622;
    font-weight: 400;
}

/* Offer Section */
.offer {
    background: rgba(224, 235, 229, 0.3);
    padding: 128px 512px;
}

.offer-container {
    max-width: 896px;
    margin: 0 auto;
}

.offer-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-item {
    background: #FAF8F5;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0px 2px 8px rgba(42, 38, 34, 0.04);
}

.offer-icon {
    width: 32px;
    height: 32px;
    object-fit: cover;
    flex-shrink: 0;
}

.offer-text {
    font-size: 18px;
    line-height: 29px;
    color: #2A2622;
}

/* Methods Section */
.methods {
    background: #FAF8F5;
    padding: 128px 260px;
}

.methods-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
}

.method-card {
    text-align: center;
    padding: 32px 16px;
}

.method-icon {
    width: 64px;
    height: 64px;
    object-fit: cover;
    margin: 0 auto 24px;
}

.method-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #2A2622;
    margin-bottom: 8px;
}

.method-subtitle {
    font-size: 16px;
    line-height: 24px;
    color: #7E7367;
}

.methods-summary {
    background: #F0ECE6;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.summary-text {
    font-size: 20px;
    line-height: 28px;
    color: #2A2622;
}

/* CTA Section */
.cta-section {
    background: #437056;
    background-image: url('https://static.codia.ai/image/2025-12-18/K0aMDaUxgN.png');
    background-size: cover;
    background-position: center;
    padding: 128px 512px;
    text-align: center;
}

.cta-container {
    max-width: 896px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #FAF8F5;
    margin-bottom: 32px;
}

.cta-description {
    font-size: 24px;
    line-height: 32px;
    color: rgba(250, 248, 245, 0.9);
}

.cta-description .highlight-text {
    color: #FAF8F5;
}

/* Target Section */
.target {
    background: #F0ECE6;
    padding: 128px 512px;
}

.target-container {
    max-width: 896px;
    margin: 0 auto;
}

.target-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.target-item {
    background: #FAF8F5;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0px 2px 8px rgba(42, 38, 34, 0.04);
}

.target-icon {
    width: 48px;
    height: 48px;
    object-fit: cover;
    flex-shrink: 0;
}

.target-text {
    font-size: 18px;
    line-height: 28px;
    color: #2A2622;
}

/* Results Section */
.results {
    background: #FAF8F5;
    padding: 128px 260px;
}

.results-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.results-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.result-tag {
    background: rgba(224, 235, 229, 0.5);
    border-radius: 9999px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tag-icon {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.tag-text {
    font-size: 16px;
    line-height: 24px;
    color: #2A2622;
}

.results-quote {
    background: linear-gradient(135deg, rgba(224, 235, 229, 0.5) 0%, rgba(217, 196, 166, 0.2) 100%);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 32px;
    color: #2A2622;
}

/* Contact Section */





.contact {
    background: #F0ECE6;
    padding: 128px 260px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    background: #FFFFFF;
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 64px;
    max-width: 1152px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    max-width: 544px;
}

.info-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #2A2622;
    margin-bottom: 24px;
}

.contact-info-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #2A2622;
  margin-bottom: 24px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.info-card {
    background: #FAF8F5;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0px 2px 8px rgba(42, 38, 34, 0.04);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-icon {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-bottom: 12px;
}

.info-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #2A2622;
    margin-bottom: 4px;
}

.info-card-text {
    font-size: 14px;
    line-height: 20px;
    color: #7E7367;
}

.social-section {
    margin-top: 48px;
}

.social-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #2A2622;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.social-link {
    display: block;
    width: 48px;
    height: 48px;
}

.social-link img:hover {
    border: 1px solid #437056;
    border-radius: 50%;
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-description {
    font-size: 14px;
    line-height: 20px;
    color: #7E7367;
}

.pricing-card {
  background: #FAF8F5;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0px 2px 8px rgba(42, 38, 34, 0.04);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(224, 218, 209, 0.5);
}

.pricing-item:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.pricing-title {
  font-size: 16px;
  line-height: 24px;
  color: #2A2622;
  margin-bottom: 4px;
}

.pricing-description {
  font-size: 14px;
  line-height: 20px;
  color: #7E7367;
}

.pricing-price {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #437056;
}

.pricing-note {
  background: #E0EBE5;
  border-radius: 12px;
  padding: 8px 16px 12px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  color: #437056;
}






/* Contact Form */
.contact-form {
    flex: 1;
    max-width: 544px;
    background: #FAF8F5;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0px 2px 8px rgba(42, 38, 34, 0.04);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #2A2622;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: #F0ECE6;
    border: 1px solid rgba(224, 218, 209, 0.5);
    border-radius: 10px;
    padding: 15px 13px;
    font-size: 14px;
    line-height: 17px;
    color: #2A2622;
    font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #7E7367;
}

.form-input {
    height: 48px;
}

.form-textarea {
    height: 98px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: #437056;
    color: #FAF8F5;
    border: none;
    border-radius: 12px;
    padding: 14px 40px;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.45px;
    cursor: pointer;
    box-shadow: 0px 4px 20px rgba(42, 38, 34, 0.06);
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.form-submit:hover {
    background: #3a5f4a;
}

.form-note {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #7E7367;
}














/* Footer */
.footer {
    background: #2D533D;
    padding: 48px 512px;
}

.footer-container {
    max-width: 896px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-link {
    color: rgba(250, 248, 245, 0.7);
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FAF8F5;
}

.footer-info {
    text-align: center;
}

.footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 28px;
    color: #FAF8F5;
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 14px;
    line-height: 20px;
    color: rgba(250, 248, 245, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header {
        padding: 20px 60px;
    }

    .hero {
        padding: 200px 60px;
    }

    .hero-container {
        padding: 0 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .about,
    .offer,
    .target,
    .cta-section {
        padding: 80px 60px;
    }

    .services,
    .methods,
    .results {
        padding: 80px 60px;
    }

    .contact {
        padding: 80px 60px;
    }

    .footer {
        padding: 48px 60px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .header-container {
        padding: 0;
    }

    .nav {
        display: none;
    }

    .hero {
        padding: 150px 20px;
    }

    .hero-container {
        padding: 0;
    }

    .hero-title {
        font-size: 40px;
        line-height: 44px;
    }

    .section-title {
        font-size: 32px;
        line-height: 36px;
    }

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

    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        flex-direction: column;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .results-tags {
        flex-direction: column;
        align-items: center;
    }

    .about,
    .offer,
    .target,
    .cta-section,
    .services,
    .methods,
    .results,
    .contact,
    .footer {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        line-height: 36px;
    }

    .section-title {
        font-size: 28px;
        line-height: 32px;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
        line-height: 36px;
    }

    .cta-description {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column-reverse;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 42px;
    }

    .hero-image img {
        height: auto;
    }

    .hero-text,
    .hero-image {
        max-width: 100%;
        text-align: center;
    }
}


