/* --------------------------------------------------------------
   HERO STYLING
-------------------------------------------------------------- */

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #111;
}

.hero p,
.hero-tagline {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 30px;
}

.hero-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.profile-hero-image {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    display: block;
}


/* --------------------------------------------------------------
   BUTTONS
-------------------------------------------------------------- */

.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
    margin-top: 5px; 
    display: inline-block;
}

/* Primary Button */
.btn-primary {
    background: #d6008f;
    color: #fff;
}

.btn-primary:hover {
    background: #b00078;
}

/* Secondary Button */
.btn-secondary {
    border: 2px solid #d6008f;
    color: #d6008f;
}

.btn-secondary:hover {
    background: #d6008f;
    color: #fff;
}

/* Outline Button */
.btn-outline {
    border: 2px solid #d6008f;
    color: #d6008f;
}

.btn-outline:hover {
    background: #d6008f;
    color: #fff;
}


/* --------------------------------------------------------------
   FEATURED PERFORMERS
-------------------------------------------------------------- */

.featured-performer {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.featured-performer:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.featured-performer img {
    width: 100%;
    display: block;
}

.featured-performer h3 {
    margin: 12px 0 6px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.featured-performer .rate {
    font-size: 1rem;
    color: #d6008f;
    font-weight: bold;
    text-align: center;
    margin-bottom: 12px;
}


/* --------------------------------------------------------------
   REVIEWS
-------------------------------------------------------------- */

.review-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.review-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}

.review-text {
    font-style: italic;
    color: #444;
}

.review-author {
    margin-top: 10px;
    font-weight: 600;
    color: #d6008f;
}


/* --------------------------------------------------------------
   PROMO BLOCKS
-------------------------------------------------------------- */

.promo-block {
    text-align: center;
    margin: 60px auto;
    max-width: 900px;
}

.promo-block h2 {
    color: #d6008f;
    margin-bottom: 15px;
}

.promo-block p {
    max-width: 700px;
    margin: 0 auto 20px;
    color: #444;
}


/* --------------------------------------------------------------
   CONTENT BLOCKS
-------------------------------------------------------------- */

.content-block {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 20px;
}

.content-block h2 {
    margin-bottom: 20px;
}


/* --------------------------------------------------------------
   PROFILE PAGE COLOURS
-------------------------------------------------------------- */

.profile-hero {
    background: #111;
    color: #fff;
}

.profile-rate {
    color: #ff0099;
}


/* --------------------------------------------------------------
   BOOKING COMPONENTS
-------------------------------------------------------------- */

.booking-box {
    background: #fff;
    border-radius: 10px;
}

.booking-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #d6008f;
}

.booking-btn {
    background: #d6008f;
    color: #fff;
}

.booking-btn:hover {
    background: #b00078;
}
/* FEATURED PERFORMER CARD STRUCTURE */
.featured-performer {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    height: 100%; /* ensures equal height cards */
}

.featured-performer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.featured-performer img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}
.review-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
/* DESKTOP: Featured performers */
.featured-performer img {
    width: 100%;
    height: 400px;      /* taller desktop height */
    object-fit: cover;
    object-position: top;
    display: block;
}

/* DESKTOP: Review images */
.review-card img {
    width: 100%;
    height: 340px;      /* slightly shorter but still portrait */
    object-fit: cover;
    object-position: top;
    display: block;
}

