/*
|--------------------------------------------------------------------------
| style-models.css
| Escort Listing Page Styling (Compliant Version)
|--------------------------------------------------------------------------
| Author: Creations by Ansley (CBA)
| Version: 1.0
| Compatible: Laravel Blade Template
|--------------------------------------------------------------------------
*/

:root {
  --primary-color: #b07d33;
  --dark-brown: #432e1c;
  --bg-light: #f8f4ef;
  --text-color: #333;
  --border-color: #ddd;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  background: #fff;
  color: var(--text-color);
}

/* ----------------------------------------------
   Header Section / Hero Banner
------------------------------------------------*/
.hero-section {
  text-align: center;
  padding: 15px 10px 25px;
  background: #fff;
}

.verify-banner {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 18px 25px;
  border-radius: 5px;
  margin: 15px auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 950px;
}

.verify-banner h2 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-brown);
  margin: 0;
}

.verify-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 9px 20px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.verify-btn:hover {
  background: #926628;
}

/* ----------------------------------------------
   Section Titles & Descriptions
------------------------------------------------*/
.section-title {
  color: var(--dark-brown);
  font-weight: 700;
  font-size: 18px;
  margin: 5px 0;
}

.section-desc {
  font-size: 13px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.5;
}

/* ----------------------------------------------
   Escort Grid Cards
------------------------------------------------*/
/* Escort Grid Layout */
.escort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.escort-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.escort-card:hover {
  transform: translateY(-5px);
}

.escort-card img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.escort-info {
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid #eee;
}

.escort-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 5px 0;
  color: #333;
}

.escort-info p {
  font-size: 13px;
  color: #777;
}

/* Responsive */
@media (max-width: 992px) {
  .escort-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .escort-grid {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------------
   Pagination
------------------------------------------------*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 25px 0 40px;
}

.pagination .page-num {
  padding: 7px 12px;
  border: 1px solid #ccc;
  color: var(--dark-brown);
  text-decoration: none;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
}

.pagination .page-num.active,
.pagination .page-num:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ----------------------------------------------
   Status Section
------------------------------------------------*/
.status-section {
  background: #fafafa;
  padding: 25px 15px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.status-section h3 {
  text-align: center;
  font-size: 17px;
  color: var(--dark-brown);
  margin-bottom: 15px;
  font-weight: 700;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.status-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.status-card:hover {
  transform: translateY(-3px);
}

.status-card img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.status-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

/* ----------------------------------------------
   City Stats Section
------------------------------------------------*/
.city-stats {
  margin: 45px auto;
  max-width: 700px;
  text-align: center;
}

.city-stats ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.city-stats li {
  background: #f4f2ef;
  padding: 6px 12px;
  border-radius: 4px;
  color: var(--dark-brown);
  font-size: 13px;
  font-weight: 600;
}

.city-stats li span {
  background: var(--primary-color);
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  font-size: 12px;
}

.more-cities {
  display: inline-block;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 13px;
  transition: color 0.2s ease;
}

.more-cities:hover {
  color: #926628;
}

/* ----------------------------------------------
   Responsive Adjustments
------------------------------------------------*/
@media (max-width: 768px) {
  .verify-banner {
    flex-direction: column;
    text-align: center;
  }
  .escort-card img {
    height: 220px;
  }
  .status-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .escort-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 10px;
  }
  .status-grid {
    grid-template-columns: 1fr;
  }
}
