@charset "UTF-8";

/*
 * CockCleaners.css
 * Consolidated stylesheet — merges SinergyStyles.css, CleanerStyle.css, Verify.css
 * Replaces all three files with one clean reference.
 *
 * Usage in every page:
 *   <link href="css/CockCleaners.css" rel="stylesheet" type="text/css">
 *
 * TABLE OF CONTENTS
 * ─────────────────────────────────────────────────────
 *  1.  CSS Variables
 *  2.  Base / Reset
 *  3.  Typography
 *  4.  Backgrounds
 *  5.  Layout Utilities
 *  6.  Header & Navigation
 *  7.  Hero & Titles
 *  8.  Scene & Cleaner Cards
 *  9.  Gallery
 * 10.  Horizontal Scroll
 * 11.  Carousel
 * 12.  Countdown
 * 13.  Footer
 * 14.  Age Verification (Verify.css)
 * 15.  Responsive Breakpoints
 * ─────────────────────────────────────────────────────
 */

/* ═══════════════════════════════════════════════════════
   1. CSS VARIABLES
   ═══════════════════════════════════════════════════════ */
:root {
  --blue:        rgba(0, 3, 250, 1.00);
  --royal:       hsla(226, 100%, 49%, 1.00);
  --navy:        rgba(0, 35, 95, 1.00);
  --navy-dark:   rgba(1, 41, 248, 1.00);
  --deep-navy:   rgba(5, 46, 117, 1.00);
  --pink:        rgba(251, 116, 165, 1.00);
  --pink-light:  rgba(249, 142, 181, 1.00);
  --white:       rgba(253, 253, 253, 1.00);
  --white-50:    hsla(0, 0%, 99%, 1.00);
  --red:         hsla(359, 100%, 15%, 1.00);
  --black:       #000000;
  --slate:       slategray;
  --purple:      mediumpurple;
  --muted-bg:    hsla(324, 22%, 23%, 1.00);
  --sky:         hsla(208, 95%, 76%, 0.64);

  /* Font stack */
  --font-impact: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
  --font-body:   Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ═══════════════════════════════════════════════════════
   2. BASE / RESET
   ═══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--slate);
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

input[type="checkbox"] {
  transform: scale(1.5);
}

/* ═══════════════════════════════════════════════════════
   3. TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */

/* Main site title */
.SinergyTitle {
  color: var(--white-50);
  font-family: var(--font-impact);
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
  text-shadow: 1px 1px var(--royal);
  font-size: 8vw;
}

/* Section heading */
.SectionTitle {
  font-family: var(--font-impact);
  color: var(--white);
  font-weight: lighter;
  font-style: normal;
  text-shadow: 2px 2px var(--navy);
  padding-left: 30px;
  letter-spacing: 5px;
  padding-top: 5px;
  font-size: 7vw;
}

/* Section link (right-aligned beside section title) */
.SectionLink {
  color: var(--white);
  font-size: 4vw;
  vertical-align: middle;
  text-align: right;
  padding-right: 30px;
}

/* Scene title */
.SceneTitle {
  font-family: var(--font-impact);
  color: var(--blue);
  font-weight: lighter;
  font-style: normal;
  text-shadow: 1px 0 var(--pink-light);
  padding-left: 5px;
  letter-spacing: 3px;
  text-align: center;
  font-size: 7vw;
}

/* Scene description body text */
.SceneDescription {
  font-family: var(--font-body);
  color: var(--blue);
  padding: 0 5px;
  text-align: justify;
  font-size: 4vw;
  margin: 0 5px 7px;
}

/* Hero text — large viewport-scaled display text */
.hero-text {
  width: 100vw;
  margin: 0 auto;
  max-width: 100%;
  font-size: clamp(1.8rem, 5.5vw, 7vw);
  white-space: normal;
  overflow-wrap: break-word;
  font-family: var(--font-impact);
  color: var(--white);
  font-weight: lighter;
  font-style: normal;
  text-shadow: 2px 2px var(--navy);
  padding-left: 0;
  letter-spacing: 0.10em;
  padding-top: 10px;
  line-height: 0.92;
  text-align: center;
}

