/* ============================================
   PSİKOLOG WEB SİTESİ - MAIN STYLES
   Exact match to psikologmertakyol.com
   ============================================ */

/* Import Design System */
@import url('design-system.css');

/* ============================================
   NAVIGATION - Minimal, Centered
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f0f0f0;
    padding: 0.5rem 0 0.25rem;
    /* Daha da daraltıldı */
}

.navbar-container {
    display: flex;
    flex-direction: column;
    /* Changed to column to put logo on top */
    align-items: center;
    /* Centered */
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem var(--space-lg) 0.5rem;
    /* adjusted padding */
    gap: 1rem;
    /* spacing between logo and menu */
}

/* Logo */
.navbar-logo {
    display: flex;
    flex-direction: column;
    /* Stack name and title */
    align-items: center;
    text-decoration: none;
    gap: 0.25rem;
}

.navbar-logo .logo-name {
    font-size: 1.5rem;
    /* Made a bit bigger to look like a main header */
    font-weight: 400;
    /* Adjusted weight for stylistic match */
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-logo .logo-title {
    font-size: 0.85rem;
    font-weight: 300;
    color: #666;
    letter-spacing: 1px;
}

.navbar-logo:hover .logo-name,
.navbar-logo:hover .logo-title {
    color: #333;
}

/* Navigation Menu - Horizontal, Spacious */
.navbar-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0 auto;
    /* changed from 0 to center it */
    padding: 0;
}

.navbar-link {
    font-size: 0.6875rem;
    font-weight: 400;
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.2s ease;
    padding: 0;
}

