﻿.page-container{
  background: linear-gradient(to bottom, #d3d3d3, #ffffff);
}

.profile-info{
}

.empty-container{
  width: 100%;
  height: 340px;
}

.profile-info-container{
  margin-left: 10px;
  transform: translateX(90px) translateY(70px);
}

.custom-rating-box img{
  width: 16px;
  height: 16px;
  margin-right: 5px;
}

.custom-rating-box span{
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.custom-rating-box {
  display: flex;
  align-items: center;
}

.profile-name{
  font-size: 32px;
  font-weight: bold;
}

.profile-avatar{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 241px;
  height: 214px;
  transform: translateX(90px) translateY(-75px);
  border-radius: 20px 0 20px 0;
}

.profile-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0 20px 0;
}

.change-image-button{
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background-color: #e0e0e0;
  border: none;
}

.profile-description-text{
  font-size: 20px;
  font-weight: 500
}

.contact-vendor-container{
  margin-right: 90px;
}

@media (max-width: 500px) {
  .contact-vendor-container{
    margin-right: 0;
  }
}

@media (max-width: 980px) {
  .profile-info-container,
  .profile-avatar {
    transform: none !important;
    margin-left: 0 !important;
    margin-right: -142px;
  }

  .profile-name { font-size: 26px !important; }
  .profile-info-container { padding: 40px; }
  .profile-avatar { display: none; }
}

.profile-description{
  padding: 0 120px 0 120px;
}

@media (max-width: 992px) {
  .profile-description { padding: 10px 20px 10px 20px; }
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: bold;
  font-size: 23px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 3px solid black;
  margin: 40px 10px;
}

/*events*/
.event-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1), 3px 4px 10px rgba(0,0,0,0.1);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
  width: 100%;
  height: 233px;
}
.event-card:hover {
  transform: translateY(-5px);
}

.event-img {
  width: 90%;
  height: 120px;
  object-fit: cover;
  margin-left: auto;
  border-bottom-left-radius: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.event-body {
  padding: 15px;
  flex-grow: 1;
  min-width: 0;
}

.event-title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-date, .event-location {
  font-size: 0.85rem;
  color: #777;
}

.event-price {
  background-color: #e50914;
  color: white;
  text-align: center;
  padding: 8px;
  font-weight: 600;
}

.event-title a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-location {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*Reviews*/
.reviews-heading {
  font-size: 23px;
  margin-left: 10px;
  margin-bottom: 10px;
  font-weight: bold
}

.rating-bars .bar {
  height: 10px;
  background: #e0e0e0;
  border-radius: 3px;
  margin-bottom: .5rem;
  overflow: hidden;
}

.rating-bars .bar .fill {
  height: 100%;
  background: #e11;
}

.quote {
  font-style: italic;
  line-height: 1.6;
}

.quote::before, .quote::after { content: "“"; }
.quote::after { content: "”"; }

@media (max-width: 992px) {
  .featured-card { margin-top: 1rem; }
}

.banner-image .edit-btn {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.banner-image:hover .edit-btn {
  opacity: 1;
}

.profile-avatar .edit-btn {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-avatar:hover .edit-btn {
  opacity: 1;
}

.banner-image .edit-btn {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.banner-image:hover .edit-btn {
  opacity: 1;
}

.listing-button{
  display: none;
}

@media (min-width: 992px) {
  .custom-card-width {
    flex: 0 0 22%;
    max-width: 20%;
  }
}