body {
  background: #0d0d0d !important;
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
}

.navbar { background: #111; }
.navbar {
background-color: #0e0e0e !important;
transition: all 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  max-height: 50px;
  height: auto;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}


.navbar-nav .nav-link {
font-size: 0.95rem;
transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
color: #ff6ec4 !important; /* Light neon accent */
}

.navbar-toggler {
outline: none !important;
}

.hero {
  position: relative;
  /*background: url('/wp-content/themes/ai-fashion-portfolio-theme/images/header.webp') center center/cover no-repeat;*/
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  }
.hero h1 {
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.5vw, 3px);
  position: relative;
  z-index: 2;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
  }
  

  .hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* adjust opacity as needed */
  z-index: 1;
  }
  


/* Hover Effects */
.img-hover {
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
}

.tech-img {
  transition: transform 0.6s ease;
}

.tech-img:hover {
  transform: rotateY(10deg);
}

.gallery-img {
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
}

.gallery-img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.video-img {
  transition: transform 0.4s, filter 0.4s;
}

.video-img:hover {
  filter: brightness(1.3);
  transform: scale(1.03);
}

.section-title {
  text-align: center;
  margin: 60px 0 30px;
}

.footer {
  background-color: #111;
  padding: 30px 0;
  text-align: center;
  color: #aaa;
}

.model-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
  position: relative;
  }

  .model-img-wrapper {
  width: 100%;
  height: 320px; /* or whatever height fits your design */
  overflow: hidden;
  position: relative;
  }

  .model-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
      }

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

      .model-meta {
      transition: transform 0.4s ease;
      }

      .model-card:hover .model-meta {
      transform: translateY(-5px);
      }

#subscribe input[type="email"] {
max-width: 350px;
border: none;
padding: 10px;
}

#subscribe .btn {
padding: 10px 20px;
font-weight: 500;
}

.modern-footer {
background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
color: #ddd;
}

.footer-title {
font-weight: 600;
margin-bottom: 1rem;
color: #fff;
text-transform: uppercase;
letter-spacing: 1px;
}

.footer-links li a {
color: #bbb;
text-decoration: none;
display: block;
margin-bottom: 0.5rem;
transition: color 0.3s ease;
}

.footer-links li a:hover {
color: #fff;
}

.social-icons a svg {
transition: fill 0.3s ease;
margin: 0px 8px;
}

.social-icons a:hover svg {
fill: #fff;
}

.footer-divider {
border-color: rgba(255, 255, 255, 0.1);
margin-top: 2rem;
}

.section-title {
font-size: 2.5rem;
font-weight: 700;
text-transform: uppercase;
position: relative;
display: inline-block;
margin-bottom: 2rem;
color: #f8f9fa;
letter-spacing: 2px;
text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.1);
}

.section-title::after {
content: '';
width: 60%;
height: 4px;
background: linear-gradient(90deg, #ff6ec4, #7873f5);
position: absolute;
left: 0;
bottom: -10px;
border-radius: 2px;
}
input.form-control {
border-radius: 30px;
padding-left: 20px;
}

.btn-primary {
border-radius: 30px;
}

.parallax-subscribe {
background: url('/wp-content/themes/ai-fashion-portfolio-theme/images/footer.webp') center center / cover no-repeat fixed;
min-height: 300px;
position: relative;
z-index: 1;
}

.parallax-subscribe::before {
content: "";
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0, 0, 0, 0.6); /* dark overlay for text readability */
z-index: -1;
}

.parallax-subscribe input.form-control {
border-radius: 30px;
padding-left: 20px;
}

.parallax-subscribe .btn-primary {
border-radius: 30px;
}



