/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Sans+Pro:wght@400;600&display=swap');

/* Restaurant detail container */
.restaurant-detail {
  padding-top: 60px;
  background-color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  color: #2c3e50;
}

/* Content sections */
.restaurant-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Main heading */
.restaurant-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.3;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Article metadata */
.article-meta {
  display: flex;
  gap: 20px;
  justify-content: center;
  color: #666;
  margin-bottom: 40px;
  font-size: 0.9rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

/* Main image styles */
.main-image {
  margin: 0 -20px 40px;
  border-radius: 0;
  height: 500px;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Image overlay gradient */
.main-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
}

/* Image caption styles */
.main-image .image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  background: none;
  z-index: 1;
  padding: 20px;
  font-style: normal;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Additional images */
.store-image,
.interior-image {
  height: 400px;
  margin: 40px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.store-image img,
.interior-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Caption styles */
.image-caption {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  padding: 15px;
  background: #f8f9fa;
  font-style: italic;
}

/* Article text content */
.article-text {
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-text p {
  margin-bottom: 25px;
}

/* Article subheadings */
.article-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 50px 0 25px;
  position: relative;
  padding-bottom: 15px;
}

/* Subheading decoration */
.article-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #e67e22;
}

/* Decorative quote mark */
.article-text::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: rgba(230,126,34,0.1);
  position: absolute;
  left: -20px;
  top: -40px;
  line-height: 1;
}

/* Restaurant information box */
.restaurant-info {
  margin-top: 60px;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

/* Restaurant info heading */
.restaurant-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

/* Restaurant info heading decoration */
.restaurant-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #e67e22;
}

/* Restaurant info text */
.restaurant-info p {
  margin-bottom: 15px;
  color: #2c3e50;
  font-size: 1rem;
  line-height: 1.6;
}

/* Restaurant info highlights */
.restaurant-info strong {
  color: #e67e22;
  font-weight: 600;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Selection style */
::selection {
  background: #e67e22;
  color: white;
}

/* Add responsive styles */
@media screen and (max-width: 768px) {
  .main-image {
    height: 300px;
  }
  
  .store-image,
  .interior-image {
    height: 250px;
  }
}

/* Dish list styles - specific to restaurant-page3 */
.dish-list {
  margin: 30px 0;
}

.dish-list h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #2c3e50;
  margin: 25px 0 15px;
}

.dish-list p {
  margin-left: 20px;
  margin-bottom: 20px;
}

/* Visit reasons section - specific to restaurant-page5 */
.visit-reasons {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  border-left: 4px solid #e67e22;
}

.visit-reasons p {
  margin-bottom: 15px;
}

.visit-reasons p:last-child {
  margin-bottom: 0;
}

.visit-reasons strong {
  color: #2c3e50;
  font-weight: 600;
}