@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* --- ALAPVETŐ BEÁLLÍTÁSOK --- */
:root {
    --bg-color-primary: rgb(213,187,211);
    --primary-color: #d10074; /* A magenta árnyalat */
    --primary-hover: #a0005a;
    --text-color: #333333;
    --bg-color: #ffffff;
    --bg-light: #f4f4f4;
    --section-width: 1000px;
    --default-violet:rgba(171,95,148,0.81);
}

html {
    scroll-behavior: smooth; /* EZ FELEL A FOLYAMATOS GÖRGETÉSÉRT */
    /* scroll-padding-top: 80px; Hogy a fix menü ne takarja ki a szekciók tetejét */
}

*{
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-family: 'Barlow',sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);

    background: linear-gradient(to bottom, rgb(213,187,211) 80%, white 90%);
}

/* --- NAVIGÁCIÓ (STICKY HEADER) --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-btn:hover {
    background-color: var(--primary-hover);
}

/* --- ÁLTALÁNOS SZEKCIÓK --- */
.section {
    padding: 0px 0px;
    /*min-height: 80vh;*/
    width: 100%;
    max-width: var(--section-width);
    margin:0 auto;
    border-radius:10px;
    margin-bottom:50px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

#hero h2{
    height:160px;
    background: url("../img/fejlec_cim_hatter.jpg") no-repeat bottom center;
    padding-top:40px;
    font-size: 4rem;
    text-align: center;
    color:#FFF;
    margin:0px !important;

}

#hero .hero_also_resz{
    position: relative;
    height:700px;
    background: url("../img/fejleckep.jpg") no-repeat center center;
    display: flow-root;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;
}

.hero_also_resz .hero_szovegdoboz{
    position: absolute;
    top: 50px;
    right: 50px;
    background-color: var(--default-violet);
    backdrop-filter: blur(8px);
    border-radius:10px;
    width:600px;
    height:auto;
    color:white;
    padding:40px 30px;
}

.hero_also_resz .hero_szovegdoboz h1{
    font-size: 2.0rem;
}

.hero_also_resz .hero_szovegdoboz h1 span{
    font-size: 1.5rem;
}

.hero_also_resz .hero_szovegdoboz p.subtitle{
    margin-top:30px;
    font-size: 1.25rem;
    margin-bottom:30px;
}

.ajanlatot_kerek_container{
    position: absolute;
    top: 60px;
    right: 30px;
    display: inline-block;
}

.ajanlatot_kerek_container a.offerbtn{
    padding: 15px 35px;
    background-color: var(--default-violet);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 30px;
    border:2px solid white;
    transition: background-color 0.3s, transform 0.2s;
}

.ajanlatot_kerek_container a.offerbtn:hover{
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.hero_also_resz a.offerbtn{
    position: absolute;
    bottom: 120px;
    right: 50px;
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--default-violet);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 30px;
    border:2px solid white;
    transition: background-color 0.3s, transform 0.2s;
}

.hero_also_resz a.offerbtn:hover{
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}


.section.section_second{
    background-color: #FFF;
    display: flex;
    min-height: unset;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    gap: 80px;
}

.section_second_text{
    text-align: center;
    font-size: 1.5rem;

}

.section_second_img{
    text-align: center;
}

.section_second_img img{
    max-height:350px;
}

.section.section_third{
    display: flow-root;
    position: relative;
    background: url("../img/hatter_miben_mas_a_tricox_octa.jpg") no-repeat bottom center;
    background-size: cover;
    padding: 30px 80px;
    height:auto;
}

.section_third_container{
    background-color: #b65b98 !important;
    padding: 20px;
}

.section_third_container h1{
    color: white;
    max-width:80%;
}

.section_third_container p{
    font-weight:600;
    font-size:1.25rem;
}

