﻿
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body, html {
height: 100%;
font-family: Arial, sans-serif;
 overflow-x: hidden;
 position: relative;
}
header {
height: 60px;
background-color: #FFFFFF;
color: #0000FF;
font-size: 20px;
font-weight: bold;
text-decoration: none;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 30px;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 10000;
flex-direction: row-reverse;
}
.title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}
 /*Side_Menu__________________________________________________________________________________________________________________________*/
.hamburger {
font-size: 24px;
cursor: pointer;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.sidebar li {
  margin-bottom: 10px;
}
.sidebar li a {
  display: block;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  background-color: #f5f5f5;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: right;
}
.sidebar li a:hover {
  background-color: Navy;
  color: #fff;
  padding-right: 25px;
}
.sidebar {
position: fixed;
top: 60px;
bottom: 50px;
width: 250px;
background-color: #C0C0C0;
height: 100%;
overflow-y: auto;
text-align: right;
padding: 15px;
z-index: 900;
transition: right 0.3s ease;
right: -250px;
}
.sidebar.open {
right: 0;
}
 /*__________________________________________________________________________________________________________________________*/
 /*01__________________________________________________________________________________________________________________________*/
.main-content {
  margin-top: 60px;
  margin-bottom: 50px;
  padding: 20px;
  direction: rtl;
}
.main-title {
  font-size: 26px;
  display: inline-block;
  background-color: #FFFFFF;
  padding: 0px 30px 20px 20px;
  border-radius: 8px;
  animation: fadeIn_Title 1s ease-in-out forwards;
  color: #0000FF;
  line-height: 1.4;
  font-weight: normal;
  text-decoration: none;
  text-align: right;
  margin-bottom: 30px;
}

@keyframes fadeIn_Title {
  from { opacity: 0; transform: translateY(20px);
}
  to { opacity: 1; transform: translateY(0);
}
}
 /*__________________________________________________________________________________________________________________________*/
 /*11__________________________________________________________________________________________________________________________*/

.social-buttons-wrapper {

display: flex;
bottom: 20px;
right: 20px;
padding: 0px 30px 20px 20px;
display: flex;
flex-direction: row;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
z-index: 1000;
direction: rtl;
  animation: fadeInTitle_11 4s ease-in-out forwards;
}

.social-link-btn {
background-color: #0000FF;
color: white !important;
text-decoration: none !important;
width: 200px;
height: 60px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 80px;
font-weight: bold;
font-size: 15px;
padding: 0px 0px 0px 0px;
gap: 5px;
border: 3px solid #ffffff;
text-align: center;
    box-shadow: 10px 10px 50px rgba(128,255,128,1.2);
transition: all 1s ease;
}
.social-link-btn:hover {
transform: scale(1.08);
background-color: #FF0000;
}

@media (max-width: 480px) {
.social-link-btn {
width: 200px;
height: 60px;
font-size: 20px;
}
.social-buttons-wrapper {
bottom: 15px;
right: 15px;
}
}
.social-link-btn span {
   font-size: 20px;
  font-weight: normal;
 color: #FFFF00;
}

@keyframes fadeInTitle_11 {
  from { opacity: 0; transform: translateY(1px); }
  to { opacity: 20; transform: translateY(0); }
}
 /*__________________________________________________________________________________________________________________________*/
 /*05__________________________________________________________________________________________________________________________*/
.image-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px;
    background-color: #f9f9f9;
}


.person-card {
    width: 280px;
    text-align: center;
    background: white;
    padding: 0px 30px 20px 20px;
    border-radius: 12px;
    box-shadow: 10px 10px 50px rgba(255,215,0,1.2);
    transition: transform 0.3s ease;
    opacity: 0;
    animation: slideUpFade_05 1s ease-out forwards;
}
.person-card:hover {
    transform: translateY(-10px);
}

.person-img-container {
    width: 100%;
    height: 300%px;
    overflow: hidden;
    border-radius: 8px;
    border: 3px solid #D4AF37;
    background-color: white;
}
.person-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.person-name {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: Black;
}

.img-link {
 display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 8px;
}
.img-05 {
   width: 100%;
 height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.img-link:hover .img-05 {
  transform: scale(1.05);
}

@keyframes slideUpFade_05 {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(20px);
    }
}
 /*__________________________________________________________________________________________________________________________*/
 /*Address__________________________________________________________________________________________________________________________*/
footer {
background-color: #FFFFFF;
color: #0000FF;
padding: 6px 0;
position: static;
z-index: 1000;
direction: rtl;
}
.footer-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 10px;
padding: 0 10px;
width: 100%;
margin: 0;
}

