@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── Variables ─── */
:root {
  --red: #cc0000;
  --red-bright: #ff0000;
  --white: #ffffff;
  --text-main: #111111;
  --text-muted: #666666;
  --border: #eeeeee;
  --shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* ─── Reset & Base ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #fcfcfc;
  color: var(--text-main);
  line-height: 1.5;
  display: flex;
  justify-content: center;
  margin: 0; 
  padding: 0;
  overflow-x: hidden;
}

.fade-in { animation: fadeIn 0.4s ease forwards; }
.fade-out { animation: fadeOut 0.4s ease forwards; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}


/* ─── Main Container ─── */
.main-wrapper {
  width: 100%;
  max-width: 1050px;
  background: var(--white);
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  margin-top: 0; /* Ensure no top margin */
}

/* ─── Header ─── */
.header {
  padding: 0px 40px; /* Removed vertical padding */
  display: flex;
  justify-content: center; /* Centered the large logo */
  align-items: center;
  width: 100%;
}

.logo-img {
  height: 250px; /* Reduced slightly to save space, but still big */
  max-width: 100%;
  object-fit: contain;
  width: auto;
  display: block;
  margin-top: -20px; /* Pull logo upward if there is blank space in image */
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

.btn-post-red {
  background: var(--red);
  color: white;
  padding: 12px 25px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(204,0,0,0.2);
}

/* ─── Top Center Section (Search & Breadcrumbs) ─── */
.search-center-area {
  padding: 0px 40px 20px; /* Reduced top padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin-bottom: 15px;
}

.search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-size: 18px;
}

.search-input {
  width: 100%;
  padding: 14px 20px 14px 50px;
  border: 2px solid var(--red-bright);
  border-radius: 15px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.breadcrumb-red {
  font-size: 15px;
  color: var(--red);
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 6px;
  margin-bottom: 25px;
}

.breadcrumb-red a {
  text-decoration: none;
  color: inherit;
}
.breadcrumb-red span { color: #333; } /* For the slash */

/* ─── Live Sex Button ─── */
.live-btn-container {
  padding: 0 40px;
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-live-red {
  background: var(--red-bright);
  color: white;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(255,0,0,0.25);
}

/* ─── Main Grid Layout ─── */
.layout-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  padding: 0 40px 40px;
}

.main-h1 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: left;
}

.main-h1 strong { color: var(--red); }

/* ─── Listing Card ─── */
.listing-card {
  background: var(--white);
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 25px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #f8f8f8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.listing-card:hover { 
  transform: translateY(-5px) scale(1.02); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}


.card-thumb {
  width: 170px;
  height: 170px;
  flex-shrink: 0;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.listing-card:hover .card-thumb img {
  transform: scale(1.15); /* Smooth zoom on image only */
}


.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title-text {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #111;
}

.card-desc-text {
  font-size: 12px;
  color: #555;
  margin-bottom: 12px;
}

.card-metadata {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 15px;
}

.card-foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.tag-pills {
  display: flex;
  gap: 8px;
}

.tag-pill-red {
  background: var(--red);
  color: white;
  padding: 7px 18px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}

.contact-icons-row {
  display: flex;
  gap: 8px;
}

.contact-btn-circle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.contact-btn-circle.green { background: #25d366; }
.contact-btn-circle.black { background: #000; }
.contact-btn-circle.blue { background: #0088cc; }

/* ─── Sidebar Ads ─── */
.sidebar-box-red {
  background: var(--red);
  color: white;
  border-radius: 35px;
  padding: 35px 25px;
  height: fit-content;
}

.sidebar-title-h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 25px;
}

.sidebar-links-list {
  list-style: none;
}

.sidebar-links-list li {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-links-list li i { font-size: 14px; }

/* ─── Category Section ─── */
.bottom-category-grid {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.category-card-item {
  background: var(--white);
  padding: 35px 20px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s;
}

.category-card-item:hover { transform: translateY(-5px); }

.category-card-item i {
  font-size: 40px;
  color: var(--red);
  margin-bottom: 15px;
}

.category-card-item span {
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.3;
}

/* ─── Profile Detail View (Premium Redesign) ─── */
#profile-view {
  display: none;
  background: #ffffff;
  min-height: 100vh;
  padding-bottom: 50px;
}

.profile-container-inner {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
}

.back-btn-float {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.back-btn-float:hover { transform: scale(1.1); }

.hero-section {
  width: 100%;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transform-origin: center center;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.floating-profile-card {
  width: 90%;
  max-width: 850px;
  background: white;
  margin: -100px auto 40px;
  position: relative;
  border-radius: 35px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.f-card-left { flex: 1; }
.f-name { font-size: 36px; font-weight: 800; color: #111; margin-bottom: 5px; }
.f-id { font-size: 15px; color: #999; font-weight: 700; margin-bottom: 25px; }
.f-id span { color: var(--red); }

.f-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 400px;
  width: 100%;
}
.f-info-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.f-label { font-size: 14px; color: #777; font-weight: 500; }
.f-value { font-size: 14px; color: #111; font-weight: 700; }

.f-card-right { display: flex; gap: 15px; }
.contact-sq-btn {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.contact-sq-btn:hover { transform: scale(1.15) rotate(5deg); }
.contact-sq-btn.call { background: var(--red); }
.contact-sq-btn.wa { background: #25d366; }
.contact-sq-btn.tg { background: #0088cc; }

.p-section-container {
  padding: 0 40px;
  margin-bottom: 50px;
}

.p-section-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.p-section-title::before {
  content: '';
  width: 5px;
  height: 25px;
  background: var(--red);
  border-radius: 5px;
}

.p-bio-text {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  text-align: justify;
}

.p-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.p-capsule {
  padding: 10px 24px;
  background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  transition: all 0.3s;
  cursor: default;
}
.p-capsule.red-grad {
  background: linear-gradient(135deg, var(--red), #8b0000);
  color: white;
  box-shadow: 0 5px 15px rgba(204,0,0,0.25);
}
.p-capsule:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

.more-ads-section {
  background: #fcfcfc;
  padding: 60px 40px;
}
.more-ads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

@media (max-width: 850px) {
  .floating-profile-card { flex-direction: column; text-align: center; padding: 30px; }
  .f-card-right { margin-top: 30px; justify-content: center; }
  .f-info-grid { margin: 0 auto; grid-template-columns: 1fr; }
  .more-ads-grid { grid-template-columns: repeat(1, 1fr); }
  .hero-section { height: 320px; }
  .hero-section img { transform: scale(1); }
}

/* ─── Content SEO ─── */
.seo-block-area {
  padding: 20px 40px 40px;
}

.seo-block-area h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 20px;
}

.seo-block-area p {
  font-size: 16px; /* Increased font size */
  color: #333;
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: justify;
}

/* ─── Footer ─── */
.footer-site {
  padding: 20px 40px; /* Reduced top/bottom space */
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo-center {
  margin-bottom: 25px;
}

.footer-logo-center img {
  height: 300px;
}

.footer-nav-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-nav-links a {
  font-size: 17px; /* Increased font size */
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.footer-copyright {
  font-size: 15px; /* Increased font size */
  color: #333;
  font-weight: 500;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .layout-grid { grid-template-columns: 1fr; }
  .bottom-category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .header { padding: 15px 20px 0; }
  .logo-img { height: auto; max-height: 120px; margin-top: 0; }
  .search-center-area { padding: 10px 20px 20px; }
  .live-btn-container { padding: 0 10px; justify-content: center; flex-wrap: nowrap; gap: 10px; }
  .btn-live-red { padding: 10px 12px; font-size: 13px; gap: 6px; white-space: nowrap; }
  .layout-grid { padding: 0 20px 30px; }
  .bottom-category-grid { padding: 20px; gap: 15px; }
  .seo-block-area { padding: 20px; }
  .footer-site { padding: 20px; }
  .footer-nav-links { flex-wrap: wrap; gap: 15px; justify-content: center; }
  
  .listing-card { flex-direction: column; padding: 15px; }
  .card-thumb { width: 100%; height: auto; aspect-ratio: 4/3; }
  .card-foot-row { flex-wrap: wrap; gap: 12px; margin-top: 15px; justify-content: center; }
  .main-h1 { font-size: 22px; text-align: center; }
  .breadcrumb-red { font-size: 13px; }
  .tag-pills { flex-wrap: wrap; justify-content: center; }
}

/* ─── Informational Pages (Contact, Terms, Privacy) ─── */
body.info-page-bg {
  background-color: #eaeaea;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.info-card-container {
  background: var(--white);
  width: 100%;
  max-width: 750px;
  padding: 50px 60px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-blue-border {
  border: 2px solid #00a8ff;
}

.info-card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.info-card-header .logo-left img {
  height: 250px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
  display: block;
  margin-top: -20px;
}

.info-nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-nav-right a {
  text-decoration: none;
  color: #111;
  font-size: 13px;
  font-weight: 500;
}

.btn-post-add-small {
  background: var(--red-bright);
  color: white !important;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 700 !important;
  text-transform: uppercase;
  font-size: 12px !important;
  box-shadow: 0 2px 5px rgba(255,0,0,0.3);
}

.info-content h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.info-content p, .info-content .contact-item {
  font-size: 13px;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.6;
  text-align: justify;
}

.info-content .contact-item {
  text-align: left;
}

.info-card-footer {
  margin-top: 60px;
  text-align: center;
}

.info-card-footer img.footer-logo-img {
  height: 40px;
  margin-bottom: 15px;
  display: inline-block;
}

.info-footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.info-footer-links a {
  font-size: 11px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.info-copyright {
  font-size: 11px;
  color: #111;
}

@media (max-width: 600px) {
  .info-card-container {
    padding: 30px 20px;
  }
  .info-card-header {
    flex-direction: column;
    gap: 20px;
  }
  .info-card-header .logo-left img {
    height: auto;
    max-height: 120px;
    margin-top: 0;
  }
  .info-footer-links {
    flex-wrap: wrap;
  }
}

