
@font-face {
    font-family: 'Kinghood';
    src: url('/fonts/Kinghood.woff2') format('woff2'),
         url('/fonts/Kinghood.woff') format('woff'),
         url('/fonts/Kinghood.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    }


@font-face {
    font-family: 'caramello_freeregular';
    src: url('/fonts/caramello_free-webfont.woff2') format('woff2'),
         url('/fonts/caramello_free-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html {
    height: 100%;
    }


body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

body.menu-open {
  overflow: hidden;
}

* {box-sizing: border-box}

/* Navigációs sáv */
.navbar {

    padding: 20px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    border-style: solid;
    border-width: 1px;
    border-color:  rgba(128, 0, 128,.2);
    margin: 10px;
}
.navbar-nav {
    justify-content: center;
    width: 100%;
    margin: 10px 10px 0 0;
}

.navbar-toggler {

    border:none;

}
.nav-brand_keret {
    display: flex;
    align-items: center; /* Kép középre igazítása */
    justify-content: center; /* Kép középre igazítása */
    width: 150px; /* Példa szélesség, testre szabható */
    height: 100px; /* Példa magasság, testre szabható */
    overflow: hidden; /* Ha a kép kilógna, ne jelenjen meg túllógás */
     border-color:  rgba(128, 0, 128,.2);
     border-left-width: 0px;
      border-bottom-width: 0px;
      border-top-width: 0px;
      border-right-width: 1px;
     border-style: solid;
}

.navbar-get_in_touch_keret{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px; /* Példa szélesség, testre szabható */
    height: 100px; /* Példa magasság, testre szabható */
    border-color:  rgba(128, 0, 128,.2);
    border-width: 0 0 0 1px;
    border-style: solid;
    padding: 0 0 0 15px ;
}

.navbar-get_in_touch p {
    white-space: nowrap;
    width: 100%;
    margin: 0;
}

.nav-link {
    white-space: nowrap;
    font-size: 18px;
}

.navbar-brand img {
        width: 100%;
    height: 100%;
    object-fit: cover; /* Kép kitölti a konténert, megtartva az arányokat */
}

.nav-item:nth-child(2) {
    margin: 0 35px 0 70px;
}
.nav-item:nth-child(3) {
    margin: 0 70px 0 35px;
}


.nav-item:hover .nav-link {
    background-color: rgba(0,0,0,.1);
}



.navbar-get_in_touch  {  /* Lépj velünk kapcsolatba!  linkhez tartozik*/
    text-decoration: none;
    color: black;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}


.nav-item:first-child .nav-link { /* Főoldal linket relatívra tesszük, hogy alatta a kis vonal jól mutasson*/
    position: relative;
    }

.hero-section {
    background: url('../kepek/20250414_143605.jpg') ;
    background-size: cover; /* A háttérkép kitölti a tartalmazó elemet */
    background-position: center; /* A háttérkép középre igazítva */
    background-repeat: no-repeat; /* A háttérkép nem ismétlődik */
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    margin: 10px;
    min-height: calc(80vh); /* Kitölti a maradék teret */
    box-sizing: border-box; /* Biztosítja, hogy a padding is beleszámítódjon a magasságba */
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);;
    font-weight: bold;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-in-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.5s ease-in-out;
}

.btn-custom {
    padding: 10px 20px;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    background-color: #ff66b2;
    color: white;
    border: none;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 2s ease-in-out;
}

.btn-custom:hover {
    background-color: #ff3385;
}

/* Betöltéskor az animáció beindítása */
.hero-section.show .hero-title,
.hero-section.show .hero-subtitle,
.hero-section.show .btn-custom {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Galéria szekció (kezdetben rejtett) ---- */
.gallery-section {
    display: none;
    text-align: center;
    margin-top: 20px;
    transform: translateY(100%);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.gallery-section.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ---- Bootstrap grid stílusok ---- */
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* ---- Lightbox teljes képernyős mód ---- */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease-in-out;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}



/* Hero szekció animált eltüntetése */
.hero-section.hide {
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

/* Megjelenítés */
.gallery-section.show {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-content: space-between;
    opacity: 1;
    transform: translateY(0);
}

/* Galéria képek */
.gallery-section img {
    border-radius: 8px; /* Lekerekített sarkok */
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

/* Hover hatás */
.gallery-section img:hover {
    transform: scale(1.05);
}

 /* Új doboz osztály a képek számára */
.gallery-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px; /* Minimális szélesség */
    height: 300px; /* Minimális magasság */
    border: 1px solid #ddd; /* Doboz kerete */
    border-radius: 8px; /* Lekerekített sarkok */
    overflow: hidden; /* Ha a kép nagyobb, mint a doboz, akkor ne lógjon ki */
    margin: 10px; /* Térköz a dobozok között */

}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Megőrzi az arányokat és kitölti a dobozt */
}

.fullscreen-single {
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-single img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    cursor: pointer;
}

.magamrol-section {
    display: none;
    text-align:  justify;
    padding: 0 15px 0 15px;
}

.magamrol-section p {
    margin: 10px 0 2rem 1rem;
}

.magamrol-section img {
    width: 100%;
    height: auto;
    border-radius: 10%;
}


.magamrol-section.show {
    line-height:  1.7;
    font-size: 1.2rem;
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    margin: 5rem 0;
}


.bal_sav, .kozepso_sav, .jobb_sav {
    box-sizing: border-box;
    padding: 1rem;
}

.bal_sav {
    flex: 1;
}

.kozepso_sav {
    flex: 2;
}

.jobb_sav {
    flex: 1;
    display: flex;
    justify-content: center; /* kép középre vízszintesen */
    align-items: flex-start; /* kép tetejére igazítva, vagy lehet center is */
}

.jobb_sav img {
    max-width: 90%; /* kép nem nyúl ki teljesen */
    height: auto;
    border-radius: 10%;
    object-fit: contain;
}

.szolgaltatasok-section {
    display: none;
    margin-top: 20px;
    padding-left: 15px;
}

.szolgaltatasok-section.show {
    display: grid;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    padding: 0 0 0 0;
}

.szolgaltatasok-section img {
    width: 100%;
}

.szolaltatasok_container {
    display: flex;
    justify-content: space-between;
    border-top-style: solid;
    border-width: 1px;
    border-color: rgba(128, 0, 128,.2);
    text-align: center;
    padding-top: 80px;
    margin-top: 10px;
}

.kep_container {
    margin: 0 15px 0 30px;
    flex: 1 ;
}

.kep_container img {
    margin-bottom: 10px;
}

.szoveg_container{
    margin: 0 30px 0 15px;
    flex: 1 ;
}

.szoveg_container h3 {
    color: rgba(128, 0, 128,.2);
    margin-bottom: 2rem;
}

.szoveg_container p {
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.only-mobile {
    display: none;
    width: 100%;
    margin: 20px 0;
}

.only-desktop {
    display: block;
}

.kapcsolat-section {
    display: none;
}

.kapcsolat-section.show {
    line-height:  1.7;
    font-size: 1.2rem;
    display: block;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.content{
    display: flex;
    flex-direction:row;
    justify-content: space-between;
    gap: 2rem;
}

.content2 {
    display: grid;
     width: 100%;
}

.felso_kep {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/kepek/hands-typing-message-pink-phone.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
    width: 100vw;
    font-family: 'Kinghood';
    font-size: 80px;
    font-weight: 900;
    color: white;
}

.kep_container{
    display: grid;
}

.facebook-logo {
    max-width: 50% !important;
    margin: 3rem auto;
    display: block;
}

.felso-resz {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/kepek/hands-typing-message-pink-phone.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
    width: 100vw;
    font-family: 'caramello_freeregular';
    font-size: 80px;
    font-weight: 900;
    color: #ffe0e8;
}


.kozepso-resz {
    border-top-style: solid;
    border-width: 1px;
    border-color: rgba(128, 0, 128,.2);
    text-align: center;
    padding: 40px;
    margin-top: 10px;
}

.kapocs {
    display:flex;
    justify-content:center;
}

.kapocs h1:first-child {
    font-family: 'Kinghood';
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    position: relative;
    z-index: 1;
    left: 0;
    top: 0;
    margin-right: -8px;
}

.kapocs h1:last-child {
    font-family: 'caramello_freeregular';
    font-size:  clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: #E8A6AF ;
    position: relative;
    z-index: 2;
}
.eleres {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    column-gap: 2rem;
    row-gap: 1.5rem;
    justify-content: center;
     max-width: 800px;
    margin: 0 auto;
}
.velemenyed_szamit{
    margin: 30px 0 30px 0;
}
.eleres > div {
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}
.eleres h1 {
    font-family: 'Kinghood';
    font-size: 30px;
}


.follow img {
    width: 100px;
    height: auto;
    margin: 0 0 0 20px;
}

.terkep {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px; /* vagy lehet 100%, ha teljes szélességet akarsz */
    height: 400px;
    margin: 20px auto;
    border-radius: 10px; /* Lekerekített szélek */
    overflow: hidden; /* Megakadályozza, hogy a térkép kilógjon */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Szép árnyék */
     background-color: rgba(255, 153, 0, 0.2);
}

.terkep iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.copy-right{
    display: flex;
    justify-content: center;
    background: #E8A6AF ;
    align-items: center;
    height: 4rem;
    text-align: center;
    margin: 2rem 0 2rem 0;
}



/* Reszponzív töréspontok */
@media (max-width: 1200px) {
    .gallery-section img {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .gallery-section img {
        width: 220px;
        height: 220px;
    }
    .nav-item:nth-child(2) {
        margin: 0  0 0 0;
    }
    .nav-item:nth-child(3) {
        margin: 0 0 0 0;
    }
    .nav-brand_keret {
        border: none;
    }
    .navbar-get_in_touch_keret{
        border: none;
    }
    .navbar-get_in_touch_keret i {
    color: #ffe0e8;
  }

}

@media (max-width: 768px) {
    .nav-brand_keret {
     width: 120px;
     height: 80px;
     }
      .navbar-get_in_touch_keret {
        display: none !important;
      }

     .kapcsolat-section.show {
        line-height:  1.1;
        font-size: .9rem;

     }
    .velemenyed_szamit p {
     margin-bottom: 0;
     }
     .kapocs h1:first-child {
        font-size: 30px;
     }
     .kapocs h1:last-child {
        font-size: 40px;
        font-weight: 600;
     }
    .nav-item:nth-child(2) {
        margin: 0  0 0 0;
     }
    .nav-item:nth-child(3) {
        margin: 0 0 0 0;
    }
     .magamrol-section .content {
        flex-direction: column;
      }
      .bal_sav, .kozepso_sav, .jobb_sav {
        width: 100%;
      }

      .kozepso_sav {
        order: 1;
      }

      .bal_sav {
        order: 2;
      }

      .jobb_sav {
        order: 3;
      }
      .kozepso_sav h1 {
          text-align: center;
          overflow-wrap: normal;
      }
      .felso_kep{
       font-size: clamp(2rem, 8vw, 5rem);
      }
      .felso-resz p {
        font-size: clamp(2rem, 8vw, 5rem); /* kisebb méret, szebb törés */
        line-height: 1.2;
        text-align: center;
        word-break: break-word;
      }
      .kozepso-resz {
       padding: 40px 40px 40px 5px;
      }
      .kapocs h1:last-child {
        font-size: 20px;
      }
      .eleres h1 {
      font-size: 15px;
    }
      .facebook-logo {
        max-width: 30% !important;
        margin: 0;
    }
    .follow {
    display: flex;
    justify-content: center;
  }
    .follow img {
    width: 50px;
    }
    .only-mobile {
      display: block;
    }
    .only-desktop {
      display: none;
    }
    .szolaltatasok_container {
      flex-direction: column;
    }

}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -75vw; /* Rejtve indul */
  width: 75vw;
  height: 100%;
  background: white;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transition: right 0.3s ease-in-out;
  z-index: 1050;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-menu.show {
  right: 0;
}

.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-items li {
  margin: 1rem 0;
}

.mobile-menu-items a {
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
}
.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: black;
  cursor: pointer;
  z-index: 1100;
}


