/*
Theme Name: Sorin Ropotan Psychotherapy
Theme URI: https://www.sorinropotan.ro
Author: Custom Theme
Author URI: https://www.sorinropotan.ro
Description: A custom WordPress theme for psychotherapy practice, featuring a clean, professional design with blue color scheme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sorinropotan
Tags: psychotherapy, health, professional, blue, clean
*/

/* ==========================================================================
   Global Styles
   ========================================================================== */

:root {
    --primary-blue: #116DFF;
    --dark-blue: #003862;
    --white: #FFFFFF;
    --dark-text: #191919;
    --black: #000000;
    --light-blue-bg: #E8F4F8;
}

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

body {
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-text);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
    background-color: var(--white);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-menu li a {
    color: var(--dark-text);
    font-weight: 500;
    padding: 10px 15px;
    display: block;
}

.main-menu li a:hover {
    color: var(--primary-blue);
}

.social-icon {
    margin-left: 20px;
}

.social-icon a {
    display: inline-block;
    width: 30px;
    height: 30px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 80px;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.about-image {
    background-size: cover;
    background-position: center;
}

.about-content {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2,
.about-content h3 {
    color: var(--white);
}

/* ==========================================================================
   Psychotherapy Section
   ========================================================================== */

.psychotherapy-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.psychotherapy-content {
    background-color: var(--light-blue-bg);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.psychotherapy-image {
    background-size: cover;
    background-position: center;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    padding: 80px 20px;
    text-align: center;
}

.services-section h2 {
    margin-bottom: 40px;
}

.dandelion-banner {
    width: 100%;
    max-width: 1200px;
    height: 250px;
    background-size: cover;
    background-position: center;
    margin: 40px auto;
    position: relative;
}

.dandelion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.service-content {
    background-color: var(--light-blue-bg);
    padding: 60px;
    max-width: 1000px;
    margin: 40px auto;
    text-align: left;
    border-radius: 10px;
}

.service-content h3 {
    text-align: center;
    margin-bottom: 30px;
}

.service-content ol,
.service-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-content li {
    margin-bottom: 15px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 80px 20px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 20px;
}

.contact-info a {
    color: var(--white);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1rem;
}

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

.contact-form .btn {
    background-color: var(--white);
    color: var(--dark-blue);
    width: 100%;
}

.contact-form .btn:hover {
    background-color: var(--light-blue-bg);
}

.map-container {
    margin-top: 40px;
    height: 400px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--white);
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.site-footer p {
    font-size: 0.9rem;
    color: var(--dark-text);
    margin-bottom: 10px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .site-header {
        height: 70px;
    }

    .menu-toggle {
        display: block !important;
        background: #003862;
        border: none;
        padding: 10px;
        width: 45px;
        height: 40px;
        cursor: pointer;
        position: absolute;
        right: 15px;
        top: 15px;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: white;
        margin: 5px auto;
        transition: 0.3s;
    }

    .site-navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 1000;
        padding-top: 80px;
        flex-direction: column;
        text-align: center;
    }

    .site-navigation.toggled {
        display: flex !important;
    }

    .main-menu {
        flex-direction: column;
        gap: 20px;
    }

    .main-menu a {
        font-size: 20px !important;
        color: #003862 !important;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-section,
    .psychotherapy-section,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .psychotherapy-content,
    .service-content {
        padding: 30px 15px;
    }
    
    .service-content p, .service-content li {
        font-size: 18px !important;
        line-height: 1.6 !important;
    }
    
    h2 {
        font-size: 1.75rem;
    }

    .dandelion-banner {
        height: 150px;
        margin: 20px auto;
    }
}
