/* Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EB Garamond', 'Times New Roman', Georgia, serif;
    line-height: 1.6;
    color: #4a3a2a;
    background-color: #faf8f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fejléc */
.header {
    background: #f5f2ed;
    box-shadow: 0 2px 20px rgba(139, 110, 84, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(139, 110, 84, 0.25);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    transition: transform 0.3s ease;
}

.logo-icon .placeholder-logo {
    font-size: 36px;
    transition: font-size 0.3s ease;
}

.header.scrolled .logo-icon .placeholder-logo {
    font-size: 28px;
}

.logo-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.header.scrolled .logo-icon img {
    width: 96px;
    height: 96px;
}

.logo-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #8b6e54;
    margin-bottom: 2px;
    transition: font-size 0.3s ease;
    line-height: 1.1;
}

.header.scrolled .logo-text h1 {
    font-size: 39px;
}

.logo-text .subtitle {
    font-size: 24px;
    color: #a0896c;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1;
}

.header.scrolled .logo-text .subtitle {
    font-size: 21px;
    opacity: 0.9;
}

.header.scrolled .logo .subtitle {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #6b5a47;
    font-weight: 500;
    font-size: 24px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #8b6e54;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8b6e54;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #8b6e54 0%, #c4a373 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 110, 84, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 110, 84, 0.3);
}

/* Főoldal hero szekció */
.hero {
    background: linear-gradient(135deg, #f7f4ef 0%, #ede6db 100%);
    padding: 200px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #4a3a2a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #8b6e54;
    background: linear-gradient(135deg, #8b6e54 0%, #c4a373 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 22px;
    color: #6b5a47;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #8b6e54 0%, #c4a373 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 110, 84, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 110, 84, 0.3);
}

.btn-secondary {
    background: #ede3d3;
    color: #8b6e54;
    border: 2px solid #ede3d3;
}

.btn-secondary:hover {
    background: #d9c7b0;
    border-color: #d9c7b0;
}

/* Szakaszok */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #4a3a2a;
    text-align: center;
    margin-bottom: 60px;
}

/* Szolgáltatások */
.services {
    background: #f7f4ef;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.service-card {
    background: #faf8f5;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(139, 110, 84, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(139, 110, 84, 0.12);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4a3a2a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: #4a3a2a;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-card p {
    color: #6b5a47;
    margin-bottom: 15px;
    font-size: 16px;
    flex-grow: 1;
    line-height: 1.4;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #8b6e54;
    background: #ede3d3;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
}

/* Rólam szekció */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 0;
}

.about-image {
    margin-top: 72px;
}

.about-description {
    font-size: 18px;
    color: #6b5a47;
    margin-bottom: 30px;
    line-height: 1.8;
}

.qualifications h3 {
    font-size: 20px;
    font-weight: 600;
    color: #4a3a2a;
    margin-bottom: 15px;
}

.qualifications ul {
    list-style: none;
}

.qualifications li {
    font-size: 16px;
    color: #6b5a47;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.qualifications li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: #8b6e54;
    font-weight: bold;
    background: #ede3d3;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.about-image {
    text-align: center;
    margin-top: 72px;
}

.about-image img {
    width: 100%;
    max-width: 390px;
    border-radius: 16px;
    box-shadow: 0 8px 35px rgba(139, 110, 84, 0.12);
}

/* Kapcsolat szekció */
.contact {
    background: #f7f4ef;
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.contact-icon {
    font-size: 24px;
    background: #ede3d3;
    padding: 12px;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #4a3a2a;
    margin-bottom: 5px;
}

.contact-item p {
    color: #6b5a47;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #6b5a47;
    color: #c4a373;
    text-align: center;
    padding: 30px 0;
}

/* Reszponzív design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo-text h1 {
        font-size: 42px;
    }
    
    .header.scrolled .logo-text h1 {
        font-size: 36px;
    }
    
    .logo-text .subtitle {
        font-size: 21px;
    }
    
    .logo-icon .placeholder-logo {
        font-size: 32px;
    }
    
    .header.scrolled .logo-icon .placeholder-logo {
        font-size: 26px;
    }
    
    .logo-icon img {
        width: 96px;
        height: 96px;
    }
    
    .header.scrolled .logo-icon img {
        width: 78px;
        height: 78px;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        padding: 260px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
}


a{    text-decoration: none;
    color: inherit;
}