/* Mini hero — smaller scaled text */
.mini-hero-text {
  color: hsla(197, 94%, 87%, 1.00);
  font-weight: lighter;
  padding-left: 0;
  letter-spacing: 2px;
  padding-top: 0;
  font-size: clamp(1.1rem, 5vw, 4rem);
}

/* Full-width display text */
.full-width-text-container {
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

.full-width-text {
  display: inline-block;
  font-size: 10vw;
  text-transform: uppercase;
  padding: 2px;
}

/* Text size utilities */
.text-fill-small { font-size: 4vw; }
.text-fill-large { font-size: 10vw; }
.SinergyText     { font-size: 4vw; }

/* Related scene scroll label */
.RelatedSceneText {
  color: var(--white-50);
  text-shadow: 1px 1px var(--black);
  letter-spacing: 6px;
  font-family: var(--font-impact);
  font-size: 7.5vw;
}

/* ID / Model title bar */
.IDTitle {
  color: var(--white);
  font-family: var(--font-impact);
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 15px;
  text-shadow: 1px 1px var(--blue);
  width: auto;
  height: 63px;
  margin-top: 3px;
  vertical-align: middle;
  border: 3px solid var(--white);
}

/* Model name title bar */
.ModelTitle {
  text-align: center;
  font-family: var(--font-impact);
  background-color: var(--deep-navy);
  color: var(--white);
  letter-spacing: 4px;
  padding-top: 3px;
  border: medium solid var(--white);
  height: 63px;
  vertical-align: middle;
  padding-bottom: 15px;
}

/* Links header */
.LinksHeader {
  color: var(--white);
  font-family: var(--font-impact);
  text-shadow: 3px 3px var(--black);
  text-align: right;
  margin-top: -22px;
  margin-right: 0;
  margin-left: 0;
}

/* Cleaner links list */
.CleanerLinks {
  color: var(--white);
  font-size: 3vw;
  text-shadow: 1px 1px 1px #000, 3px 3px 5px blue;
  text-align: right;
  position: relative;
  padding-top: 6%;
  padding-right: 12px;
  list-style-type: none;
}

.CleanerLinks li a {
  color: var(--white);
  font-size: 5vw;
  vertical-align: top;
}

/* ═══════════════════════════════════════════════════════
   4. BACKGROUNDS
   ═══════════════════════════════════════════════════════ */
.PinkBackground    { background-color: var(--pink); }
.BlueBackground    { background-color: #0039FC; }
.RedBackground     { background-color: var(--red); }
.BlackBackground   { background-color: var(--black); }
.BrightRedBackground { background-color: firebrick; }
.PurpleBackground  { background-color: var(--purple); }
.MutedBackground   { background-color: var(--muted-bg); }
.ScrollBanner      { background-color: hsla(0, 0%, 0%, 0.80); }
.contact           { background-image: url(../images/Contact.JPG); }

.Returning {
  background-image: url(../ComingSoon.jpg);
  background-repeat: no-repeat;
  background-position: 0% 0%;
  background-size: cover;
}

.ComingSoon {
  background-image: url("../CummyGirls/SageHunter/Cover.JPG");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ═══════════════════════════════════════════════════════
   5. LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════ */
.Gap        { margin-top: 10px; }
.BottomGap  { margin-bottom: 10px; }
.Dashboard  { float: right; clear: right; }
.Message    { position: fixed; }

.Inline {
  display: inline-block;
  width: 80px;
  padding-top: 0;
}

.IDPanel {
  display: inline-block;
  margin: 5px;
  border-spacing: 0;
  border-collapse: separate;
}

.SectionLinkDiv {
  display: inline-block;
  float: right;
  margin-top: 10px;
}

.SectionTitleDiv {
  display: inline-block;
  float: left;
}

.ScrollDiv {
  display: inline-block;
  float: left;
}

/* Bootstrap collapse arrow flip */
[data-toggle="collapse"][aria-expanded="true"] span {
  display: inline-block;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

[data-toggle="collapse"][aria-expanded="false"] span {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

/* ═══════════════════════════════════════════════════════
   6. NAVIGATION & BANNERS
   ═══════════════════════════════════════════════════════ */
.bannerSites {
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.AdBanners {
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.CategoryLink {
  border: thin solid var(--white);
}

/* ═══════════════════════════════════════════════════════
   7. HERO & TITLES
   (see Typography section above)
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   8. SCENE & CLEANER CARDS
   ═══════════════════════════════════════════════════════ */
.SceneCover {
  display: inline-block;
  margin: 5px;
  border: thin solid var(--white);
}

.CleanerCard {
  padding: 5px 6px 6px;
  border: thin solid var(--white);
}

.cleaninglist {
  padding-top: 5px;
  padding-bottom: 10px;
  font-weight: bold;
}

.ComingSoonInfo { padding-top: 130px; }

/* ═══════════════════════════════════════════════════════
   9. GALLERY
   ═══════════════════════════════════════════════════════ */
.GalleryImage {
  padding: 5px;
  margin: 0;
  width: 100%;
  height: auto;
}

.mySlides { display: none; }

/* ═══════════════════════════════════════════════════════
   10. HORIZONTAL SCROLL
   ═══════════════════════════════════════════════════════ */
.HorizontalScroll {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  clear: both;
}

.ScollLogo {
  height: 9vw;
  padding-left: 10px;
  padding-top: 2px;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════
   11. CAROUSEL
   ═══════════════════════════════════════════════════════ */
.HeaderCarousel {
  width: 100%;
  height: auto;
  min-height: 350px;
  max-height: 800px;
  margin: 0 auto 10px;
  overflow: hidden;
}

.HeaderCarousel .carousel-inner,
.HeaderCarousel .carousel-item,
.HeaderCarousel picture,
.HeaderCarousel img {
  width: 100%;
  height: 100%;
}

.HeaderCarousel img {
  object-fit: contain;
  object-position: center;
  background-color: #000;
}

.carousel-fade .carousel-item {
  transition: opacity 1.2s ease-in-out;
}

.HeaderCarousel .carousel-inner {
  position: relative;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0 !important;
  opacity: 0;
  transition: opacity 0s 1.2s;
}

@media (min-width: 768px) {
  .HeaderCarousel img {
    object-fit: contain;
  }
}

/* ═══════════════════════════════════════════════════════
   12. COUNTDOWN
   ═══════════════════════════════════════════════════════ */
.CountdownText {
  color: var(--white);
  position: static;
  padding-top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  background-color: hsla(239, 100%, 49%, 1.00);
  text-decoration: overline;
  font-size: medium;
}

.CountDownBox {
  color: var(--white-50);
  font-family: var(--font-impact);
  text-align: center;
  background-color: var(--royal);
  height: 300px;
  font-size: 60px;
  vertical-align: middle;
  width: 80px;
}

/* ═══════════════════════════════════════════════════════
   13. FOOTER
   ═══════════════════════════════════════════════════════ */
.CleanFooter {
  background-color: var(--navy-dark);
  font-family: var(--font-impact);
  text-align: center;
  color: var(--white);
  margin-bottom: 50px;
}

.CleanFooter h1 a,
.CleanFooter h1 a:hover {
  color: var(--white-50);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════
   14. AGE VERIFICATION GATE (from Verify.css)
   ═══════════════════════════════════════════════════════ */

/* Warning text block */
.warning {
  color: var(--white-50);
  font-family: var(--font-impact);
  text-align: center;
  text-shadow: 2px 2px hsla(239, 100%, 49%, 1.00);
  letter-spacing: 7px;
  word-spacing: 19px;
}

/* Entry row (the blue bar with Enter/Exit buttons) */
.entryrow {
  background-color: var(--royal);
  border: thick solid var(--white-50);
}

/* Exit button */
.exitbutton {
  text-align: center;
  font-family: var(--font-impact);
  color: var(--white-50);
  font-size: 6vw;
  letter-spacing: 12px;
  text-shadow: 1px 1px hsla(239, 100%, 49%, 1.00);
  box-shadow: 0 0;
}

/* Enter button */
.enterbutton {
  text-align: center;
  font-family: var(--font-impact);
  color: var(--white-50);
  font-size: 6vw;
  letter-spacing: 12px;
  text-shadow: 1px 1px hsla(239, 100%, 49%, 1.00);
  box-shadow: 0 0;
}

/* Hover states */
.col-6.exitbutton.entryrow a .btn.btn-lg.exitbutton:hover {
  color: hsla(359, 100%, 49%, 0.98);
}

.col-6.enterbutton.entryrow a .btn.btn-lg.enterbutton:hover {
  color: hsla(97, 98%, 50%, 1.00);
}

/* Message box */
.message {
  text-align: center;
  color: var(--white-50);
  background-color: var(--sky);
  padding: 20px;
}

/* Parental links inline list */
.parentlinks {
  display: inline;
}

/* ── Modal Overlay ── */
#modalOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
  z-index: 999;
  backdrop-filter: blur(3px);
  animation: cc-fadeIn 0.2s ease;
}

@keyframes cc-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes cc-slideUp {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

/* ── Modal Box ── */
#modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 32px 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  text-align: center;
  border-radius: 8px;
  width: 90%;
  max-width: 360px;
  animation: cc-slideUp 0.25s ease;
}

#modal h4 {
  font-family: var(--font-impact);
  font-size: 22px;
  color: var(--deep-navy);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

#modal p.modal-sub {
  font-size: 12px;
  color: #888;
  margin-bottom: 18px;
}

#modal label {
  font-size: 13px;
  color: #333;
  display: block;
  margin-bottom: 6px;
  text-align: left;
}

#modal input[type="date"] {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #c0d0ff;
  border-radius: 5px;
  font-size: 14px;
  color: var(--deep-navy);
  background: #f8f0ff;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.2s;
}

#modal input[type="date"]:focus {
  border-color: #0032b4;
}

#modal .error-msg {
  background: #fff0f6;
  border: 1px solid #ffb0d0;
  border-radius: 4px;
  color: #c0003a;
  font-size: 12px;
  padding: 8px 10px;
  margin-bottom: 12px;
  text-align: left;
}

#modal .btn-enter {
  width: 100%;
  background: linear-gradient(135deg, #0032b4, #001a6e);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 11px;
  font-family: var(--font-impact);
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.2s;
}

#modal .btn-enter:hover { opacity: 0.9; }

#modal .close-hint {
  font-size: 11px;
  color: #bbb;
  margin-top: 12px;
}

/* Remember me row */
.remember-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  text-align: left;
}

.remember-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0032b4;
  cursor: pointer;
  transform: none;
}

