/* =====================================================
   HICHAM — PROFESSIONAL CREATOR WEBSITE
   ===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #080808;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}


/* =====================================================
   NAVBAR
   ===================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 6%;

  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(255,255,255,.08);

  z-index: 1000;
}

.brand {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
}

.brand span,
.footer-brand span {
  color: #ff1744;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  color: #bbb;
  transition: .25s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-live {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 9px 17px;

  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;

  font-size: 13px;
  font-weight: 700;

  transition: .25s;
}

.nav-live:hover {
  transform: translateY(-2px);
}

.nav-live span {
  width: 8px;
  height: 8px;
  background: #ff1744;
  border-radius: 50%;
  box-shadow: 0 0 12px #ff1744;
  animation: pulse 1.5s infinite;
}

.menu-btn {
  display: none;

  background: none;
  border: 0;

  color: white;
  font-size: 26px;

  cursor: pointer;
}


/* =====================================================
   MOBILE MENU
   ===================================================== */

.mobile-menu {
  display: none;

  position: fixed;
  top: 72px;
  left: 0;

  width: 100%;

  padding: 20px;

  background: #101010;

  z-index: 999;

  border-bottom: 1px solid rgba(255,255,255,.1);
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu a {
  color: #ddd;
  font-size: 16px;
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 130px 20px 80px;

  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(255,23,68,.13),
      transparent 45%
    );

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 800px;
  width: 100%;
}

.profile-wrapper {
  position: relative;

  width: 165px;
  height: 165px;

  margin: 0 auto 25px;
}

.profile-image {
  width: 165px;
  height: 165px;

  object-fit: cover;

  border-radius: 50%;

  border: 4px solid #fff;

  box-shadow:
    0 0 0 7px rgba(255,255,255,.04),
    0 0 45px rgba(255,23,68,.25);
}

.online-badge {
  position: absolute;

  bottom: 5px;
  right: -10px;

  display: flex;
  align-items: center;
  gap: 7px;

  padding: 7px 12px;

  background: #111;

  border: 1px solid rgba(255,255,255,.15);

  border-radius: 20px;

  font-size: 10px;
  font-weight: 800;
}

.online-badge span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #ff1744;

  box-shadow: 0 0 10px #ff1744;
}

.eyebrow {
  font-size: 11px;

  letter-spacing: 4px;

  font-weight: 700;

  color: #999;

  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(60px, 12vw, 125px);

  line-height: .9;

  letter-spacing: 7px;

  font-weight: 900;

  margin-bottom: 25px;
}

.hero-description {
  max-width: 600px;

  margin: auto;

  color: #aaa;

  font-size: 16px;
}

.hero-buttons {
  display: flex;

  justify-content: center;

  gap: 12px;

  margin-top: 30px;

  flex-wrap: wrap;
}

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 25px;

  border-radius: 30px;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: .5px;

  transition: .25s;
}

.btn-primary {
  background: #ff1744;

  color: white;

  box-shadow: 0 10px 35px rgba(255,23,68,.2);
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 15px 45px rgba(255,23,68,.35);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.2);

  background: rgba(255,255,255,.03);

  color: white;
}

.btn-outline:hover {
  background: white;
  color: #080808;

  transform: translateY(-3px);
}

.hero-socials {
  display: flex;

  justify-content: center;

  gap: 22px;

  margin-top: 35px;

  flex-wrap: wrap;
}

.hero-socials a {
  color: #888;

  font-size: 13px;

  transition: .2s;
}

.hero-socials a:hover {
  color: white;
}


/* =====================================================
   SECTIONS
   ===================================================== */

.section {
  max-width: 1200px;

  margin: auto;

  padding: 110px 25px;
}

.section-header {
  text-align: center;

  max-width: 700px;

  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: clamp(35px, 5vw, 55px);

  line-height: 1.05;

  margin-bottom: 15px;
}

.section-header p:not(.eyebrow) {
  color: #888;
}


/* =====================================================
   ABOUT
   ===================================================== */

.about-card {
  display: grid;

  grid-template-columns: 1.4fr 1fr;

  gap: 50px;

  padding: 45px;

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 25px;

  background: rgba(255,255,255,.025);
}

