@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/RobotoCondensed-Regular.ttf'); 
}

@font-face {
    font-family: 'Roboto Condensed Bold';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/RobotoCondensed-Bold.ttf'); 
}

.topbar{
    top: 20px !important;
    background-color: transparent !important;
    box-shadow: unset !important;
    justify-content: space-around !important;

}

.logo-text{
    margin-top: 0 !important;
}

.logo-container{
    flex-direction: column;
    
}

:root{
    --text:#fff;
    --muted: rgba(255,255,255,.75);
    --card: rgba(0,0,0,.38);
    --card2: rgba(255,255,255,.06);
    --border: rgba(255,255,255,.18);
}
  
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
margin:0;
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
color:var(--text);
overflow-x:hidden;
}

/* Background image */
.rv-hero{
position:fixed;
inset:0;
background:
    url("/images/bg-home-2.png") center/cover no-repeat;
transform: scale(1.03);
filter: saturate(1.05);
z-index:-2;
}

/* Dark overlay for readability */
.rv-hero-overlay{
position:fixed;
inset:0;
background: linear-gradient(
    180deg,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.30) 60%,
    rgba(0,0,0,.35) 100%
);
z-index:-1;
}

.contacts-wrapper{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:60px 20px;
    gap:20px;
}

.contacts-card{
    width:min(760px, 100%);
    /* background: var(--card); */
    border:1px solid var(--border);
    border-radius:18px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 18px 50px rgba(0,0,0,.25);
    padding:28px 0 28px 16px;
}

html[lang="he"] .contacts-card{
    padding:28px 16px 28px 0;
    direction: rtl;
}

.title{
    margin:0 0 14px 0;
    text-align:center;
    font-size:36px;
    font-weight:400;
    letter-spacing:1px;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Roboto Condensed';
    width: 100%;
}

.lines{
    display:flex;
    flex-direction:column;
    font-size:20px;
    line-height:1.8;
}

.line{
    display:flex;
    gap:10px;
    padding:10px 12px;
    align-items: center;
}

.address{
    font-size: 20px;
    margin-left: 5px;
    display: inline-block;
}
html[lang="he"] .address{
    margin-left: 0;
    margin-right: 5px;
}
.ico{
    width:40px;
    display:inline-flex;
    justify-content:center;
    background-repeat: no-repeat;
    background-size: 30px auto;
    background-position: center;
    height: 47px;
}
.location-ico{
    background-image: url('../images/address.png');
}
.phone-ico{
    background-image: url('../images/phone.png');
}
.email-ico{
    background-image: url('../images/email.png');
}
.link{
    color:#ffffff;
    text-decoration: none;
    display: inline-block;
    margin-left: 5px;
    font-size: 20px;
}
html[lang="he"] .link{
    margin-left: 0;
    margin-right: 5px;
}
.link:hover{ 
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.text{
    font-size:22px;
    line-height:1.8;
    font-family: 'Roboto Condensed';
    color:#ffffff;
}
  

.footer-wrapper{
    position: absolute ;
    bottom: 0;
    width: 100%;

}
.footer-content{
    background-color: transparent !important;
    gap:30px
}
.footer-copyright{
    width: unset !important;
} 

@media only screen  and  (max-width: 430px) {
    .text{
        font-size: 20px;
    }
    .address{
        font-size: 18px;
    }
    .link{
        font-size: 18px;
    }
    .line{
        padding:10px 0;
    }
}
