/* Models page styles */
.models-page {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  padding: 2rem 0;
}

/* Page header */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.page-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-description {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 60rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filter section */
.models-filters {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: none;
  color: #c6c6c6;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: normal;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: normal;
}

.filter-btn:hover {
  background: none;
  transform: none;
}

.filter-btn.active {
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
}

/* Models grid */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Model card */
.model-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.model-card:hover {
  transform: translateY(-0.4rem);
}

.model-image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 133%; /* 4:3 aspect ratio */
  overflow: hidden;
}

.model-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.model-card:hover .model-image {
  transform: scale(1.05);
}

.no-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-style: italic;
  font-size: 1.2rem;
}

/* Overlay */
.model-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 2rem;
  box-sizing: border-box;
  z-index: 5;
}

.model-card:hover .model-overlay {
  opacity: 1;
}

.model-details {
  text-align: center;
  max-width: 90%;
}

.model-details .model-name {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #fff;
}

.model-info {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.model-info li {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.5rem;
  text-align: left;
}

/* Clickable link */
.model-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  cursor: pointer;
}

/* No models message */
.no-models {
  text-align: center;
  padding: 4rem 2rem;
  color: #ccc;
  font-size: 1.2rem;
  grid-column: 1 / -1;
}

/* Mobile styles moved to mobile.css */

/* Additional Models Grid Styles */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.model-card {
  border-radius: 0.8rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
  transform: translateY(-0.4rem);
}

.model-card-image {
  position: relative;
  overflow: hidden;
}

.model-card-image img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.model-card:hover .model-card-image img {
  transform: scale(1.05);
}

.model-card-image .no-image {
  height: 30rem;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-style: italic;
}

.model-card-content {
  padding: 1.5rem;
}

.model-card .entry-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.model-card .entry-title a {
  color: #333;
  text-decoration: none;
}

.model-card .entry-title a:hover {
  color: #0073aa;
}

.model-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.model-card-specs .spec {
  background: #f0f0f0;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  color: #666;
}

.model-card-specs .spec.experience {
  background: #0073aa;
  color: white;
}

.entry-summary {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.6;
}

.model-card .entry-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 0.1rem solid #eee;
}

.model-card .read-more {
  color: #0073aa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.model-card .read-more:hover {
  color: #005a87;
}

.model-card .hourly-rate {
  font-weight: bold;
  color: #0073aa;
}
