/* Neurovia Insight Institute - Premium Psychology Platform */

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

:root {
    --primary-dark-green: #0d3d2c;
    --emerald: #1b8659;
    --light-warm-white: #f8f6f1;
    --graphite-gray: #3a3a3a;
    --gold-accent: #c9a961;
    --light-gray: #e8e6e0;
    --white: #ffffff;
    --text-dark: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    color: var(--text-dark);
    background-color: var(--light-warm-white);
    line-height: 1.6;
}

/* HEADER & NAV */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 61, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

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

.logo {
    color: var(--gold-accent);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--light-warm-white);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

/* IMMERSIVE HERO SECTION */
.section-hero {
    margin-top: 70px;
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark-green) 0%, #1a5a44 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/photo1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    animation: parallax 0.5s ease-out;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.hero-title {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-gray);
    font-style: italic;
    animation: slideUp 1s ease-out;
}

/* INTELLECTUAL MANIFESTO */
.section-manifesto {
    padding: 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--light-warm-white);
}

.manifesto-title {
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-dark-green);
}

.manifesto-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--graphite-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

.manifesto-accent {
    color: var(--gold-accent);
    font-weight: bold;
}

/* MIR PSIHOLOGII (World of Psychology) */
.section-world {
    padding: 100px 40px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.world-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.world-content h2 {
    font-size: 40px;
    color: var(--primary-dark-green);
    margin-bottom: 25px;
}

.world-content p {
    font-size: 16px;
    color: var(--graphite-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* COGNITIVE PATHWAYS */
.section-pathways {
    padding: 100px 40px;
    background: var(--light-warm-white);
    max-width: 1400px;
    margin: 0 auto;
}

.pathways-title {
    font-size: 40px;
    text-align: center;
    color: var(--primary-dark-green);
    margin-bottom: 60px;
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.pathway-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--emerald);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pathway-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pathway-card h3 {
    font-size: 24px;
    color: var(--emerald);
    margin-bottom: 15px;
}

.pathway-card p {
    font-size: 16px;
    color: var(--graphite-gray);
    line-height: 1.6;
}

/* LEARNING EXPERIENCE */
.section-learning {
    padding: 100px 40px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.learning-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.learning-content h2 {
    font-size: 40px;
    color: var(--primary-dark-green);
    margin-bottom: 25px;
}

.learning-content p {
    font-size: 16px;
    color: var(--graphite-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.learning-list {
    list-style: none;
    margin-top: 20px;
}

.learning-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: var(--graphite-gray);
}

.learning-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
}

/* JOURNEY IN THINKING */
.section-journey {
    padding: 100px 40px;
    background: var(--light-warm-white);
    max-width: 1200px;
    margin: 0 auto;
}

.journey-title {
    font-size: 40px;
    text-align: center;
    color: var(--primary-dark-green);
    margin-bottom: 60px;
}

.journey-stages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stage {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stage-number {
    font-size: 48px;
    color: var(--gold-accent);
    margin-bottom: 15px;
    font-weight: bold;
}

.stage h3 {
    font-size: 18px;
    color: var(--primary-dark-green);
    margin-bottom: 10px;
}

.stage p {
    font-size: 14px;
    color: var(--graphite-gray);
    line-height: 1.6;
}

/* PRACTICE AND KNOWLEDGE */
.section-practice {
    padding: 100px 40px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.practice-content h2 {
    font-size: 40px;
    color: var(--primary-dark-green);
    margin-bottom: 25px;
}

.practice-content p {
    font-size: 16px;
    color: var(--graphite-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.practice-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* RESEARCH THEMES */
.section-themes {
    padding: 100px 40px;
    background: var(--light-warm-white);
    max-width: 1400px;
    margin: 0 auto;
}

.themes-title {
    font-size: 40px;
    text-align: center;
    color: var(--primary-dark-green);
    margin-bottom: 60px;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.theme-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--gold-accent);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.theme-card h3 {
    font-size: 20px;
    color: var(--emerald);
    margin-bottom: 10px;
}

.themes-image {
    margin-top: 50px;
}

.themes-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* INSIGHT METHOD */
.section-insight-method {
    padding: 100px 40px;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.insight-title {
    font-size: 40px;
    text-align: center;
    color: var(--primary-dark-green);
    margin-bottom: 50px;
}

.insight-description {
    background: linear-gradient(135deg, rgba(13, 61, 44, 0.05), rgba(27, 134, 89, 0.05));
    padding: 40px;
    border-left: 4px solid var(--gold-accent);
    border-radius: 8px;
    font-size: 16px;
    color: var(--graphite-gray);
    line-height: 1.8;
}

.insight-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.principle {
    text-align: center;
}

.principle-title {
    font-size: 18px;
    color: var(--emerald);
    margin-bottom: 10px;
    font-weight: bold;
}

.principle-text {
    font-size: 14px;
    color: var(--graphite-gray);
    line-height: 1.6;
}

/* LEARNING ATMOSPHERE */
.section-atmosphere {
    padding: 100px 40px;
    background: var(--light-warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.atmosphere-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.atmosphere-content h2 {
    font-size: 40px;
    color: var(--primary-dark-green);
    margin-bottom: 25px;
}

.atmosphere-content p {
    font-size: 16px;
    color: var(--graphite-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* TESTIMONIALS */
.section-testimonials {
    padding: 100px 40px;
    background: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 40px;
    text-align: center;
    color: var(--primary-dark-green);
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.testimonial {
    background: var(--light-warm-white);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--emerald);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 16px;
    color: var(--graphite-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--primary-dark-green);
    font-weight: bold;
}

.testimonials-image {
    margin-top: 50px;
}

.testimonials-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* CONTACT SECTION */
.section-contact {
    padding: 100px 40px;
    background: var(--light-warm-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 32px;
    color: var(--primary-dark-green);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark-green);
    font-weight: bold;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(27, 134, 89, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--primary-dark-green), var(--emerald));
    color: var(--white);
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(27, 134, 89, 0.3);
}

/* FOOTER */
footer {
    background: var(--primary-dark-green);
    color: var(--light-warm-white);
    padding: 60px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--gold-accent);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light-warm-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: rgba(248, 246, 241, 0.7);
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes parallax {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.4;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-world,
    .section-learning,
    .section-practice,
    .section-atmosphere,
    .section-contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pathways-grid,
    .themes-grid {
        grid-template-columns: 1fr;
    }

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

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

    .insight-principles {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .section-manifesto,
    .section-world,
    .section-learning,
    .section-practice,
    .section-atmosphere,
    .section-contact {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .pathways-title,
    .themes-title,
    .journey-title,
    .insight-title,
    .testimonials-title,
    .manifesto-title {
        font-size: 28px;
    }

    nav {
        gap: 8px;
    }

    nav a {
        font-size: 12px;
    }
}
