/*
Theme Name: Dark Seduction Theme Pro
Description: Responsive dark seductive WordPress theme with styled menu bar, homepage sidebar, and dedicated model profile layout.
Version: 6.2.3
Author: OpenAI
*/

:root{
  --bg:#0a0a0a;
  --card:#151515;
  --text:#fff;
  --muted:#b7b7b7;
  --accent:#ff2a6d;
  --border:#2b2b2b;
  --radius:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  background:
    radial-gradient(circle at top center,rgba(255,42,109,.14),transparent 28%),
    linear-gradient(180deg,#090909,#0d0d0d 35%,#0a0a0a);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.65;
}

a{
  color:var(--accent);
  text-decoration:none;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

.wrap{
  width:min(1240px,calc(100% - 32px));
  margin:0 auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(10,10,10,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}

.site-topbar{
  height:5px;
  background:linear-gradient(90deg,rgba(255,42,109,.2),rgba(255,42,109,.7),rgba(255,124,164,.25));
}

.site-branding{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:18px 0;
}

.logo-text a{
  color:#fff;
  font-weight:700;
  font-size:1.35rem;
}

.main-nav ul{
  display:flex;
  gap:12px;
  list-style:none;
  margin:0;
  padding:0;
  flex-wrap:wrap;
}

.main-nav a{
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  transition:all .2s ease;
}

.main-nav a:hover{
  background:rgba(255,42,109,.12);
  color:var(--accent);
}

.main-nav .current-menu-item>a,
.main-nav .current_page_item>a,
.main-nav .current-menu-ancestor>a,
.main-nav .current-page-ancestor>a{
  background:linear-gradient(180deg,rgba(255,42,109,.2),rgba(255,42,109,.07));
  color:var(--accent);
  box-shadow:inset 0 0 0 1px rgba(255,42,109,.28);
}

/* Panels */
.hero-box,
.panel{
  background:linear-gradient(180deg,#151515,#101010);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 12px 36px rgba(0,0,0,.34);
}

.hero-box{
  padding:26px;
  margin:0 0 22px;
}

.hero-box h1{
  margin:0 0 8px;
  color:var(--accent);
  font-size:2rem;
}

.hero-box p{
  margin:0;
  color:var(--muted);
}

/* Grid cards */
.model-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  padding:10px 0 34px;
}

.model-card{
  background:linear-gradient(180deg,#151515,#111);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.34);
  transition:transform .2s ease, box-shadow .2s ease;
}

.model-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 38px rgba(255,42,109,.22);
}

.model-card-thumb{
  aspect-ratio:3/4;
  overflow:hidden;
  background:#202020;
}

.model-card-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:var(--awe-focal, top center);
}

.model-card-body{
  padding:14px;
}

.model-card h3{
  margin:0 0 8px;
  font-size:1rem;
  color:#fff;
  text-align:center;
}

.model-card h3 a{
  display:block;
  text-align:center;
}

/* Main page layout */
.content-wrap{
  display:grid;
  grid-template-columns:minmax(0,1fr) 348px;
  gap:26px;
  padding:20px 0 20px;
}

/* Content Top Links Menu */
.content-top-links-wrap{
  background:linear-gradient(180deg,#151515,#101010);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 12px 36px rgba(0,0,0,.34);
  padding:12px 16px;
  margin:0 0 18px;
}

.content-top-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  list-style:none;
  margin:0;
  padding:0;
}

.content-top-links li{
  margin:0;
  padding:0;
}

.content-top-links a{
  display:inline-block;
  color:#fff;
  background:rgba(255,42,109,.10);
  border:1px solid rgba(255,42,109,.25);
  border-radius:999px;
  padding:8px 14px;
  font-weight:700;
}

.content-top-links a:hover{
  background:var(--accent);
  color:#fff;
}

.panel{
  padding:22px;
}

/* Profile layout */
.profile-layout{
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:26px;
}

/* FEATURED IMAGE MATCH LEFT GALLERY */
.media-left .featured-wrap{
  aspect-ratio:3/4;
  overflow:hidden;
  border-radius:14px;
  background:#202020;
}

.media-left .featured-wrap img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:top center;
  border-radius:14px;
}

.featured-caption{
  text-align:center;
}

.media-left .left-stack{
  display:grid;
  gap:14px;
  margin-top:14px;
}

.left-natural img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
}

/* Center content */
.media-center h1{
  margin-top:0;
  color:var(--accent);
  font-size:2rem;
}

/* Video */
.video-box{
  width:100%;
  max-width:100%;
  background:#090909;
  border-radius:14px;
  overflow:hidden;
  min-height:350px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#888;
}

.video-box video,
.video-box iframe{
  width:100%;
  height:auto;
  aspect-ratio:600 / 350;
  display:block;
  border:0;
  background:#000;
}

/* Shares */
.top-shares,
.lower-shares,
.bottom-shares{
  margin:14px 0;
}

/* Meta/details */
.meta-list{
  padding-left:18px;
}

.awe-chat-btn{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
}

/* Portrait galleries */
.additional-portraits{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-top:28px;
}

.additional-portraits .portrait-card{
  aspect-ratio:3/4;
  overflow:hidden;
  border-radius:14px;
  background:#202020;
}

.additional-portraits img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
}

