

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* navbar */
a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5vw 1.4vw;
    background-color: #13a9ff;
    color: white;
    width: 100%;
    position: fixed;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9vw;
    font-size: 1.2vw;
    color: white;
    padding-left: 5vw;

}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1vw;
    margin: 0;
    padding: 0.6vw;
    padding-right: 5vw;
    font-size: 0.9vw;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

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

.logo-icon {
    font-size: 24px;
}

/* header */

header {
    background-color: #333333;
    color: white;
    text-align: center;
    width: 100%;
    font-size: 4vw;
}

/* cards */

.section-title {
    text-align: center;
    font-size: 3.2vw;
    margin-top: 5vw;
    margin-bottom: 3vw;
    font-weight: bold;
}

.no_weight {
    font-weight: normal;
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0vw 0vw 5vw 0vw;
    gap: 3vw;
}

.card {
    background-color: white;
    border-radius: 1.3vw;
    box-shadow: 0 0.3vw 0.6vw rgba(0,0,0,0.1);
    overflow: hidden;
    width: 25vw;
    color: black;
    transition: all 0.2s;
}
a.card {
  text-decoration: none;
}
div.card:hover {
  box-shadow: 0 0.35vw 0.7vw #13a9ff56;

}

a.card:hover {
  scale: 1.06;
  box-shadow: 0 0.5vw 1vw rgba(0,0,0,0.25);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-title {
    padding: 2vw;
    font-size: 2.5vw;
    text-align: center;
}

.background{
    background-color: #e7e7e7;
    width: 100%;
    
}

.card-content{
    padding: 0 1.5vw 1vw 1.5vw;
    font-size: 1.1vw;
    text-align: center;
}

/*contatct form*/
.card-content-contacts {
    padding: 0 0vw 0vw 0vw;
    font-size: 1.1vw;
    text-align: center;
}
.background-contacts
{
    background-color: #c4c4c4;
    width: 100%;
}
/*galeries*/
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2vw;
  margin-bottom: 5vw;
}

.gallery-img {
  width: 20vw;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0.3vw 0.6vw rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}


/*noha*/
#footer{
    color: #f0f0f0bb;
    height: 5vh;
    width: 100%;
    background-color: #333;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    bottom: 0;
    left: 0;
}
.ft_left{
    text-align: left;
    flex: 1;
    padding-left: 8vw;
}
.ft_left a{
    text-decoration: none;
    color: inherit;
}


.card, .section-title {
  opacity: 0;
  transform: translateY(45px); 
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.card.animated, .section-title.animated {
  opacity: 1;
  transform: translateY(0);
}

.clock {
    font-size: 1vw;
    font-weight: bold;
    color: white;
    padding: 0;
    position: fixed;
    top: 1vw; /* adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.background-gallery {
    background-color: #dfdfdffb;
    width: 100%;
}
.background-rewiews {
    background-color: #d4d4d4ce;
    width: 100%;
}

 