/* Experience It Section Styles */
.experience-section {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 152, 50, 0.1);
  position: relative;
  overflow: hidden;
}

.experience-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 152, 50, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.experience-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.experience-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff9933;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.experience-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.venue-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.venue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9933, #ff6b35);
}

.venue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.venue-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.venue-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  flex: 1;
}

.venue-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ff9933;
}

.star-rating {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffd700;
  font-size: 1rem;
}

.star.empty {
  color: #e0e0e0;
}

.venue-address {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.venue-address::before {
  content: '📍';
  font-size: 1rem;
}

.venue-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.venue-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.detail-label {
  font-size: 0.8rem;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 0.9rem;
  color: #333;
  font-weight: 500;
}

.specialties {
  margin-bottom: 1.5rem;
}

.specialties-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.specialty-tag {
  background: #fff5f0;
  color: #ff9933;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #ffe8d6;
}

.venue-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-primary {
  background: #ff9933;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-primary:hover {
  background: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 152, 50, 0.3);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #ff9933;
  padding: 0.8rem 1.5rem;
  border: 2px solid #ff9933;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-secondary:hover {
  background: #ff9933;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.rating-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.rating-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.rating-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.rating-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-average {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff9933;
}

.rating-count {
  color: #666;
  font-size: 0.9rem;
}

.user-rating {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.user-rating-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.8rem;
}

.rating-input {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rating-stars {
  display: flex;
  gap: 0.3rem;
}

.rating-star {
  font-size: 1.5rem;
  color: #e0e0e0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.rating-star:hover,
.rating-star.active {
  color: #ffd700;
}

.rating-comment {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  resize: vertical;
  min-height: 80px;
  font-family: inherit;
}

.rating-comment:focus {
  outline: none;
  border-color: #ff9933;
  box-shadow: 0 0 0 3px rgba(255, 152, 50, 0.1);
}

.submit-rating {
  background: #ff9933;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.submit-rating:hover {
  background: #ff6b35;
  transform: translateY(-1px);
}

.submit-rating:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .experience-section {
    margin: 2rem 0;
    padding: 1.5rem;
  }
  
  .experience-title {
    font-size: 2rem;
  }
  
  .venue-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .venue-details {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .venue-actions {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }
  
  .rating-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .rating-input {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .experience-section {
    padding: 1rem;
  }
  
  .venue-card {
    padding: 1rem;
  }
  
  .venue-name {
    font-size: 1.2rem;
  }
  
  .specialty-tags {
    gap: 0.3rem;
  }
  
  .specialty-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
  }
}

/* Animation for loading */
.venue-card.loading {
  opacity: 0.7;
  pointer-events: none;
}

.venue-card.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #ff9933;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success/Error Messages */
.rating-message {
  padding: 0.8rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
  text-align: center;
}

.rating-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.rating-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Map Integration Styles */
.map-container {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-weight: 500;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem 2rem;
  color: #666;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.empty-state-description {
  font-size: 1rem;
  line-height: 1.6;
}
