/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1766999828
Updated: 2025-12-29 09:17:08

*/

/* ===== HEADER ===== */
/* =====================
   RR HEADER - NORMAL
===================== */
header#site-header {
    display: none;
}

#site-footer {
    display: none;
}
.rr-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #fff;           /* Normal white */
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

/* =====================
   RR HEADER - STICKY
===================== */
.rr-header.is-sticky {
  background: rgba(255, 255, 255, 0.8); /* 80% white */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.rr-navbar {
    height: 120px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: auto;
}

/* LEFT & RIGHT */
.rr-left, .rr-right {
  color: #000;
  font-size: 12px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

/* LOGO */
.rr-center img {
    /* max-height: 50px; */
    width: 120px;
}

/* ===== OVERLAY ===== */


/* ===== SIDEBAR ===== */
.rr-sidebar {
  position: fixed;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  padding: 120px 60px;

  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  transition: transform .45s cubic-bezier(.4,0,.2,1);
  z-index: 1000;
}

.rr-sidebar.active {
  transform: translateX(100%);
}


/* ===== MENU ===== */
.rr-menu {
  list-style: none;
}

.rr-menu li {
  opacity: 0;
  transform: translateX(-30px);
  margin-bottom: 25px;
}
.rr-menu {
  list-style: none;
  text-align: right;
}



.rr-menu a {
  color: #fff;
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.rr-sidebar.active .rr-menu li {
  animation: rrFade .5s forwards;
}
/* ===== CLOSE ICON ===== */
.rr-close {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  opacity: .85;
  transition: all .3s ease;
}

.rr-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}


.rr-sidebar.active .rr-menu li:nth-child(1){animation-delay:.2s}
.rr-sidebar.active .rr-menu li:nth-child(2){animation-delay:.4s}
.rr-sidebar.active .rr-menu li:nth-child(3){animation-delay:.6s}
.rr-sidebar.active .rr-menu li:nth-child(4){animation-delay:.8s}
.rr-sidebar.active .rr-menu li:nth-child(5){animation-delay:1s}

@keyframes rrFade {
  to { opacity:1; transform:translateX(0); }
}

.rr-menu a {
  color: #fff;
  font-size: 26px;
  text-transform: uppercase;
  text-decoration: none;
}

/* Mobile */
@media(max-width:768px){
  .rr-sidebar{ width:70%; left:-70%; }
}

@media only screen and (max-width:600px){
    .rr-right {
    display: none;
}
}