.about-text h3 {
  font-size: 30px;

  margin-bottom: 15px;
}

.about-text p {
  color: #999;

  margin-bottom: 15px;
}

.about-stats {
  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 15px;

  align-items: center;
}

.about-stats div {
  text-align: center;

  padding: 25px 10px;

  border: 1px solid rgba(255,255,255,.07);

  border-radius: 15px;
}

.about-stats strong {
  display: block;

  font-size: 16px;
}

.about-stats span {
  display: block;

  color: #777;

  font-size: 11px;

  margin-top: 5px;
}


/* =====================================================
   GALLERY
   ===================================================== */

.gallery-grid {
  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 15px;
}

.gallery-item {
  position: relative;

  min-height: 300px;

  overflow: hidden;

  border-radius: 18px;

  background: #111;

  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .5s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: flex-end;

  padding: 20px;

  background:
    linear-gradient(
      transparent 50%,
      rgba(0,0,0,.7)
    );

  opacity: 0;

  transition: .3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-size: 11px;

  letter-spacing: 2px;

  font-weight: 800;
}

.gallery-more {
  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  border: 1px dashed rgba(255,255,255,.15);
}

.gallery-more strong {
  display: block;

  font-size: 22px;
}

.gallery-more span {
  color: #777;

  font-size: 12px;
}


/* =====================================================
   VIDEOS
   ===================================================== */

.video-grid {
  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 20px;
}

.video-card {
  overflow: hidden;

  border-radius: 18px;

  background: #111;

  border: 1px solid rgba(255,255,255,.07);
}

.video-container {
  aspect-ratio: 16 / 9;

  background: #000;
}

.video-container video {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  margin-bottom: 5px;
}

.video-info p {
  color: #777;

  font-size: 13px;
}

.video-placeholder {
  aspect-ratio: 16 / 9;

  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  text-align: center;

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,.08),
      transparent 60%
    );
}

.play-icon {
  width: 55px;
  height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.2);

  margin-bottom: 12px;
}


/* =====================================================
   SOCIALS
   ===================================================== */

.social-grid {
  display: grid;

  grid-template-columns: repeat(2,1fr);

  gap: 14px;
}

.social-card {
  display: grid;

  grid-template-columns: 55px 1fr auto;

  align-items: center;

  gap: 15px;

  padding: 20px;

  border-radius: 17px;

  background: rgba(255,255,255,.025);

  border: 1px solid rgba(255,255,255,.08);

  transition: .25s;
}

.social-card:hover {
  transform: translateY(-4px);

  border-color: rgba(255,255,255,.2);

  background: rgba(255,255,255,.05);
}

.social-icon {
  width: 50px;
  height: 50px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(255,255,255,.07);

  font-size: 22px;

  font-weight: 900;
}

.social-card strong {
  display: block;

  font-size: 15px;
}

.social-card span {
  display: block;

  color: #777;

  font-size: 12px;

  margin-top: 3px;
}

.social-card b {
  color: #777;

  font-size: 20px;
}

.social-card.chaturbate {
  border-color: rgba(255,23,68,.25);

  background:
    linear-gradient(
      135deg,
      rgba(255,23,68,.08),
      rgba(255,255,255,.02)
    );
}


/* =====================================================
   SCHEDULE
   ===================================================== */

.schedule-card {
  max-width: 800px;

  margin: auto;

  padding: 10px 30px;

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 22px;

  background: rgba(255,255,255,.025);
}

.schedule-row {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding: 20px 5px;

  border-bottom: 1px solid rgba(255,255,255,.06);
}

.schedule-row span {
  color: #aaa;
}

.schedule-row strong {
  font-size: 14px;
}

.timezone {
  text-align: center;

  padding: 20px 0;

  color: #777;

  font-size: 13px;
}

.timezone strong {
  color: #ddd;
}

.schedule-cta {
  text-align: center;

  margin-top: 35px;
}

.schedule-cta p {
  color: #888;

  margin-bottom: 15px;
}


/* =====================================================
   CONTACT
   ===================================================== */

