@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Passions+Conflict&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

html, body {width:100%;height:100%;margin:0;padding:0;}
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    overflow-x: hidden;
}
	
td a {
	text-decoration: none;
    color: inherit;
    font-weight: 400;
}
	
td a:hover {
	color:#ad9582
}

h1, h2, h3 {
    font-family: "Sansation", sans-serif;
	font-weight: 300;
	font-style: normal;
    color: #bdab99;
    margin:0;
}

h1 {
    text-align: center;
    font-size: 1.9em;
	text-transform: uppercase;
}
	
h1 span {
    white-space: nowrap;
}

h1::before,
h1::after {
    content: " — ";
    color: #efe3d7;
}

p {
    font-size:1.2em;
    font-weight: 300;
    color:#434342;
	margin-top:0;
	margin-bottom:8px;
	hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}
	
.icimg {
	width:auto;
	height:35px;
}
	
#stil, #szinek, #rolam, #cont {
    scroll-margin-top: 60px;
}
	
/* ALAP FORM */
form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* INPUTOK */
form input {
    width: calc(100% - 30px);
    padding: 12px 15px;
    border: 1px solid #d6c8bb;
    border-radius: 6px;
    background: #fafaf9;
    color: #4a4a4a;
    transition: all 0.25s ease;
}
	
form input:focus {
    outline: none;
    border: 1px solid #a2d7e2;
    background: #fafaf9;
    box-shadow: none;
}

/* GOMB */
form button {
    padding: 14px 22px;
    font-size: 1.15em;
    font-family: "Roboto", sans-serif;
    background: #b19986;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 200;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width:280px;
    margin:22px auto 0;
}

form button span {
    display:inline-block;
}

/*form button::after {
    content: "»";
    opacity:0;
    transform:translateX(-8px);
    transition:all .35s ease;
}

form button:hover::after {
    opacity:1;
    transform:translateX(0);
}*/

form button:hover {
	background: #aa927e;
}

/* --- HERO kép --- */
.hero {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center -50px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

/* DESKTOP alap háttér */
.hero {
    background-image: url('../img/bg.jpg');
}

/* --- HERO MENÜ (DESKTOP) --- */
.hero-menu {
    position: absolute;
    font-weight: 300;
    top: 10px;
    right: 40px;
    display: flex;
    gap: 20px;
    z-index: 5;
    color: white;
    font-size: 1.3em;
    text-shadow: 1px 1px 3px rgba(107,78,53,0.7);
    opacity: 1;
    transition: opacity 1s;
}

.hero-menu.hide {
    opacity: 0;
    pointer-events: none;
}

.hero-menu a {
    color: white;
    text-decoration: none;
}

/* --- HERO LOGÓ --- */
.hero-logo {
    position: absolute;
    top: 38%;
    left: 46%;
    transform: translate(-38%, -46%);
    width: 300px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1s;
}

.hero-logo.hide {
    opacity: 0;
    pointer-events: none;
}

/* --- FIX MENÜ (DESKTOP ONLY) --- */
.fixed-menu {
    position: fixed;
    font-weight: 200;
    top: -100px;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(119deg, rgba(191,168,151,1) 0%, rgba(170,146,126,1) 33%, rgba(170,146,126,1) 100%);
    font-size: 1.25em;
    border-bottom: 2px solid #b0ccbf;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    opacity: 0;
    transition: top 1s ease, opacity 1s ease;
}

.fixed-menu.show {
    top: 0;
    opacity: 1;
}

.fixed-menu .menu-left a {
    margin-right: 20px;
    text-decoration: none;
    color: white;
}

.fixed-menu .logo-small img {
    margin:5px 40px 0;
    width: 240px;
}

.menu-left {margin-right: 15px;}
	
.terkep {
    width: 100%;
    height: 350px;
    border-top: 7px solid #b0ccbf;
	border-bottom: 14px solid #b0ccbf;
}

.terkep iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Menü alatti fehér csík */
.hero-menu a,
.fixed-menu .menu-left a {
    position: relative;
    padding-bottom: 3px;
}

.hero-menu a::after,
.fixed-menu .menu-left a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: #f9eee2;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.hero-menu a:hover::after,
.fixed-menu .menu-left a:hover::after {
    width: 100%;
}

/* --- CONTENT --- */
.content {
    background: white;
    padding: 3.5em 4em;
}
	
.content-top-line {
    width: 100%;
    height: 6px;
    background: #b0ccbf;
    position: relative;
    z-index: 5;
}

/* ---------------------------------------------------
   MOBIL / TABLET HAMBURGER MENÜ
--------------------------------------------------- */

.hamburger {
    display: none;
    position: fixed;
    top: 15px;
    right: 25px;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 20;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ede4dc;
    border-radius: 2px;
    transition: 0.4s;
    box-shadow: 2px 2px 5px rgba(213,198,184,0.3);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6.5px, -6.5px); }

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 70px;
    background: #aa927e;
    border-bottom: 2px solid #bfa897;
    z-index: 19;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s, transform 0.5s;
}

