/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

/* HEADER */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 9999;
}

.logo a {
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    color: #000;
}

.header-right {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.call-us-button {
    padding: 0.5rem 1rem;
    border: 1px solid #000;
    background: none;
    cursor: pointer;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.burger-menu {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}

#offcanvas-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    padding: 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 10000;
}

#offcanvas-menu.open {
    right: 0;
}

#offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 9998;
}

#offcanvas-overlay.show {
    opacity: 1;
    visibility: visible;
}

#offcanvas-menu button#close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    margin-bottom: 2rem;
}

#offcanvas-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#offcanvas-menu ul li {
    border-bottom: 1px solid #000;
}

#offcanvas-menu ul li a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 20px;
}

#offcanvas-menu ul li a:hover {
    color: #555;
    background: #f5f5f5;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  font-size: 18px;
  padding: 2rem 1rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left,
.footer-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-left a,
.footer-right a,
.footer-right .copyright {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
}

.footer-left a:hover,
.footer-right a:hover {
  border-bottom: 2px solid #000;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 60%;
}

