/* Reset és alapok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #e5eef5 0%, #d0e3ed 100%);
    min-height: 100vh;
    color: #27455a;
}

/* Fő konténer */
.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header (repurposed for mobile or hidden) */
.main-header {
    display: none;
    /* Hidden by default, info moved to sidebar */
}

@media (max-width: 768px) {
    .main-header {
        display: block;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }
}

/* Content wrapper - sidebar és main content */
.content-wrapper {
    display: flex;
    width: 100%;
    gap: 20px;
}

/* Sidebar - bal oldal */
.sidebar {
    width: 220px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #b3d1dd 0%, #9dc3d1 100%);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

/* Sidebar Header Info */
.sidebar-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-header h1 {
    font-size: 1.8em;
    color: #1a5a7a;
    margin-bottom: 5px;
}

.sidebar-header h2 {
    font-size: 1.1em;
    color: #2d6a8a;
    font-weight: 400;
    margin-bottom: 3px;
    line-height: 1.2;
}

.sidebar-header .contact-info {
    margin-top: 10px;
    font-size: 0.9em;
}

.sidebar-header .phone {
    font-weight: bold;
    color: #c41e3a;
    display: block;
    font-size: 1.4em;
}

.phone-number {
    color: #c41e3a;
    font-size: 1.4em;
    font-weight: bold;
    text-decoration: none;
}

.sidebar-header .email {
    color: #0066cc;
    display: block;
}

/* Sidebar Photo Placeholder */
.sidebar-photo {
    width: 140px;
    height: 160px;
    background: linear-gradient(135deg, #e3f0f5 0%, #c3dce6 100%);
    border: 4px solid #4a8a9f;
    border-radius: 8px;
    margin: 0 auto 20px auto;
}

/* Navigációs menü */
.sidebar nav ul {
    list-style: none;
}

.sidebar nav ul#menu>li {
    margin-bottom: 8px;
}

.sidebar nav ul#menu>li>a {
    display: block;
    padding: 12px 15px;
    background: linear-gradient(180deg, #e6f0f5 0%, #c5dce8 100%);
    border: 2px solid #5a8a9a;
    border-radius: 8px;
    color: #1a4a5a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: all 0.2s ease;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar nav ul#menu>li>a:hover {
    background: linear-gradient(180deg, #d2e6ec 0%, #b4d0dc 100%);
    border-color: #3a7a8a;
    transform: translateX(3px);
}

/* Almenü */
.nav-submenu {
    list-style: none;
    margin-top: 5px;
    margin-left: 10px;
    display: none;
}

.sidebar nav ul#menu>li:hover .nav-submenu,
.sidebar nav ul#menu>li:has(.active) .nav-submenu,
.sidebar nav ul#menu>li:has(.active-submenu) .nav-submenu {
    display: block;
}

.nav-submenu li {
    margin-bottom: 3px;
}

.nav-submenu-item {
    display: block;
    padding: 8px 12px;
    background: linear-gradient(180deg, #eff6f8 0%, #daeaee 100%);
    border: 1px solid #7ab0b8;
    border-radius: 5px;
    color: #2a5a6a;
    text-decoration: none;
    font-size: 0.85em;
    transition: all 0.2s ease;
}

.nav-submenu-item:hover {
    background: linear-gradient(180deg, #deecf0 0%, #c9e0e5 100%);
}

/* Fő tartalom - jobb oldal */
.main-content {
    flex: 1;
    background: linear-gradient(180deg, #b3d1dd 0%, #9dc3d1 100%);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.main-content section {
    background: linear-gradient(180deg, #e6f0f5 0%, #d2e6ec 100%);
    border: 2px solid #6a9aaa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.main-content section:last-child {
    margin-bottom: 0;
}

.main-content h2 {
    color: #b21e35;
    font-size: 1.7em;
    margin-bottom: 15px;
}

.main-content h3 {
    color: #b21e35;
    font-size: 1.4em;
    margin-bottom: 12px;
    padding-bottom: 4px;
}

.main-content h4 {
    color: #b21e35;
    font-size: 1.15em;
    margin-bottom: 10px;
}

.main-content p>strong:only-child,
.main-content p>b:only-child,
.main-content li>strong:first-child,
.main-content li>b:first-child {
    color: #b21e35;
}

hr {
    display: none;
}

.main-content p {
    color: #2a4a5a;
    line-height: 1.7;
    margin-bottom: 10px;
}

.main-content ul {
    margin-left: 25px;
    margin-top: 10px;
}

.main-content ul li {
    margin-bottom: 8px;
    color: #2a4a5a;
    line-height: 1.5;
}

/* Szolgáltatás képek */
.service-image {
    text-align: center;
    margin: 15px 0;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 3px solid #5a8a9a;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.service-image.multi-image {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.service-image.multi-image img {
    max-width: calc(50% - 10px);
}

/* Side-by-side layout for text and images */
.side-content-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

.side-content-layout .main-text-part {
    flex: 1;
}

.image-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: auto;
    min-width: 140px;
}

.image-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.image-stack img {
    width: 140px;
    height: auto;
    border-radius: 8px;
    border: 3px solid #5a8a9a;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.image-stack.large img {
    width: 280px;
}

@media (max-width: 768px) {
    .side-content-layout {
        flex-direction: column;
    }

    .image-stack {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        margin: 20px 0;
    }

    .image-stack img {
        max-width: calc(50% - 10px);
    }
}

/* Piros kiemelt szöveg */
.mred {
    color: #c41e3a;
    font-weight: bold;
}

/* Footer */
.main-footer {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    color: #3a6a7a;
    font-size: 0.9em;
}

/* Reszponzív design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        order: 2;
    }

    .main-content {
        order: 1;
    }

    .main-header h1 {
        font-size: 2em;
    }

    .main-header h2 {
        font-size: 1.2em;
    }
}