
/* === ALBUM Light Box === */
/* RDK Lightbox alapstílus */
#rdkLightboxOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.3s ease;
  opacity: 0;
}
#rdkLightboxOverlay.visible {
  opacity: 1;
}
#rdkLightboxOverlay img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(255, 165, 0, 0.4);
}
#rdkLightboxCaption {
  color: #ffb84d;
  margin-top: 15px;
  font-size: 1.1rem;
  text-align: center;
  max-width: 80%;
}
#rdkLightboxClose, .rdkLightboxArrow {
  position: absolute;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
}
#rdkLightboxClose:hover,
.rdkLightboxArrow:hover {
  color: #ff9800;
}
#rdkLightboxClose {
  top: 20px; right: 30px;
}
.rdkLightboxArrow {
  top: 50%;
  transform: translateY(-50%);
}
#rdkPrev { left: 30px; }
#rdkNext { right: 30px; }



/* === ALAP STÍLUSOK === */
html, body {
    font-family: 'Open Sans', 'Lato', sans-serif;
    color: #222;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

a {
    color: #0b2f2f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #f0a500;
}

/* === FEJLÉC (HEADER) === */
header.blockHeader {
    width: 100%;
    background-color: black;   
     border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* === KONTAINER ELRENDEZÉS === */
header.blockHeader .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* === LOGÓ === */
.logoWidget .logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

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

/* === NAVIGÁCIÓS MENÜ === */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;

}

.main-nav ul li {
    display: inline-block;
    
}

.main-nav ul li a {
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0b2f2f;
    transition: all 0.3s ease;
    font-style: roboto;
    color: firebrick;
    text-decoration: none !important;
}

.main-nav ul li a:hover {
    color: #f0a500;
}

/* === MOBIL NÉZET === */
@media (max-width: 768px) {
    header.blockHeader .container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px 20px;
    }

    .logoWidget .logo img {
        height: 60px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* === ARANY DÍSZVONAL A HEADER ALATT === */
header.blockHeader::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #f0a500, transparent);
}

/* === LÁBLÉC === */
.site-footer {
    background: #111;
    color: #eee;
    text-align: center;
    padding: 30px 10px;
    font-size: 0.95rem;
}

.site-footer p {
    margin: 0;
}

.navbar-separator {
    border-left: 1px solid #ccc;
    height: 2em;
    margin: 0 1rem;
}

@media (max-width: 991px) {
    .navbar-separator {
        display: none;
    }
}

.navbar-toggler-icon {
    filter: invert(1);
}

.homeStaggerImg.img1 {
    top: 0;
    left: 0;
}
.homeStaggerImg.img2 {
    top: 40px;
    left: 280px;
}
.homeStaggerImg.img3 {
    top: 80px;
    left: 560px;
}


.home-images {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.home-images img {
    width: 320px;
    border-radius: 18px;
    transition: transform .35s ease;
}


/* --- HOME képek hover zoom --- */
.homeHoverImg {
    transition: transform .35s ease;
}
.homeHoverImg:hover {
    transform: scale(1.25);
}

/* --- 3 ikon hover highlight (Innove yellow) --- */
.iconCard {
    transition: all .25s ease;
    border-radius:12px;
}
.iconCard:hover {
    box-shadow:0 0 18px rgba(249,168,37,0.8);
    transform: translateY(-4px);
}

.hero-2col {
    display:flex;
    align-items:flex-start;
    gap:4vw;
    padding: 4vw;
}

/* dinamikus skálázás */
.mainTitle {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height:1.2;
}

.subTitle {
    color: #eab308; /* az a sárga */
    font-size: clamp(0.9rem, 1.6vw, 1.3rem);
    font-weight:700;
}

.contentText {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    max-width:45ch;
}

/* image area */
.left-col { width:48%; }
.right-col { width:48%; }

/* staircase képek */
/* --- 3 HOME KÉP lépcső effekt --- */
.homeHoverImg {
    transition: transform .25s;
    border-radius:18px;
}

.homeHoverImg:nth-child(1) { margin-top: 0; }
.homeHoverImg:nth-child(2) { margin-top: 30px;  }
.homeHoverImg:nth-child(3) { margin-top: 60px; }

/* hover grow 125% */
.homeHoverImg:hover {
    transform:scale(1.25);
    z-index:10;
}


/* --- ikon hover: sárga border + light scale --- */
.iconCard {
    border-radius:12px;
    transition: all 0.25s;
    border:2px solid transparent;
}

.iconCard:hover {
    border-color:#F9A825;          /* ugyanaz a sárga mint a cím */
    transform:scale(1.15);
}


/* ikonok hover sárga */
.iconRow img {
    width: clamp(40px,5vw,70px);
    margin-right:1vw;
    transition:.25s;
    filter:brightness(0);
}

.iconRow img:hover {
    filter:brightness(1) saturate(3) hue-rotate(15deg);
}
footer h3, footer h4 {
    color:white;
}

footer p:hover {
    color:#F9A825;
    cursor:default;
}
.socialLink {
  display:block;
  margin-bottom:12px;
}

.socialLink img {
  background:white;
  border-radius:10px;
  padding:8px;
  width:38px !important;
  height:38px;
  object-fit:contain;
  transition:.25s ease;
}

.socialLink:hover img {
  transform:scale(1.25);
  background:#F9A825; /* a sárga ami a címednél is van */
}

.reviews-section {
    background:#0B120D;
    padding:70px 20px;
}

.reviews-wrap {
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    justify-content:center;
}

.reviewCard {
    background:white;
    width:300px;
    padding:40px 30px 30px 30px;
    border-radius:12px;
    text-align:center;
    transition:.3s;
    position:relative;
}

.reviewCard:hover {
    background:#F9A825;
    transform:scale(1.10);
}

.userIcon {
    width:50px;
    height:50px;
    background:white;
    border-radius:50%;
    background-image:url('https://upload.wikimedia.org/wikipedia/commons/9/99/Sample_User_Icon.png');
    background-size:60%;
    background-position:center;
    background-repeat:no-repeat;
    position:absolute;
    top:-20px;
    left:50%;
    transform:translateX(-50%);
    border:3px solid #F9A825;
}
.albumItem {
    display: block;
    text-decoration: none;
    color: white;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    height: 240px;
    transition: transform 0.3s ease;
}

.albumBg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45);
    transition: all 0.4s ease;
}

.albumItem:hover .albumBg {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.albumTitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}




/* 
