/*ARTIST-CSS */
/* ===============================
   ARTIST -CSS
================================ */


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Inter', sans-serif;
}

body{
  background:#000;
  color:#fff;
}

/* NAVBAR */
.navbar{
  padding:20px 40px;
  border-bottom:1px solid #111;
  font-weight:600;
}

/* HERO */
.artist-hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:80px 8%;
  gap:60px;
}

.artist-hero.reverse{
  flex-direction:row-reverse;
}

.artist-hero-content{
  max-width:520px;
}

.artist-hero-content h4{
  font-size:16px;
  opacity:.7;
}

.artist-hero-content h1{
  font-size:64px;
  margin:10px 0;
}

.artist-hero-content h1 span{
  color:#ff5a1f;
}

.tagline{
  font-size:18px;
  line-height:1.6;
  opacity:.85;
}

.artist-actions{
  margin-top:30px;
}

.artist-actions a{
  display:inline-block;
  margin-right:15px;
  padding:14px 26px;
  border-radius:30px;
  background:#ff5a1f;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.artist-actions a:last-child{
  background:#111;
  border:1px solid #333;
}

/* IMAGE */
.artist-hero-image img{
  width:380px;
  height:480px;
  object-fit:cover;
  border-radius:20px;
}

/* ABOUT */
.artist-about{
  padding:60px 20%;
  text-align:center;
}

.artist-about h2{
  font-size:36px;
  margin-bottom:20px;
}

.artist-about p{
  font-size:17px;
  line-height:1.8;
  opacity:.85;
}

/* PORTFOLIO */


/* ===============================
   ARTIST PORTFOLIO
================================ */

.artist-portfolio {
  background: #000;
  padding: 100px 6%;
}

.section-title {
  text-align: center;
  color: #fff;
  font-size: 42px;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* IMAGE CARD */
.portfolio-item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
}

/* IMAGE */
.portfolio-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 24px;
}


/* Hover Bump */
.portfolio-item:hover img {
  transform: scale(1.07);
}

.portfolio-item:hover {
  border-color: #ff5a1f;
}


/* ===============================
   MOBILE VERSION
================================ */

@media (max-width: 768px) {

  .artist-portfolio {
    padding: 60px 4%;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;   /* single column */
    gap: 25px;
  }

  .portfolio-item img {
    height: auto;          /* important */
    aspect-ratio: 4/5;     /* keeps premium look */
  }
}

.portfolio-item:active img {
  transform: scale(1.05);
}





/* DIVIDER */
.divider{
  border:none;
  border-top:1px solid #222;
  margin:80px 10%;
}

/* FOOTER */
footer{
  text-align:center;
  padding:30px;
  border-top:1px solid #111;
  opacity:.6;
}


/*Nav*/
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 40px;
  background:#fff;
}

.menu a{
  color:#000;
  margin-left:22px;
  text-decoration:none;
  font-weight:500;
}

.menu a:hover{
  color:#e04b1a;
}

.cta{
  background:#e04b1a;
  color:#fff !important;
  padding:8px 18px;
  border-radius:20px;
}

.brand-name{
  font-weight:600;
  letter-spacing:1px;
}

.brand-accent{
  color:#e04b1a;
}

/* BRAND TEXT */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  height:42px;
}

.brand-text{
  font-size:18px;
  font-weight:600;
  letter-spacing:0.6px;
  color:#040303;          /* 🔥 Orange */
  text-transform:uppercase;
}

/* =========================
   FULL WHITE BAND DIVIDER
========================= */

.white-band-divider{
  width:100%;
  height:120px;     /* 🔥 Controls thickness of white strip */
  background:#fff;
}

/* ===============================
   ARTIST PRICING SECTION
================================ */

.artist-pricing{
  background:#fff;
  padding:80px 6%;
  color:#000;
}

.pricing-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.artist-pricing h2{
  font-size:32px;
  margin-bottom:10px;
}

.pricing-sub{
  color:#555;
  margin-bottom:40px;
}

/* TABLE */
.pricing-table{
  border:1px solid #ddd;
  border-radius:14px;
  overflow:hidden;   /* ❌ remove horizontal scroll */
}

/* 3 Columns Always */
.pricing-row{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding:18px 20px;
  border-bottom:1px solid #eee;
}

.pricing-row:last-child{
  border-bottom:none;
}

.pricing-head{
  background:#f5f5f5;
  font-weight:600;
}

.pricing-row div{
  text-align:center;
  font-size:15px;
}

/* Mobile Adjustments */
@media(max-width:768px){

  .artist-pricing{
    padding:60px 4%;
  }

  .pricing-row{
    grid-template-columns: 2fr 1fr 1fr; /* keep same layout */
    padding:14px 10px;
  }

  .pricing-row div{
    font-size:13px;  /* slightly smaller to fit mobile */
  }

  .artist-pricing h2{
    font-size:26px;
  }

  .pricing-sub{
    font-size:14px;
  }
}

.pricing-note{
  margin-top:25px;
  font-size:14px;
  color:#666;
}

/*====================
LOGO
====================*/


.brand h2{
  color:#000;                      /* 🔥 Black text */
  font-weight:600;
  letter-spacing:.5px;
}
/* BRAND TEXT */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand img{
  height:42px;
}

