body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

a{
    text-decoration: none;
    color: rgb(0, 58, 134);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 3rem;
}

.logo {
    height: 1.8rem;
}

.logo img {
    height: 100%;
    width: auto;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-details {
    display: flex;
    gap: 1.5rem;
}
.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-details p:hover {
color: #0063e4;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #333;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.social-icons a.facebook:hover {
    color: #4267B2; /* Facebook blue */
}

.social-icons a.tiktok:hover {
    color: #a200ff; /* TikTok red */
}

.social-icons a.youtube:hover {
    color: #FE2C55; /* TikTok red */
}

.header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50vh;
    background-image: url('img/llbanner.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.heading-container {
    position: relative; /* Hogy a cím az overlay felett legyen */
    width: 100%;
    padding-left: 50px; /* Bal oldali térköz */
    box-sizing: border-box;
}

.heading {
    color: white;
    font-size: 3rem;
    margin: 0;
    width: fit-content;
    font-weight: lighter;
    background-color: #003376;
    padding: 1rem;
}








.kiemelt{
    background-color: #F2F2F2;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.fkitem{
    width: 20rem;
    background-color: white;
    padding: 1.1rem;
    border-radius: 0.8rem;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.315);
}
.fkitem:hover{
    transform: scale(1.05); /* 10%-kal nagyobb méret */
}

.kkepkont{
    width:100%; 
    display: block;
    position: relative; 
    cursor: pointer;
}

.kkepkont img{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.keloter{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(37,41,71);
    background: linear-gradient(0deg, rgba(37,41,71,1) 15%, rgba(22,25,43,0.4767156862745098) 40%, rgba(6,7,12,0) 69%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items:end;
    border-radius: 10px;
}
.kite{
    font-weight: bold;
    color: white;
    margin: 0.8rem 1rem;
    font-size: 1.5rem;
    font-weight: 350;
}
.fkkij h3{
    border-radius: 100rem;
    width: fit-content;
    padding: 0.4rem 0.9rem;
    color: white;
    margin: 0.7rem auto;
    width:40%;
    text-align: center;
    display: inline-block;
}
.bgb{
    background-color: #d3b254;
    font-weight:500;
}
.arc{
    background-color: #5f5f5f;
    font-weight:500;
}
.hazleirasmini{
    color: black;
    line-height: 1.1rem;
    border-left: 3px solid rgb(26, 26, 26);
    padding-left: 0.6rem;
    margin: 0.2rem 0 0.2rem 0.2rem;
    font-size: 0.9rem;
}

.mggomb{
    text-align: center;
    background-color: #d3b254;
    background: rgb(112,99,53);
    background: linear-gradient(0deg, rgba(112,99,53,1) 0%, rgba(209,184,98,1) 100%);
    padding: 0.7rem;
    color: white;
    border-radius: 0.8rem;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 1rem 0 0 0;
}
.megngomb{background-color: #F2F2F2;padding:0.5rem 2rem}
.megngomb h4{margin: 0; text-align: center;}


















@media (max-width: 900px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .social-icons {
        justify-content: center;
        width: 100%;
    }
}








.propbody {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.left-column {
    grid-column: 1;
}

.right-column {
    grid-column: 2;
    position: sticky;
    top: 20px;
    height: fit-content;
}

header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.location {
    color: #7f8c8d;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.price {
    font-size: 1.8em;
    color: #e74c3c;
    font-weight: bold;
    margin: 20px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    background: #eeeeee;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.detail-label {
    font-size: 0.9em;
    color: #7f8c8d;
}

.detail-value {
    font-size: 1.2em;
    font-weight: bold;
}

.description {
    margin: 30px 0;
    padding: 20px;
    background: #eeeeee;
    border-radius: 5px;
}

.video-container {
    margin: 30px 0;
    background: #eeeeee;
    padding: 20px;
    border-radius: 5px;
}

h2{
    margin-top: 0;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    border-radius: 5px;
}

.contact-card {
    background: #2c3e50;
    color: white;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 80%;
}

.contact-card h3 {
    margin-top: 0;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
}

.agent-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.agent-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid white;
}

.agent-name {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.agent-company {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.agent-contact {
    margin: 15px 0;
}

.btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    width: 50%;
    text-align: center;
    transition: background 0.3s;
}

.btn:hover {
    background: #c0392b;
}

.property-image {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .propbody {
        grid-template-columns: 1fr;
    }
    
    .right-column {
        position: static;
        grid-column: 1;
    }
}



.cella {
    display: table-cell;
    vertical-align: middle;
    padding: 2rem;
}
.ckep a img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    border-radius: 1rem;
}

.ckep a img:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.lg-backdrop{
    background-color: #0d0a0acc;
    }

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
    padding: 2rem;
}

iframe{
    border-radius: 1rem;
}




@media (max-width: 768px) {
    /* Propbody és oszlopok átalakítása */
    .propbody {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }
    
    .right-column {
        position: static;
        grid-column: 1;
        width: 100%;
    }
    
    .contact-card {
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Fejléc és alapadatok */
    header {
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    .location {
        font-size: 1em;
    }
    
    /* Képek és galéria */
    .ckep a img {
        height: 30vh;
    }
    
    .cella {
        padding: 1rem;
    }
    
    /* Részletek rács */
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Ár stílusa */
    .price {
        font-size: 1.5em;
        text-align: center;
        grid-column: 1 / -1;
    }
    
    /* Leírás és videó konténer */
    .description, 
    .video-container {
        padding: 15px;
        margin: 20px 0;
    }
    
    /* Videó iframe */
    iframe {
        width: 100%;
        height: auto;
        min-height: 200px;
    }
    
    /* Gombok */
    .btn {
        width: 100%;
        padding: 10px;
        font-size: 0.9em;
    }
    
    /* Ügynök kártya */
    .agent-photo {
        width: 100px;
        height: 100px;
    }
    
    .agent-contact {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    /* Extra kis képernyőkre */
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .ckep a img {
        height: 25vh;
    }
    
    .contact-details p {
        font-size: 0.8em;
    }
    
    .social-icons a {
        font-size: 1em;
    }
    
    h1 {
        font-size: 1.3em;
    }
    
    .location {
        font-size: 0.9em;
    }
}