/* About us Html */
.custom-hero-section {
  padding: 60px 0;
}

.custom-hero-section h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 70px;
}

.custom-hero-section p {
  font-size: 1.2rem;
  color: #555;
}

.custom-offers-list {
  list-style-type: none;
  padding: 0;
}

.custom-offers-list li {
  display: inline;
  align-items: center;
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

.icon-text {
  margin-right: 10px;
}

.custom-offers-list li i {
  color: #d4a574;
  font-size: 1.2rem;
}

.custom-image-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 40px;
}

.custom-image-container img {
  width: 100%;
  border-radius: 10px;
  max-width: 300px;
  height: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

h2 {
  color: #5d5c5c;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.img-container {
  margin-bottom: 15px;
}

/*About Us*/

.about-us-image {
  background: url("../img/image3.jpg") rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
  background-repeat: none;
  background-blend-mode: multiply;
  height: 30vh;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 10px;
}

.flag-icon {
  width: 24px;
  height: 16px;
  object-fit: cover;
  margin-right: 5px;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

i {
  color: #d4a574;
}

/* Reviews */

.reviews {
  background-color: #eaeaea;
}

.card {
  border: 1px solid #ddd;
  border-radius: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
}

.card .d-flex {
  margin-top: 10px;
}

.card img {
  object-fit: cover;
}

h2 {
  font-weight: bold;
}

small {
  color: #777;
}

/* Gallery */

.gallery-section {
  padding: 80px 0;
}

.gallery-title {
  font-size: 5rem;
  font-weight: 300;
  color: #e9ecef;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-align: center;
}

.gallery-subtitle {
  color: #6c757d;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.gallery-link {
  color: #6c757d;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.gallery-link:hover {
  color: #495057;
}

.gallery-grid {
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  height: 300px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.view-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #9e9e9e;
  text-decoration: none;
  font-weight: 600;
}

.view-link:hover {
  color: #d4a574;
}

/* About us */

.about-us {
  padding: 50px 0;
}
.about-us h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
.about-us p {
  font-size: 1.125rem;
  color: #555;
}
.about-us .image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.about-us .content {
  padding-right: 50px;
}
.read-more-btn {
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #d4a574;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 5px;
}
.read-more-btn:hover {
  background-color: #c19660;
  color: white;
}
