@charset "UTF-8";

/*------------------------
1. GLOBAL STYLES
2. NAVBAR
3. HERO
4. TABS
5. TESTIMONIALS
6. IMAGE GALLERY
7. PRICING
8. CALL TO ACTION
9. FOOTER
------------------------*/

/* GLOBAL STYLES ----------------------*/
body {
    font-family: 'Rubik', sans-serif;
    position: relative;
}

a {
    color: #e38cb7;
}
a:hover,
a:focus {
    color: #d6619c;
}

h1 { font-size: 60px; font-weight: 300; letter-spacing: -1px; margin-bottom: 1.5rem; }
h2 { font-size: 45px; font-weight: 300; color: #633991; letter-spacing: -1px; margin-bottom: 1rem; }
h3 { color: #633991; font-size: 33px; font-weight: 500; }
h4 { font-size: 20px; font-weight: 500; color: #633991; }
h5 { font-size: 28px; font-weight: 300; color: #633991; margin-bottom: 0.7rem; }

p { color: #959094; }
p.lead { color: #e38cb7; margin-bottom: 2rem; }

.text-primary { color: #e38cb7 !important; }
.light-font { font-weight: 300; }

.btn {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0.375rem 1.35rem;
    transition: all 0.3s ease;
}
.btn-outline-light:hover { color: #d6619c; }

.btn-primary {
    border-radius: 3px;
    background-image: linear-gradient(122deg, #e54595 0%, #fd378e 100%);
    box-shadow: 0px 9px 32px 0px rgba(0,0,0,0.2);
    font-weight: 500;
    padding: 0.6rem 2rem;
    border: 0;
}
.btn-primary:hover,
.btn-primary:focus {
    background-image: linear-gradient(122deg, #fd378e 0%, #e54595 100%);
    box-shadow: 0px 9px 32px 0px rgba(0,0,0,0.3);
    color: #FFF;
}

.btn-light {
    border-radius: 3px;
    background: #FFF;
    box-shadow: 0px 9px 32px 0px rgba(0,0,0,0.26);
    font-size: 14px;
    font-weight: 500;
    color: #633991;
    margin: 0.5rem;
    padding: 0.7rem 1.6rem;
    line-height: 1.8;
}

.btn-group-lg>.btn, .btn-lg { padding: 0.8rem 1rem; font-size: 15px; }

.light-bg { background-color: #faf6fb; }
.section { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title small { color: #998a9b; }

@media (max-width:767px) {
    h1 { font-size: 40px; }
    h2 { font-size: 30px; }
}

/* NAVBAR ----------------------*/
.nav-menu {
    padding: 1rem 0;
    transition: all 0.3s ease;
}
.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
    background: linear-gradient(182deg, #0f1c3f 0%, #633991 100%);
    box-shadow: 0px 5px 23px 0px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link { position: relative; }
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link { padding: 0 1rem; font-size: 14px; }
    .navbar-nav>.nav-item>.nav-link.active:after {
        content: "";
        border-bottom: 2px solid #cd99d4;
        left: 1rem; right: 1rem; bottom: 5px;
        height: 1px; position: absolute;
    }
}
@media (max-width:991px) {
    .navbar-nav.is-scrolling { padding-bottom: 1rem; }
    .navbar-nav .nav-item { text-align: center; }
}

/* HERO ----------------------*/
header {
    /* padding: 80px 0 20px 0; */
    text-align: center;
    color: #FFF;
    padding-bottom: 0;
}

header { padding-top: 60px; padding-bottom: 10px; }

.bg-gradient { background-image: linear-gradient(135deg, #0f1c3f 0%, #633991 100%); }

header h1 { margin-bottom: 1rem; }
header .tagline { font-size: 23px; font-weight: 300; color: #fff; max-width: 700px; margin: 0 auto 2rem auto; }
header .img-holder { margin-bottom: 1.5rem; padding-bottom: 0; height: auto; }
header .call-to-action { margin-top: 0; }
header .call-to-action .my-4 { margin: 0; }

.phone-mockup {
    position: relative;
    width: 640px;           /* desktop size */
    max-width: 90%;
    margin: 0 auto;
}

.phone-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Video positioned inside phone screen */
.phone-video {
    position: absolute;
    top: 18px;                /* adjust to match phone screen */
    left: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 36px);
    object-fit: cover;
    border-radius: 18px;    /* matches iPhone screen curve */
    z-index: 1;
    background: black;
}

/* Mobile tuning */
@media (max-width: 767px) {
    .phone-mockup {
		width: 90vw;
        max-width: 400px;
    }

    .phone-video {
		/* top: 12px;
	    left: 18px;
	    width: 444px;
	    height: calc(100% - 24px); */
		top: 5.2%;
        left: 3.0%;
        width: 88.0%;
        height: 89.6%;
        /* border-radius: 12%; */
		clip-path: inset(0 round 9%);
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    header { padding-top: 60px; padding-bottom: 10px; }
    header h1 { font-size: 26px; line-height: 1.2; margin-bottom: 0.8rem; }
    header .tagline { font-size: 15px; margin-bottom: 1.2rem; }
    header .img-holder img { padding: 0 10px; width: calc(100% - 20px); height: auto; }

	.call-to-action .my-4 {
        display: flex;
        justify-content: center;   /* center buttons */
        /* gap: 10px;                 /* space between buttons */ */
        padding: 0 15px;           /* padding on sides so they don't touch edges */
    }

    .call-to-action .btn {
        flex: 1 1 auto;            /* allow buttons to grow/shrink */
        max-width: 200px;          /* maximum width for each button */
        padding: 0;
    }

    .call-to-action .btn img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Navbar smaller */
    .nav-menu { padding: 0.5rem 0; }
    .nav-menu .navbar-brand img { max-width: 70%; height: auto; }
    .nav-menu .navbar-toggler { transform: scale(0.7); transform-origin: center; }
}

/* Desktop / tablet buttons */
@media (min-width: 768px) {
    header .call-to-action .my-4 {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    header .call-to-action .btn {
        flex: 0 1 220px;
        padding: 0.5rem 0;
    }
    header .call-to-action .btn img { width: 100%; height: auto; display: block; }
}


/* FEATURES
----------------------*/

.gradient-fill:before {
    color: #fc73b4;
    background: linear-gradient(to bottom, #9477b4 0%, #fc73b4 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.card.features { border: 0; border-radius: 3px; box-shadow: 0px 5px 7px rgba(0,0,0,0.04); transition: all 0.3s ease; }
@media (max-width:991px) { .card.features { margin-bottom: 2rem; } [class^="col-"]:last-child .card.features { margin-bottom: 0; } }
.card.features:before { content:""; position:absolute; width:3px; top:0; bottom:0; left:0; background: linear-gradient(to bottom, #9477b4 0%, #fc73b4 100%); }
.card-text { font-size: 14px; }
.card.features:hover { transform: translateY(-3px); box-shadow: 0px 5px 30px rgba(0,0,0,0.08); }
.box-icon { box-shadow: 0px 0px 43px rgba(0,0,0,0.14); padding:10px; width:70px; border-radius:3px; margin-bottom:1.5rem; background-color:#FFF; }
.circle-icon { box-shadow:0 9px 32px rgba(0,0,0,0.07); width:100px; height:100px; border-radius:50%; margin-bottom:1.5rem; background-color:#FFF; color:#f5378e; font-size:48px; text-align:center; line-height:80px; transition: all 0.3s ease; }
@media (max-width:992px){ .circle-icon{width:70px;height:70px;font-size:28px;line-height:50px;} }

/*  TABS
----------------------*/

.tab-content {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    background-color: #FFF;
    box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
    padding: 3rem;
}

@media (max-width:992px) {
    .tab-content {
        padding: 1.5rem;
    }
}

.tab-content p {
    line-height: 1.8;
}

.tab-content h2 {
    margin-bottom: 0.5rem;
}

.nav-tabs {
    border-bottom: 0;
}

.nav-tabs .nav-item .nav-link,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    padding: 1rem 1rem;
    border-color: #faf6fb #faf6fb #FFF;
    font-size: 19px;
    color: #b5a4c8;
    background: #f5eff7;
}

.nav-tabs .nav-link.active {
    background: #FFF;
    border-top-width: 3px;
    border-color: #ce75b4 #faf6fb #FFF;
    color: #633991;
}


/*  TESTIMONIALS
----------------------*/

.owl-carousel .owl-item img.client-img {
    width: 110px;
    margin: 30px auto;
    border-radius: 50%;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-single {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.blockquote {
    color: #7a767a;
    font-weight: 300;
}

.owl-next.disabled,
.owl-prev.disabled {
    opacity: 0.5;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e7d9eb;
    width: 35px;
    height: 8px;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #ff487e;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #ff487e;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}


/*  IMAGE GALLERY
----------------------*/

.img-gallery .owl-item {
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
    transform: scale(0.8);
    transition: all 0.3s ease-in;
}

.img-gallery .owl-item.center {
    transform: scale(1);
}


/*  PRICING
----------------------*/

@media (max-width:992px) {
    .card-deck {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .card-deck .card {
        margin-bottom: 15px;
    }
}

.card.pricing {
    border: 1px solid #f1eef1;
}

.card.pricing.popular {
    border-top-width: 3px;
    border-color: #ce75b4 #faf6fb #FFF;
    box-shadow: 0px 12px 59px 0px rgba(36, 7, 31, 0.11);
    color: #633991;
}

.card.pricing .card-head {
    text-align: center;
    padding: 40px 0 20px;
}

.card.pricing .card-head .price {
    display: block;
    font-size: 45px;
    font-weight: 300;
    color: #633991;
}

.card.pricing .card-head .price sub {
    bottom: 0;
    font-size: 55%;
}

.card.pricing .list-group-item {
    border: 0;
    text-align: center;
    color: #959094;
    padding: 1.05rem 1.25rem;
}

.card.pricing .list-group-item del {
    color: #d9d3d8;
}

.card.pricing .card-body {
    padding: 1.75rem;
}


/*  CALL TO ACTION
----------------------*/

.call-to-action {
    text-align: center;
    color: #FFF;
    /* margin: 3rem 0; */
}

.call-to-action .box-icon {
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    transform: scale(0.85);
    margin-bottom: 2.5rem;
}

.call-to-action h2 {
    color: #FFF;
}

.call-to-action .tagline {
    font-size: 16px;
    font-weight: 300;
    color: #ffb8f6;
    max-width: 650px;
    margin: 0 auto;
}

.btn-light img {
    margin-right: 0.4rem;
    vertical-align: text-bottom;
}

/* REEL
---------------------------*/

.artist-reel {
    padding: 40px 0;
}

.reel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Horizontal reel with snap and edge padding */
.reel-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;

    padding: 10px 94px;

    scroll-snap-type: x mandatory;
	 -webkit-overflow-scrolling: touch;
	 touch-action: pan-x;
}

.reel-track::-webkit-scrollbar {
    display: none;
}

.reel-item {
    flex: 0 0 auto;
    width: 400px;
    text-align: center;
	/* max-width: 100%; */
    scroll-snap-align: center;
}

@media (max-width: 768px) {
    .reel-track {
		padding: 10px 24px;
		padding: 10px calc(50vw - 200px); /* half viewport - half item width (400/2) */
    }
}

/* Maintain 16:9 ratio at larger size */
.reel-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

/* Wrap makes positioning possible */
.image-wrap {
    position: relative;
    width: 100%;
}

/* Overlay bar */
.item-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 6px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(0,0,0,0.55); /* translucent black */
    color: #fff;
    font-size: 16px;

    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.artist-name {
    font-weight: 500;
}

.event-date {
    opacity: 0.9;
}

/* Chevron buttons */
.reel-btn {
    background: rgba(15, 28, 63, 0.7);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
    line-height: 48px;
    text-align: center;
    position: absolute;
    z-index: 10;
    transition: background 0.2s ease-in-out;
}

.reel-btn:hover {
    background: rgba(15, 28, 63, 1.0);
}

.left-btn { left: 30px; }
.right-btn { right: 30px; }

/* Modal wrapper */
.app-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Opened state */
.app-modal.open {
  display: flex;
}

/* Modal content */
.app-modal-content {
  background: #fff;
  padding: 24px;
  max-width: 340px;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

/* Close button */
.close-modal {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Buttons */
.primary-btn {
  display: block;
  padding: 12px 16px;
  background: #0070ff;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 12px;
}

.store-buttons a {
  display: inline-block;
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  font-weight: 500;
}

/* Overlay positioned directly on top of clicked reel-item */
.reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  border-radius: inherit;
  z-index: 20;
  padding: 12px;
  font-size: 0.95rem;
  border-radius: 10px;
}

/* Inner content */
.reel-overlay .overlay-inner p {
  margin: 0 0 30px;
  line-height: 1.3;
  font-weight: normal;
  color: white;
}

/* Store buttons */
.reel-overlay .btn img {
  /* max-width: 120px; */
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.reel-overlay .store-buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
}

/* Prevent layout shift when overlay added */
.reel-item {
  position: relative;
}

#reelOverlayTemplate {
  display: none;
}

/* Close button */
.reel-overlay .overlay-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.reel-overlay .overlay-close:active {
  background: rgba(255,255,255,0.35);
  color: #000;
}

/* REVIEWS
----------------------*/

.review-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.review-title {
    font-weight: 400;
    margin-bottom: 5px;
}

.review-meta {
    font-size: 0.9rem;
    color: #777;
    display: flex;
    justify-content: space-between;
}

.review-stars {
    color: #f5c518; /* Gold stars */
}

.review-user {
    font-weight: 500;
    color: #555;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #333;
}

/* SOCIALS
-----------------------*/

.social-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* Square app-style cards */
.social-card {
    width: 80px;
    height: 80px;
    border-radius: 18px; /* app icon radius */
    display: flex;
    align-items: center;
    justify-content: center;
	text-decoration: none !important;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-card i {
    font-size: 2.2rem;
    color: #ffffff;
}

/* Hover */
.social-card:hover i {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Platform styling */
.social-card.instagram {
    background: linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af
    );
}

.social-card.tiktok {
    background: #000000;
}


/*  FOOTER
----------------------*/

.social-icons { text-align: right; }
.social-icons a { background-color:#FFF; box-shadow:0 0 21px rgba(0,0,0,0.05); width:50px; height:50px; display:inline-block; text-align:center; line-height:50px; margin:0 0.3rem; border-radius:5px; color:#f4c9e2; transition: all 0.3s ease; }
.social-icons a:hover { text-decoration:none; color:#e38cb7; }
@media (max-width:991px){ .social-icons{ text-align:center; margin-top:2rem; } }
