@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Noto Sans Hebrew", sans-serif;
    direction: rtl;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero {
   height: 50vh;
   width: 100%;
   background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero3.jpg');
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}

.hero h1 {
    color: white;
    font-size: 5rem;
    text-align: center;
}

.contact,
.contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.profile  {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2% 0;
}

.profile img {
    width: 70%;
}

.about {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2% 0;
}

.about p {
    font-size: 1.5rem;
}

.contact-links {
    padding: 2rem 0;
    line-height: 2;
}

.contact-links p {
    color: #333;
    font-size: 3rem;
    font-weight: 300;
}

.contact-links a {
    color: #333;
    text-decoration: none;
}

.contact-links a:hover {
    text-decoration: underline;
}

.icons {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    text-align: center;
}

.footer-icons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5% 0;
    gap: 3rem;
}

.footer-icons a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.footer-icons i {
    font-size: 2rem;
    color: #a76936;
    background-color: white;
    padding: 30%;
    border: 2px #a76936 solid;
    border-radius: 250px;
    transition: color 0.5s ease, background-color 0.5s ease;
    
}

.footer-icons i:hover {
    color: white;
    background-color: #a76936;
}

@media (max-width: 800px) {
    .about {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2% 0;
}

.icons {
    margin-top: 3rem;
}
}