
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fc;
  color: #333;
}

.navbar {
  background: linear-gradient(to left, #004d3b, #008060);
  color: white;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links li a, .nav-links li select {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  background: transparent;
  border: none;
}

.logo img {
  height: 45px;
}

.hero {
  text-align: center;
  padding: 40px 20px;
  background: url('https://www.transparenttextures.com/patterns/white-diamond.png');
  animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
  font-size: 32px;
  color: #004d3b;
}

.hero .images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.hero .images img {
  max-width: 180px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out;
}
.hero .images img:hover {
  transform: scale(1.08);
}

footer {
  background: linear-gradient(to right, #004d3b, #008060);
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 15px;
}

.reviews {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  background: #fff;
}

.review {
  min-width: 280px;
  background: #f1f1f1;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  scroll-snap-align: start;
  transition: transform 0.3s;
}
.review:hover {
  transform: translateY(-5px);
}
.stars {
  font-size: 20px;
  color: gold;
}
.text {
  font-style: italic;
  margin: 10px 0;
}
.name {
  text-align: end;
  font-weight: bold;
  color: #333;
}

#topBtn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #007B5E;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