.subpage-hero {
height: 18vh;
min-height: 100px;
background: linear-gradient(120deg, #3b0a45, #7a1d91, #5e0b60);
background-size: 400% 400%;
animation: gradientShift 20s ease infinite;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

.page-title {
font-family: 'Montserrat', sans-serif;
font-size: 2.6rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 0.3rem;
position: relative;
z-index: 1;
background: linear-gradient(90deg, #ff9cee, #ffffff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.page-subtitle {
font-family: 'Roboto', sans-serif;
font-size: 1rem;
font-weight: 300;
letter-spacing: 1px;
color: #f2e8ff;
opacity: 0.85;
position: relative;
z-index: 1;
}

.section-dark {
background: #1c1e21;
color: #f8f9fa;
border-radius: 0.5rem;
box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.section-dark h1, .section-dark h2, .section-dark p {
color: #f8f9fa;
}
.post-content p {
color: #e0e0e0;
line-height: 1.8;
}
.post-content img {
max-width: 100%;
height: auto;
display: block;
}
.badge {
background: #343a40;
color: #fff;
font-size: 0.85rem;
}
.model-preview-img {
width: 100%;
height: 220px;
object-fit: cover;
object-position: center top;
border-top-left-radius: 0.3rem;
border-top-right-radius: 0.3rem;
}



.sidebar {
background: #1c1e21;
padding: 2rem 1.5rem;
border-radius: 0.5rem;
box-shadow: 0 8px 24px rgba(0,0,0,0.3);
color: #f8f9fa;
}

.sidebar .widget {
margin-bottom: 2.5rem;
padding: 1.2rem;
background-color: #2a2d34;
border-radius: 0.4rem;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.sidebar .widget-title {
font-size: 0.95rem;
font-weight: 700;
background: linear-gradient(to right, #007bff, #5a5aff);
padding: 0.5rem 1rem;
margin: -1.2rem -1.2rem 1rem -1.2rem;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.5px;
border-radius: 0.4rem 0.4rem 0 0;
}

.sidebar ul {
list-style: none;
padding-left: 0;
margin: 0;
}

.sidebar ul li {
margin-bottom: 0.75rem;
}

.sidebar a {
color: #cccccc;
text-decoration: none;
transition: all 0.2s ease-in-out;
}

.sidebar a:hover {
color: #ffffff;
background-color: rgba(255, 255, 255, 0.08);
border-radius: 0.3rem;
}

/* Style list links specifically (menus, categories, etc.) */
.sidebar ul li a {
display: block;
padding: 6px 10px;
font-size: 0.95rem;
color: #d1d1d1;
border-radius: 4px;
}

.sidebar ul li a:hover {
background: rgba(255, 255, 255, 0.1);
color: #ffffff;
}

.sidebar p,
.sidebar .textwidget {
font-size: 0.95rem;
line-height: 1.6;
color: #c5c5c5;
}

.sidebar h2,
.sidebar h2.widget-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 1rem;
color: #ffffff;
background: linear-gradient(to right, #484d52, #171717);
padding: 0.5rem 1rem;
border-radius: 0.4rem;
text-transform: uppercase;
letter-spacing: 0.5px;
line-height: 1.3;
}



/* h2 styling only for static pages and single posts */
body.page .container h2,
body.single .container h2,
body.page .section-dark h2,
body.single .section-dark h2 {
font-size: 1.5rem;
font-weight: 600;
margin-top: 2rem;
margin-bottom: 1rem;
padding-left: 0.75rem;
border-left: 4px solid;
border-image: linear-gradient(to bottom, #5a5aff, #9c27b0);
border-image-slice: 1;
color: #ffffff;
line-height: 1.3;
text-transform: none;
}

body.page .container h2::first-letter,
body.single .container h2::first-letter,
body.page .section-dark h2::first-letter,
body.single .section-dark h2::first-letter {
padding-right: 0.1rem;
}

.model-name {
  color: #d075af; /* or any color you prefer */
  font-weight: 600;
}

.model-gallery-grid img {
  transition: all 0.3s ease;
}
.model-gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(255, 255, 255, 0.15);
}

@media (min-width: 992px) {
  .sidebar {
    position: sticky;
    top: 100px; /* Adjust as needed to clear your navbar */
    z-index: 100;
  }
}

@media (min-width: 992px) {
  .sidebar {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}