.contact-card {
  text-align: center;

  padding: 80px 25px;

  border-radius: 25px;

  background:
    radial-gradient(
      circle at center,
      rgba(255,23,68,.12),
      transparent 65%
    );

  border: 1px solid rgba(255,255,255,.08);
}

.contact-card h2 {
  font-size: clamp(35px,5vw,60px);

  margin-bottom: 15px;
}

.contact-card > p:not(.eyebrow) {
  color: #888;

  max-width: 550px;

  margin: 0 auto 25px;
}


/* =====================================================
   FOOTER
   ===================================================== */

footer {
  padding: 45px 25px;

  text-align: center;

  border-top: 1px solid rgba(255,255,255,.08);

  background: #050505;
}

.footer-brand {
  font-size: 25px;

  font-weight: 900;

  letter-spacing: 2px;

  margin-bottom: 10px;
}

footer p {
  color: #666;

  font-size: 12px;
}

.footer-links {
  display: flex;

  justify-content: center;

  gap: 20px;

  margin-top: 20px;

  flex-wrap: wrap;
}

.footer-links a {
  color: #777;

  font-size: 12px;
}

.footer-links a:hover {
  color: white;
}


/* =====================================================
   LIGHTBOX
   ===================================================== */

.lightbox {
  position: fixed;

  inset: 0;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(0,0,0,.92);

  z-index: 3000;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;

  border-radius: 10px;

  object-fit: contain;
}

.lightbox-close {
  position: absolute;

  top: 20px;
  right: 25px;

  border: 0;

  background: none;

  color: white;

  font-size: 45px;

  cursor: pointer;
}


/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes pulse {

  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.35);
    opacity: .5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }

}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-live {
    margin-left: auto;
    margin-right: 15px;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2,1fr);
  }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

  .navbar {
    height: 64px;

    padding: 0 18px;
  }

  .brand {
    font-size: 21px;
  }

  .nav-live {
    padding: 7px 12px;

    font-size: 11px;
  }

  .mobile-menu {
    top: 64px;
  }

  .hero {
    padding-top: 110px;
  }

  .profile-wrapper,
  .profile-image {
    width: 135px;
    height: 135px;
  }

  .hero h1 {
    font-size: 55px;

    letter-spacing: 4px;
  }

  .hero-description {
    font-size: 14px;
  }

  .section {
    padding: 75px 18px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .about-card {
    padding: 25px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;

    gap: 8px;
  }

  .gallery-item {
    min-height: 220px;

    border-radius: 12px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    padding: 15px;
  }

  .schedule-card {
    padding: 5px 20px;
  }

  .schedule-row {
    padding: 17px 0;

    font-size: 13px;
  }

  .contact-card {
    padding: 60px 20px;
  }

}


/* =====================================================
   SMALL PHONES
   ===================================================== */

@media (max-width: 380px) {

  .nav-live {
    display: none;
  }

  .hero h1 {
    font-size: 45px;
  }

  .gallery-item {
    min-height: 180px;
  }

}
/* ================================
   HICHAM MODELING - GALLERY
   ================================ */

.gallery-section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-title {
  text-align: center;
  margin-bottom: 35px;
}

.gallery-title h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.gallery-title p {
  opacity: 0.75;
}

/* PHOTO GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    transparent 55%
  );
  opacity: 0;
  transition: 0.3s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* ================================
   VIDEOS
   ================================ */

.videos-section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
}

.videos-title {
  text-align: center;
  margin-bottom: 35px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.video-card {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
}

.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-title h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {

  .gallery-section,
  .videos-section {
    padding: 45px 15px;
  }

  .gallery-grid {
    gap: 10px;
  }
}
/* =================================
   HICHAM AUTO GALLERY
   ================================= */

.gallery-section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-title {
  text-align: center;
  margin-bottom: 35px;
}

.gallery-title h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.gallery-title p {
  opacity: 0.75;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  aspect-ratio: 3 / 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

}

@media (max-width: 480px) {

  .gallery-section {
    padding: 45px 15px;
  }

  .gallery-grid {
    gap: 10px;
  }

}