.brand-text{
  font-size:18px;
  font-weight:600;
  letter-spacing:0.6px;
  color:#e04b1a;          /* 🔥 Orange */
  text-transform:uppercase;
}
.brand-text strong{
  color:#000;
}

.brand-text{
  color:#e04b1a;
}

/* ===============================
   BRAND HIGHLIGHT INTRO
================================ */

.brand-highlight{
  padding:120px 6%;
  background:#fff;
  position:relative;
  overflow:hidden;
}

.brand-text{
  max-width:1000px;
}

.brand-title{
  font-size:clamp(2.5rem,4vw,3.5rem);
  font-weight:600;
  letter-spacing:-1px;
  line-height:1.2;
  color:#111;
}

.brand-title span{
  display:block;
  opacity:0;
  transform:translateY(40px);
}

.brand-sub{
  margin-top:30px;
  font-size:1.1rem;
  color:#444;
  max-width:650px;
  opacity:0;
  transform:translateY(40px);
}


/* ===============================
   ARTIST FULL-WIDTH PORTFOLIO
================================ */
.artist-portfolio {
  background: #000;
  padding: 100px 0;
}

.section-title {
  text-align: center;
  color: #fff;
  font-size: 42px;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.portfolio-item {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s ease;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 18px;
}

.portfolio-item:hover {
  border-color: #ff5a1f;
}

/* =========================================
   ARTIST PAGE – PERFECT MOBILE OPTIMIZATION
========================================= */

@media (max-width: 992px) {

  /* HERO SECTION STACK */
  .artist-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 6%;
    gap: 40px;
  }

  .artist-hero.reverse {
    flex-direction: column;
  }

  /* TEXT SIZES FIX */
  .artist-hero-content h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .artist-hero-content h4 {
    font-size: 14px;
  }

  .tagline {
    font-size: 16px;
  }

  /* BUTTONS STACK */
  .artist-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .artist-actions a {
    width: 100%;
    max-width: 260px;
  }

  /* IMAGE RESPONSIVE */
  .artist-hero-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  /* ABOUT SECTION FIX */
  .artist-about {
    padding: 60px 8%;
  }

  .artist-about h2 {
    font-size: 28px;
  }

  .artist-about p {
    font-size: 15px;
  }

  /* PORTFOLIO FIX */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid img {
    height: 280px;
  }

}


/* ===============================
   PREMIUM MOBILE NAVBAR
================================ */

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:26px;
  height:2px;
  background:#000;
  transition:.3s ease;
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:#111;
  color:#fff;
  padding:30px 24px;
  transform:translateY(-100%);
  transition:transform .4s cubic-bezier(.22,1,.36,1);
  z-index:9999;
  display:flex;
  flex-direction:column;
}

.mobile-menu.active{
  transform:translateY(0);
}

.mobile-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:20px;
  margin-bottom:40px;
}

.mobile-header button{
  background:none;
  border:none;
  color:#fff;
  font-size:26px;
  cursor:pointer;
}

/* Book Now Top */
.mobile-book{
  background:#e04b1a;
  padding:14px;
  border-radius:40px;
  text-align:center;
  font-weight:600;
  margin-bottom:40px;
  text-decoration:none;
  color:#fff;
}

/* Menu Links */
.mobile-menu a{
  text-decoration:none;
  color:#ddd;
  font-size:22px;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:900px){

  .menu{
    display:none;
  }

  .hamburger{
    display:flex;
  }
}



/* ===============================
   FOOTER
================================ */

.site-footer{
  background:#fff;
  color:#000;
  padding:80px 6% 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
  margin-bottom:40px;
}

.footer-col h3,
.footer-col h4{
  margin-bottom:14px;
  font-size:18px;
}

.footer-col p{
  font-size:14px;
  line-height:1.7;
  color:#333;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin-bottom:10px;
  font-size:14px;
}

.footer-col a{
  text-decoration:none;
  color:#000;
}

.footer-col a:hover{
  color:#e04b1a;
}

.footer-contact,
.footer-address,
.footer-timing{
  margin-top:12px;
  font-size:14px;
}
/* =========================
   FOOTER SECTION
========================= */

footer{
  background:#fff;
  color:#000;
  padding:60px 6% 30px;
}

/* Top Footer Grid */
.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

footer h4{
  font-size:18px;
  margin-bottom:15px;
  font-weight:600;
}

footer p,
footer a{
  font-size:14px;
  color:#555;
  text-decoration:none;
  line-height:1.7;
}

footer a:hover{
  color:#e04b1a;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
  border-top:1px solid #ddd;
  margin-top:40px;
  padding-top:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}

.footer-bottom p{
  font-size:13px;
  color:#555;
}

.footer-socials a{
  margin-left:14px;
  font-size:18px;
  color:#000;
}

.footer-socials a:hover{
  color:#e04b1a;
}

/* MOBILE */
@media(max-width:768px){
  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}

.cinematic-divider{
  width:32px;              /* smaller width */
  height:1px;
  margin:70px auto;        /* tighter spacing */
  background:linear-gradient(
    to right,
    transparent,
    rgba(198,161,74,.7),
    transparent
  );
  opacity:.8;
}