.mobile-menu.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    padding: 13px 25px;
    color: white;
    text-decoration: none;
    border-left: 4px solid #aa927e;
    border-bottom: 1px solid #bfa897;
    font-size: 1.3em;
    font-weight: 200;
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    border-left: 9px solid #d4bda9;
    background-color: #b39d8d;
}

/* ---------------------------------------------------
   Képes–szöveges blokkok
--------------------------------------------------- */

.kep-szoveg-blokk {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin: 3em 0 4em;
}

/* ✔ JAVÍTVA — fix keret a kép körül */
.kep-szoveg-blokk .kep {
    flex: 0 0 40%;
    overflow: hidden;       /* <<< fontos */
    position: relative;     /* <<< fontos */
    border-radius: 8px;     /* <<< border átkerült ide */
}

/* ✔ img-ből kivéve a radius és position */
.kep-szoveg-blokk img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease; /* hogy szép legyen a hover */
}

.kep-szoveg-blokk .szoveg {
    flex: 1;
}

/* Kép bal */
.kep-szoveg-blokk.kepb { flex-direction: row; }

/* Kép jobb */
.kep-szoveg-blokk.kepj { flex-direction: row-reverse; }

/* Hover effektek */
.rotate-left img:hover { transform: scale(1.02) rotate(-1deg); }
.rotate-right img:hover { transform: scale(1.02) rotate(1deg); }

/* Tablet */
@media (max-width: 1024px) {
    .kep-szoveg-blokk.kepb .kep,
    .kep-szoveg-blokk.kepj .kep {
        flex: 0 0 50%;
    }
}
	
@media (min-width: 601px) and (max-width: 1024px) {
    .hero {
        background-image: url('../img/bg_t.jpg');
        background-attachment: scroll;
    }

    .hero-logo {
        top: 24%;
        left: 42%;
        transform: translate(-24%, -42%);
        width: 240px !important;
        height: 110px !important;
    }
}

/* Mobil */
@media (max-width: 600px) {
    .content {
        padding: 3em 1.3em;
        border-bottom: 10px solid #b0ccbf;
    }

    h1 { margin-bottom: 15px; }
    p { font-size:1.1em; }
	
	.hero {
        background-image: url('../img/bg_m.jpg') !important;
        height: 40vh !important;
        background-position: center !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }

    .hero-logo {
        top: 21% !important;
        left: 41% !important;
        transform: translate(-21%, -41%) !important;
        width: 170px !important;
        height: 75px !important;
    }

    .kep-szoveg-blokk {
        flex-direction: column;
        gap: 20px;
    }

    .kep-szoveg-blokk .kep {
        flex: 0 0 100% !important;
    }

    .kep-szoveg-blokk.kepj,
    .kep-szoveg-blokk.kepb {
        flex-direction: column;
    }

    /* Mobilon hover tiltva */
    .rotate-left img:hover { transform: scale(1) rotate(0); }
    .rotate-right img:hover { transform: scale(1) rotate(0); }
}

/* Menük eltüntetése tabletig */
@media (max-width: 1024px) {
    .hero-menu,
    .fixed-menu,
    .fixed-menu .menu-left {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }
}