/*
Theme Name: Sydney Child
Theme URI: 
Author: LobbieNet Kft.
Author URI: https://lobbie.net
Template: sydney
Description: Sydney Child Theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sydneychild
Tags: two-columns, right-sidebar, block-styles, custom-colors, custom-background, custom-header, custom-menu, featured-images, sticky-post, theme-options, threaded-comments, translation-ready
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary-color: #0f172a;
    --accent-color: #c2a278;
    --text-color: #334155;
    --bg-light: #f8fafc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.7; color: var(--text-color); scroll-behavior: smooth; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--primary-color); }

/* Navigáció */
nav { 
    background: #fff; height: 80px; display: flex; justify-content: space-between; 
    align-items: center; padding: 0 10%; position: fixed; width: 100%; top: 0; 
    z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); 
}
.logo { font-size: 1.3rem; font-weight: 700; color: var(--primary-color); text-transform: uppercase; letter-spacing: 2px; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 30px; }
nav ul li a { text-decoration: none; color: var(--primary-color); font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
nav ul li a:hover { color: var(--accent-color); }

/* Szekciók alapjai */
section { padding: 100px 10%; min-height: 80vh; overflow: hidden; }
.container { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 60px; font-size: 2.5rem; position: relative; padding-bottom: 15px; }
.section-title::after { content: ''; width: 50px; height: 3px; background: var(--accent-color); position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }

/* Hero */
.hero { background: var(--bg-light); display: flex; align-items: center; padding-top: 150px; text-align: left; }
.hero-content { max-width: 650px; }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 25px; }
.btn { display: inline-block; padding: 15px 35px; background: var(--primary-color); color: #fff; text-decoration: none; font-weight: 600; margin-top: 20px; transition: 0.3s; border: none; cursor: pointer; }
.btn:hover { background: var(--accent-color); transform: translateY(-3px); }

/* Gridek */
.about-grid, .exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.goals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.exp-item { background: #fff; padding: 30px; border-left: 4px solid var(--accent-color); margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.exp-date { font-weight: bold; color: var(--accent-color); font-size: 0.9rem; }

.goal-card { padding: 40px; border: 1px solid #eee; transition: 0.3s; background: #fff; }
.goal-card:hover { border-color: var(--accent-color); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* Kapcsolat form */
.contact { background: var(--primary-color); color: #fff; }
.contact h2 { color: #fff; }
.contact-form { max-width: 600px; margin: 0 auto; }
.contact-form input, .contact-form textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: #fff; }

/* --- MOBIL NÉZET (RESPONSIVE) --- */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .goals-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 0 5%; }
    nav ul { display: none; } /* Egyszerűség kedvéért mobilon elrejtjük, vagy listaként egymás alá tesszük */
    
    section { padding: 60px 5%; }
    .about-grid, .exp-grid { grid-template-columns: 1fr; text-align: center; }
    .section-title { font-size: 2rem; }
    
    .hero { padding-top: 120px; text-align: center; }
    .hero-content { margin: 0 auto; }
    
    .about-grid div:first-child { order: 2; }
    .about-grid div:last-child { order: 1; }
}

/* ... (A korábbi stílusok maradnak, az alábbi kiegészítésekkel) ... */

.vertical-list {
    max-width: 800px;
    margin: 0 auto;
}

.exp-item {
    background: #fff;
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 30px; /* Megemelt távolság a listaelemek között */
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: 0.3s ease;
}

.exp-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* Rugalmas célok rács */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Automatikusan tördeli, ha sok cél van */
    gap: 25px;
}

/* Mobil finomítások */
@media (max-width: 768px) {
    .exp-item:hover { transform: none; }
    .goals-grid { grid-template-columns: 1fr; }
}

/* Repeater gombok stílusa */
.wpcf7-repeater-add, .wpcf7-repeater-remove {
    display: inline-block;
    padding: 8px 15px;
    margin: 10px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    transition: 0.3s;
}

.wpcf7-repeater-add:hover {
    background: var(--accent-color);
    color: #fff;
}

.wpcf7-repeater-remove {
    border-color: #ef4444;
    color: #ef4444;
    margin-left: 5px;
}

.wpcf7-repeater-remove:hover {
    background: #ef4444;
    color: #fff;
}

.repeater-box label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #fff; /* Sötét háttérnél fehér */
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* A szöveg kicsit szélesebb, mint a kép */
    gap: 60px;
    align-items: center;
}

.about-content {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px; /* Blocksy stílusra jellemző enyhe kerekítés */
    display: block;
}

.shadow-effect {
    box-shadow: 20px 20px 0px 0px var(--bg-light); /* Egy elegáns háttér-árnyék effekt */
    border: 1px solid #eee;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    border: 2px dashed #cbd5e1;
}

/* Mobilnézet javítása */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .section-title {
        text-align: center !important;
    }

    .shadow-effect {
        box-shadow: none; /* Mobilon ne lógjon ki az árnyék */
    }
}