.section.section_fourth{
    background: url("../img/hatter_miert_viszonteladonal_kaphato.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    min-height: unset;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    gap: 80px;
}

.section_fourth_img{
    text-align: center;
}

.section_fourth_img img{
    max-height:350px;
}

.section_fourth_container ul{
    list-style-type: circle;
}

.section_fourth_container ul li{
    font-size: 1.5rem;
    margin-bottom:10px;
}
.section_fourth_img2{
    text-align: center;
}
.section_fourth_img2 img{
    height:130px;
}

.section.section_fifth{
    background-color: #FFF;
    display: flex;
    min-height: unset;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    gap: 80px;
}

.section_fifth_text{
    text-align: left;
}

.section_fifth_text h1{
    font-size:2.25rem;
    color: rgb(153,91,136);
}

.section_fifth_text ul{

}

.section_fifth_text ul li{
    font-size: 1.3rem;
}

.section_fifth_img{
    text-align: center;
}

.section_fifth_img img{
    max-height:280px;
}

.section.section_sixth{
    display: flex;
    background: url("../img/hatter_miben_mas_a_tricox_octa.jpg") no-repeat bottom center;
    background-size: cover;
    height:auto;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    gap:80px;
}

.section_sixth_img{
    text-align: center;
}

.section_sixth_img img{
    max-height:280px;
}

.section_sixth_text{
    text-align: left;
    font-size: 1.5rem;
    border: 2px solid #FFF;
    color:#FFF;
    background-color: #b65b98 !important;
    padding:20px 30px;
    display: inline-block;
    max-width:55%;
}

.section_sixth_text h1{
    font-size:2rem;
}

.section_sixth_text ul li{
    font-size:1.4rem;
    font-weight:bold;
    margin-bottom:10px;
}






.section.section_seventh{
    background-color: #FFF;
    display: flex;
    min-height: unset;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    gap: 80px;
}

.section_seventh_text{
    text-align: left;
}

.section_seventh_text h1{
    font-size:2.25rem;
    color: rgb(153,91,136);
}

.section_seventh_text ul{

}

.section_seventh_text ul li{
    font-size: 1.3rem;
}

.section_seventh_img{
    text-align: center;
}

.section_seventh_img img{
    max-height:250px;
}


.section.section_eighth{
    position: relative;
    background: url("../img/hatter_miert_viszonteladonal_kaphato.jpg") no-repeat center center;
    background-size: cover;
    min-height: unset;
    padding: 30px;
}

.section_eighth_text h1{
    font-size:2.25rem;
    color: rgb(153,91,136);
}

.section_eighth_text p{
    color:#000;
    font-size:1.25rem;
}

.section_eighth_text p.kiemelt{
    color: rgb(153,91,136);
    font-size:1.5rem;
    font-weight:bold;
    margin-bottom:-20px;
    padding-bottom:0px;
}

.section_nineth{
    background:url("../img/lableckep.jpg") no-repeat bottom center;
    background-size: cover;
    min-height: 550px;
}

.section_tenth{
    background-color: #FFF;
    min-height: 50px;
}

.section_tenth h1{
    background-color:rgb(153,91,136);
    color:white;
    padding:20px 30px;
    text-align: center;
    font-weight: normal;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom:25px;
}

.section_tenth hr{
    background-color:rgb(153,91,136);
    height:4px;
    border:0px;
}

.section_tenth .section-title {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; margin-bottom: 20px;
    margin-top:60px;
}

.section_tenth .section-title hr {
    flex: 1; max-width: 200px;
    border: none; border-top: 1px solid rgb(153,91,136);
    height:1px;
}

.section_tenth .section-title h2 {
    color: rgb(153,91,136); font-weight: 700; letter-spacing: 2px;
    font-size: 20px; margin: 0;
}


.regions {
    display: flex;
    justify-content: space-between;
    gap:20px;
    padding-left:20px;
    padding-right:20px;
    margin-bottom:60px;
}
.region {
    display: flex; align-items: center; gap: 0px;
}

.region .map_container {
    width:130px;
}

.region .map_container img{
    width:100%;
}

.region-info { text-align: center; }
.region-info .name {
    color: rgb(153,91,136); font-weight: 600;
    margin-bottom: 20px; font-size: 14px;
}
.phone-pill {
    display: inline-block;
    background: rgb(153,91,136); color: #fff;
    padding: 6px 15px; border-radius: 10px;
    font-weight: 700; font-size: 17px;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
}

.social-icons a {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

.social-icons img {
    width: 60px;
    height: 60px;
    display: block;
    /* ha a PNG-k nem teljesen kerekek, és kerek vágást akarsz:
       border-radius: 50%; */
}

.footer{
    width:100%;
    background:url("../img/lablec_hatter.jpg") no-repeat bottom center;
    height:350px;
    background-size: cover;
}

/* FORM SECTION */

.section_submitform {
    background: #fff;
    padding: 80px 40px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* --- Bal oldal: szöveges blokk --- */
.contact-intro h2 {
    color: rgb(153, 91, 136);
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
}

.contact-intro p {
    color: rgb(153, 91, 136);
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

/* --- Jobb oldal: form --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 16px 22px;
    border: 1px solid #999;
    border-radius: 10px;
    background: #fff;
    color: rgb(153, 91, 136);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
    border-radius: 10px;
    resize: vertical;
    min-height: 130px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgb(153, 91, 136);
    font-weight: 600;
    opacity: 0.5;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgb(120, 60, 105);
    box-shadow: 0 0 0 3px rgba(153, 91, 136, 0.15);
}

/* --- Helper szöveg a form közepén --- */
.form-helper {
    color: rgb(153, 91, 136);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    margin: 20px 0 6px 0;
}

/* --- Select egyedi nyíllal --- */
.select-wrapper {
    position: relative;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 50px;
}

.contact-form select option:disabled {
    color: rgb(153, 91, 136,0.5);
    font-weight:600;
}

.contact-form select:has(option[value=""]:checked) {
    color: rgba(153, 91, 136, 0.5);
    font-weight: 600;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgb(153, 91, 136);
    border-bottom: 2px solid rgb(153, 91, 136);
    transform: translateY(-75%) rotate(45deg);
    pointer-events: none;
}

/* --- Checkbox sor --- */
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    color: rgb(153, 91, 136);
    font-size: 14px;
    cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: rgb(153, 91, 136);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-row a {
    color: rgb(153, 91, 136);
    font-weight: 700;
    text-decoration: none;
}

.checkbox-row a:hover {
    text-decoration: underline;
}

/* --- Küldés gomb --- */
.btn-submit {
    align-self: flex-start;
    margin-top: 20px;
    background: rgb(153, 91, 136);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 42px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-submit:hover {
    background: rgb(120, 60, 105);
}

.btn-submit:active {
    transform: translateY(1px);
}

/* FORM SECTION END */














/* --- GOMBOK --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    margin-top: 30px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
}

/* --- ELRENDEZÉSEK (GRID & FLEX) --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.feature-list {
    margin-top: 20px;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    font-weight: bold;
}

.highlight-box {
    background-color: white;
    padding: 20px;
    border-left: 5px solid var(--primary-color);
    margin-top: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.phone {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

@media (max-width: 800px) {
    main{
        padding:10px;
    }
    #hero h2{
        padding-top:30px;
        font-size: 3.5rem;
    }
    .hero_also_resz{
        text-align: center;
    }
    .hero_also_resz .hero_szovegdoboz{
        margin-top:20px;
        position: relative;
        top: unset;
        right: unset;
        width: 90%;
        width: calc(100% - 40px);
        height:auto;
        display:inline-block;
    }

    .hero_also_resz a.offerbtn{
        position: relative;
        bottom: unset;
        right: unset;
    }
    .section_second_img{
        text-align: center;
        width:100%;
    }

    .section.section_second{
        flex-wrap: wrap;
    }

    .section.section_third{
        padding: 20px 20px;
    }

    .section_fourth_container{
        width: 100%;
    }
    .section_third_container h1{
        font-size:1.8rem;
        max-width:92%;
    }

    .section_fourth_img{
        text-align: center;
        width:100%;
    }

    .section.section_fourth{
        flex-wrap: wrap;
    }

    .section_fourth_img2{
        width:100%;
        text-align: center;
    }

    .section_fourth_img2 img{
        height:auto;
        width:90%;
    }

    .section.section_fifth{
        flex-wrap: wrap;
    }

    .section_fifth_img{
        text-align: center;
        width:100%;
    }

    .section_fifth_img img{
        max-height:350px;
        max-width:96%;
    }

    .section.section_sixth{
        flex-wrap: wrap;
        padding-bottom:30px;
    }

    .section_sixth_text{
        text-align: center;
        width:100%;
        max-width:90%;
    }

    .section_sixth_img{
        text-align: center;
        width:100%;
    }

    .section.section_seventh{
        flex-wrap: wrap;
        padding-bottom:30px;
    }

    .section_seventh_text{
        width:100%;
        max-width:90%;
    }

    .section_seventh_img{
        text-align: center;
        width:100%;
    }
    .section_eighth_text h1{
        font-size:1.8rem;
    }

    .regions {
        flex-wrap: wrap;
    }
    .region {
        width:100%;
        text-align:center;
        justify-content: center;
    }

    .section_tenth h1{
        font-size:1.5rem;
    }
    .social-icons {
        gap: 18px;
    }
    .social-icons img {
        width: 48px;
        height: 48px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-intro h2 {
        font-size: 28px;
    }

    .section_submitform {
        padding: 50px 20px;
    }

    .ajanlatot_kerek_container{
        position: absolute;
        top: 30px;
        right: 10px;
    }

    .ajanlatot_kerek_container a.offerbtn{
        padding: 10px 20px;
        font-size: 1rem;
    }
}