/* Bottom 6-image gallery on wide screens */
.bottom-gallery-full .additional-portraits,
.bottom-gallery-full .bottom-gallery-grid,
.bottom-gallery-full .additional-portraits.bottom-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

/* Rating/status row polish */
.profile-rating-status-row{
  align-items:center;
}

/* Related title */
.related-title{
  margin:0 0 16px;
  color:var(--accent);
}

/* Sidebar */
.widget-area .sticky-sidebar{
  position:sticky;
  top:0px;
}

.widget-area .panel,
.widget-area .wp-block-group{
  width:100%;
}

/* Generic pages */
.archive-title{
  margin:0;
  padding:28px 0 10px;
  color:var(--accent);
}

.entry-page{
  padding:28px 0;
}

.awe-global-template{
  margin-bottom:20px;
}

.awe-global-template-below{
  margin-top:20px;
}

/* Footer */
.site-footer{
  border-top:1px solid var(--border);
  margin-top:40px;
  background:#101010;
}

.site-footer .wrap{
  padding:24px 0;
  text-align:center;
  color:var(--muted);
}

/* Hover polish for profile/gallery images */
.media-left img,
.additional-portraits img{
  transition:all .25s ease;
}

.media-left img:hover,
.additional-portraits img:hover{
  transform:scale(1.02);
  box-shadow:0 0 18px rgba(255,42,109,.35);
}

/* Responsive adjustments */
@media (max-width:1200px){
  .media-left{
    width:100%;
  }

  .media-left .featured-wrap{
    max-width:100%;
  }

  .media-center .video-box{
    width:100%;
    max-width:100%;
  }

  .media-center .video-box video,
  .media-center .video-box iframe{
    width:100%;
    height:auto;
  }
}


/* Make bottom 6-gallery single-column at 1000px and below */
@media (max-width:1000px){
  .bottom-gallery-full .additional-portraits,
  .bottom-gallery-full .bottom-gallery-grid,
  .bottom-gallery-full .additional-portraits.bottom-gallery-grid{
    grid-template-columns:1fr !important;
  }
}

@media(max-width:1100px){
  .model-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .content-wrap{
    grid-template-columns:1fr;
  }

  .widget-area .sticky-sidebar{
    position:static;
  }

  .profile-layout{
    grid-template-columns:1fr;
  }

  .media-left .featured-wrap{
    aspect-ratio:auto;
    height:auto;
    min-height:0;
  }

  .media-left .featured-wrap a{
    display:block;
    height:auto;
  }

  .media-left .featured-wrap img{
    width:100%;
    height:auto;
    object-fit:cover;
    object-position:top center;
  }
}

@media(max-width:700px){
  .main-nav ul{
    gap:8px;
  }

  .hero-box h1{
    font-size:1.6rem;
  }

  .model-grid,
  .additional-portraits{
    grid-template-columns:1fr;
  }

  .wrap{
    width:min(100%,calc(100% - 20px));
  }

  .site-branding{
    padding:14px 0;
    align-items:flex-start;
    flex-direction:column;
  }

  .video-box,
  .video-box video,
  .video-box iframe{
    min-height:240px;
  }
}

/* VIDEO DOTS FIX */
.video-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin:14px 0 0;
}

.video-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  border:2px solid #ffffff;
  background:transparent;
  cursor:pointer;
  padding:0;
  appearance:none;
  -webkit-appearance:none;
  outline:none;
}

.video-dot.active{
  background:#ffffff;
}

@media (max-width: 768px){
  .media-left .featured-wrap{
    aspect-ratio:auto;
    height:auto;
    min-height:0;
  }

  .media-left .featured-wrap img{
    width:100%;
    height:auto;
    object-fit:cover;
    object-position:top center;
  }
}

/* Desktop: keep logo/text left */
.site-logo,
.custom-logo-link,
.site-branding,
.site-title {
    text-align: left;
}

/* Mobile: center logo/text */
@media (max-width: 768px) {
    .site-logo,
    .custom-logo-link,
    .site-branding,
    .site-title {
        text-align: center !important;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .custom-logo-link img,
    .site-logo img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Desktop: keep logo/text left */
.site-logo,
.custom-logo-link,
.site-branding,
.site-title {
    text-align: left;
}

/* Mobile spacing between logo and menu */
@media (max-width: 768px) {

    /* Add space BELOW logo area */
    .site-branding {
        margin-bottom: 12px; /* adjust: 10–20px if needed */
    }

    /* Optional: add space ABOVE menu */
    .main-navigation,
    .primary-menu,
    nav {
        margin-top: 40px; /* adjust if needed */
    }

}

/* Center menu links on mobile */
@media (max-width: 768px) {

    /* Center the whole menu container */
    .main-navigation,
    .primary-menu,
    nav {
        text-align: center !important;
    }

    /* Make menu items inline and centered */
    .main-navigation ul,
    .primary-menu ul,
    nav ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding-left: 0;
    }

    /* Adjust individual menu items */
    .main-navigation li,
    .primary-menu li,
    nav li {
        display: inline-block;
        float: none;
        margin: 5px 10px;
    }

    .awe-watch-live-box{
        margin-bottom: 40px;
    }

    /* Space below only the Enter Live Chat button */
    .awe-watch-live-box a{
        display:inline-block;
        margin-bottom:100px;
    }
}