/* --------------------------------------------------------------
   HERO STYLING
-------------------------------------------------------------- */

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #0b3d2e; /* Dark Tartan Green */
}

.hero p,
.hero-tagline {
    font-size: 1.3rem;
    color: #333;
    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: #b3002d; /* Highland Red */
    color: #fff;
}

.btn-primary:hover {
    background: #8a0023;
}

/* Secondary Button */
.btn-secondary {
    border: 2px solid #b3002d;
    color: #b3002d;
}

.btn-secondary:hover {
    background: #b3002d;
    color: #fff;
}

/* Outline Button */
.btn-outline {
    border: 2px solid #0b3d2e;
    color: #0b3d2e;
}

.btn-outline:hover {
    background: #0b3d2e;
    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;
    color: #0b3d2e;
}

.featured-performer .rate {
    font-size: 1rem;
    color: #b3002d;
    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: #b3002d;
}


/* --------------------------------------------------------------
   PROMO BLOCKS
-------------------------------------------------------------- */

.promo-block {
    text-align: center;
    margin: 60px auto;
    max-width: 900px;
}

.promo-block h2 {
    color: #0b3d2e;
    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;
    color: #0b3d2e;
}


/* --------------------------------------------------------------
   PROFILE PAGE COLOURS
-------------------------------------------------------------- */

.profile-hero {
    background: #0b3d2e; /* Tartan Green */
    color: #fff;
}

.profile-rate {
    color: #b3002d; /* Highland Red */
}


/* --------------------------------------------------------------
   BOOKING COMPONENTS
-------------------------------------------------------------- */

.booking-box {
    background: #fff;
    border-radius: 10px;
}

.booking-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #b3002d;
}

.booking-btn {
    background: #b3002d;
    color: #fff;
}

.booking-btn:hover {
    background: #8a0023;
}


/* --------------------------------------------------------------
   IMAGE SIZING
-------------------------------------------------------------- */

.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%;
}

.featured-performer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-performer img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.review-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top;
}