.navbar-link:hover,
.navbar-link.active {
    color: #000;
    text-decoration: none;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 2rem 0;
    }

    .navbar-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 2rem;
    }

    .navbar-menu {
        position: fixed;
        top: 120px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #fff;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        align-items: center;
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* ============================================
   HERO SECTION - Two Column Layout
   ============================================ */
.hero-section {
    padding: 5rem 0 6rem;
}

.hero-container-wide {
    max-width: 1400px;
    /* Standartlaştırıldı */
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    /* Fotoğraf daha dar, yazı alanı daha geniş (dengeli) */
    gap: 4rem;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 350px;
    /* Fotoğrafın eni küçültüldü */
    height: 400px;
    margin: 0 auto;
    /* Kutuyu kendi içinde ortalar */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-image-wrapper .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content-wrapper {
    padding-top: 2rem;
}

.hero-name {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #303030;
    /* applied from reference */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: var(--font-primary);
    color: #303030;
    /* applied from reference */
    margin-bottom: 2rem;
}

.hero-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color, #708090);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-link:hover {
    background-color: var(--primary-color-dark, #5c6a77);
    color: #fff;
    transform: translateY(-2px);
}

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

    .hero-image-wrapper {
        width: 100%;
        max-width: 280px;
        height: 320px;
        margin: 0 auto;
    }

    .hero-content-wrapper {
        padding-top: 0;
        text-align: center;
    }
}

/* ============================================
   HERO SECTION - Centered, Minimal
   ============================================ */
.hero {
    padding: 4rem 0 6rem;
    text-align: center;
}

.hero-container {
    max-width: 1400px;
    /* Genişletildi */
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-image {
    width: 280px;
    height: 280px;
    border-radius: 0;
    margin: 0 auto 2.5rem;
    object-fit: cover;
    display: block;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    font-weight: 400;
    color: #000;
    background-color: transparent;
    border: 1px solid #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

/* ============================================
   CONTENT SECTIONS - Narrow, Centered
   ============================================ */
.section {
    padding: 4rem 0;
}

.section-container {
    max-width: 1400px;
    /* Genişletildi */
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-content {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666;
}

.section-content p {
    margin-bottom: 1.5rem;
}

.section-content h2,
.section-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* ============================================
   BLOG/WORK AREAS - Minimal Grid Cards
   ============================================ */
.grid {
    max-width: 1400px;
    /* Standartlaştırıldı */
    margin: 0 auto;
}

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

.work-area-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.work-area-card:hover {
    transform: translateY(-2px);
}

.work-area-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.work-area-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.work-area-card:hover .work-area-image-container img {
    opacity: 0.85;
}

.work-area-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    font-size: 2rem;
}

.work-area-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-area-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.work-area-description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #666;
    flex: 1;
}

.work-area-btn {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.8125rem;
    color: #000;
    text-decoration: none;
}

.work-area-btn:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   BUTTONS - Outline Style
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 0.75rem;
    font-weight: 400;
    color: #000;
    background-color: transparent;
    border: 1px solid #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.btn-primary {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

.btn-secondary {
    background-color: transparent;
    color: #000;
    border-color: #000;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

/* ============================================
   FORMS - Minimal Style
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    color: #000;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #000;
}

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

/* ============================================
   PAGE ELEMENTS - Titles, Content
   ============================================ */
.page-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
}

.content-container h2 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   CONTACT INFO - Simple List
   ============================================ */
.contact-info-list {
    margin: 2.5rem 0;
}

.contact-info-item {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

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

.contact-info-item a:hover {
    color: #666;
}

/* ============================================
   APPOINTMENT - Minimal Method Cards
   ============================================ */
.appointment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.appointment-method-card {
    padding: 2rem;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: border-color 0.3s ease;
    text-align: center;
}

.appointment-method-card:hover {
    border-color: #000;
}

.method-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.method-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.method-description {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.back-to-steps {
    cursor: pointer;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-to-steps:hover {
    color: #000;
}

.appointment-step.hidden {
    display: none;
}

.appointment-method-box h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.appointment-method-box p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .appointment-methods-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTENT SECTION - Text & List
   ============================================ */
.content-section {
    padding: 5rem 0;
}

.content-container {
    max-width: 1400px;
    /* Standartlaştırıldı */
    margin: 0 auto;
    padding: 0 2rem;
}

.content-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.75rem;
    text-align: justify;
}

.content-container strong {
    color: #000;
    font-weight: 600;
}

.content-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.content-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.content-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

/* ============================================
   CONTACT SECTION - Minimal Layout
   ============================================ */
.contact-section {
    padding: 4rem 0;
    background-color: #fafafa;
}

.contact-container {
    max-width: 1000px;
    /* Genişletildi */
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-email {
    color: #000;
    text-decoration: underline;
}

.contact-email:hover {
    color: #666;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #fff;
    background-color: #25D366;
    border: none;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-bottom: 2rem;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    text-decoration: none;
}

.contact-address {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.75rem;
}

.contact-phone {
    font-size: 0.9375rem;
    color: #666;
}

/* ============================================
   FOOTER - Minimal, Centered
   ============================================ */
.footer {
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    margin-top: 4rem;
}

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

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-whatsapp:hover {
    color: #000;
}

.footer-whatsapp svg {
    color: #25D366;
    /* Standart WhatsApp yeşili ama minimal boyutta */
}

.footer-content {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.8;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: #666;
    text-decoration: none;
}

.footer-content a:hover {
    color: #000;
    text-decoration: underline;
}

.footer-copyright {
    margin-top: 2rem;
    font-size: 0.6875rem;
    color: #ccc;
}

/* ============================================
   ABOUT SECTION - Image + Text
   ============================================ */
.about-section {
    padding: 4rem 0;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-image {
    flex-shrink: 0;
    width: 320px;
}

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

.about-content {
    flex: 1;
}

.about-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666;
}

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

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ============================================
   APPOINTMENT/CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 4rem 0;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-info p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

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

.contact-info a:hover {
    color: #666;
}

/* ============================================
   PROCESS STEPS - Minimal List
   ============================================ */
.process-steps {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.75rem;
}

.process-step-description {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #666;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Loading State */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f0f0f0;
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Privacy Banner */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 1.5rem;
    z-index: var(--z-modal);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.privacy-banner-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.privacy-banner-text {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
}

.privacy-banner-button {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .privacy-banner-content {
        flex-direction: column;
        text-align: center;
    }
}