.remember-row label {
  font-size: 12px;
  color: #666;
  margin: 0;
  cursor: pointer;
}

/* Parental control links on verify page */
.parent-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.parent-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.parent-links li a:hover { color: var(--pink); }

.divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════════
   15. IMAGE LIGHTBOX MODAL
   Uses class="lightbox-img" on the img tag to completely
   avoid Bootstrap .modal-content interference
   ═══════════════════════════════════════════════════════ */

/* Trigger image */
.myImg {
  cursor: pointer;
  transition: 0.3s;
  display: inline;
}
.myImg:hover { opacity: 0.7; }

/* Lightbox overlay */
#imageModal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: hsla(241, 78%, 41%, 0.58);
}

/* Lightbox image */
.lightbox-img {
  display: block;
  width: 100%;
  border: 3px solid hsla(0, 0%, 100%, 1.00);
  background-color: var(--pink);
}

@keyframes zoom {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

/* Close button */
#imageModal .close {
  position: relative;
  top: auto;
  right: 20px;
  color: #f1f1f1;
  font-size: 7vw;
  font-weight: bold;
  transition: 0.3s;
  display: block;
  text-align: right;
  cursor: pointer;
}

#imageModal .close:hover,
#imageModal .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════
   16. RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════ */

/* Tablets ≥ 768px */
@media (min-width: 768px) {
  .CountDownBox { width: 120px; }
  .my-image     { height: 400px; }
}

/* Desktop ≥ 1024px */
@media (min-width: 1024px) {
  .CountDownBox { width: 160px; }
  .my-image     { height: 500px; }
}

/* Large screens ≥ 1400px */
@media (min-width: 1400px) {
  .CountDownBox { width: 200px; }
  .my-image     { height: 600px; }
}

/* Default image sizing (mobile first) */
.my-image {
  height: 300px;
  width: auto;
  display: inline-block;
  margin: 0 auto;
}