.footer-info {
flex: 1 1 100%;
text-align: center;
}
.footer-info h4 {
  font-size: 20px;
}

.footer-info h2 {
  font-size: 16px; 
  margin-top: 10px;
  color: #FF0000;
}
.footer-info a {
color: #0000FF;
text-decoration: none;
transition: color 0.4s, text-decoration 0.4s;
}

.footer-info a:hover {
text-decoration: underline;
color:#FF0000;
}
.map-credit {
font-size: 10px;
color: #eeeeee;
margin-top: 5px;
text-align: left;
}
 /*__________________________________________________________________________________________________________________________*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 850;
}

.overlay.active {
display: block;
}

.overlay.show {
display: block;
}
 /*Media__________________________________________________________________________________________________________________________*/

#phoneButton {
  position: fixed;
  bottom: 90px;
  right: 10px;
  background-color: #25D366;
  border: none; border-radius: 50%; width: 60px; height: 60px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 1000; padding: 0;
}
#phoneButton img { width: 32px; height: 32px; }
@media (max-width: 480px) {
  #phoneButton {
    width: 50px;
    height: 50px;
  }
}
 #phoneButton:hover {
 transform: scale(1.1);
 transition: transform 0.2s;
}

#whatsappButton {
position: fixed;
bottom: 20px;
right: 10px;
background-color: #25D366;
border: none; border-radius: 50%; width: 60px; height: 60px; cursor: pointer;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 1000; padding: 0;
}
#whatsappButton img { width: 32px; height: 32px; }
@media (max-width: 480px) {
  #whatsappButton {
    width: 50px;
    height: 50px;
  }
}
 #whatsappButton:hover {
 transform: scale(1.1);
 transition: transform 0.2s;
}
.social-buttons { display: flex; justify-content: center; gap: 15px; padding: 20px; width: 100%; }
 #instagramButton {
 background-color: #E1306C;
 border: none; 
 border-radius: 50%; 
 width: 60px; 
 height: 60px; 
 cursor: pointer;
 display: flex; 
 align-items: center; 
 justify-content: center;
 box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#instagramButton img {
  width: 30px;
 height: 30px;
 object-fit: contain;
}
 #instagramButton:hover {
 transform: scale(1.1);
 transition: transform 0.2s;
}
.social-buttons { display: flex; justify-content: center; gap: 15px; padding: 20px; width: 100%; }
 #facebookButton {
 background-color: #1877F2;
 border: none; 
 border-radius: 50%; 
 width: 60px; 
 height: 60px; 
 cursor: pointer;
 display: flex; 
 align-items: center; 
 justify-content: center;
 box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#facebookButton img {
  width: 30px;
 height: 30px;
 object-fit: contain;
}
 #facebookButton:hover {
 transform: scale(1.1);
 transition: transform 0.2s;
}

#youtubeButton {
position: fixed;
bottom: 90px;
left: 10px;
background-color: #FF0000;
border: none; border-radius: 50%; width: 60px; height: 60px; cursor: pointer;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 1000; padding: 0;
}
#youtubeButton img { width: 32px; height: 32px; }
@media (max-width: 480px) {
   #youtubeButton {
    width: 50px;
    height: 50px;
  }
}
  #youtubeButton:hover {
 transform: scale(1.1);
 transition: transform 0.2s;
}
.social-buttons { display: flex; justify-content: center; gap: 15px; padding: 20px; width: 100%; }
 #tiktokButton {
 background-color: #010101;
 border: none; 
 border-radius: 50%; 
 width: 60px; 
 height: 60px; 
 cursor: pointer;
 display: flex; 
 align-items: center; 
 justify-content: center;
 box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

#tiktokButton img {
  width: 30px;
 height: 30px;
 object-fit: contain;
}
 #tiktokButton:hover {
 transform: scale(1.1);
 transition: transform 0.2s;
}

#shareButton {
position: fixed;
bottom: 20px;
left: 10px;
background-color: #007BFF;
border: none; border-radius: 50%; width: 60px; height: 60px; cursor: pointer;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 4px 10px rgba(0,0,0,0.3); z-index: 1000; padding: 0;
transition: transform 0.2s;
}
#shareButton img { width: 30px; height: 30px; }
@media (max-width: 480px) {
  #shareButton {
    width: 50px;
    height: 50px;
  }
}
  #shareButton:hover {
 transform: scale(1.1);
 transition: transform 0.2s;
}
 /*__________________________________________________________________________________________________________________________*/