/* Import fonts from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=WDXL+Lubrifont+TC:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #fff;
    --secondary-color: #000;
    --accent-color: #8A2BE2; /* Changed from magenta to purple (BlueViolet) */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #00FF00; /* Changed dark gray to pure green */
    --gray-800: #00FF00; /* Changed dark gray to pure green */
    --gray-900: #212529;    --font-family: 'WDXL Lubrifont TC', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --body-font: 'WDXL Lubrifont TC', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --transition: all 0.3s ease;
    
    /* Highlight colors - updated */
    --highlight-green: #00FF00; /* Changed to actual green */
    --highlight-purple: #8A2BE2; /* Changed to purple */
}

/* HTML Element Highlights */
::selection {
    background-color: var(--highlight-green);
    color: white;
}

/* Custom highlight classes */
.highlight-green {
    background-color: var(--highlight-green);
    color: white;
    padding: 0 3px;
}

.highlight-purple {
    background-color: var(--highlight-purple);
    color: white;
    padding: 0 3px;
}

/* Highlighted sections */
mark {
    background-color: var(--highlight-purple);
    color: white;
}

/* Alternate highlight styles */
mark.green {
    background-color: var(--highlight-green);
    color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

/* Global link styles */
a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    border-bottom: 1px solid var(--gray-600);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-400);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    margin-bottom: 2rem;
    order: -1; /* Put image first in the layout */
}

.placeholder-image {
    width: 200px;
    height: 150px;
    background: var(--secondary-color);
    border: 2px solid var(--gray-600);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.placeholder-image:hover {
    transform: scale(1.05);
    background: var(--gray-700);
}

.placeholder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enlarged state */
.placeholder-image.enlarged {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(3);
    width: 200px;
    height: 150px;
    z-index: 1500;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.placeholder-image.enlarged:hover {
    transform: translate(-50%, -50%) scale(3);
}

/* Overlay for enlarged image */
.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.brand-name {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    font-weight: 300;
}

.studio-description {
    margin: 2rem 0;
}

.hero .studio-description .studio-description-text {
    color: darkgrey !important;  /* Dark grey with !important and higher specificity */
    text-align: center !important;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic !important;
    font-weight: 400;
}

.clusterf-description {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.clusterf-description-text {
    color: var(--gray-700);
    text-align: center;
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1rem auto;
    font-weight: 400;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.clusterf-description-text:last-child {
    margin-bottom: 0;
}

.clusterf-description-text strong {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0px 0px 1px white, 0px 0px 1px white;
}

.hero-image {
    margin-top: 2rem;
}

.placeholder-image {
    width: 200px;
    height: 150px;
    background: var(--secondary-color);
    border: 2px solid var(--gray-600);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.placeholder-image:hover {
    transform: scale(1.05);
    background: var(--gray-700);
}

.placeholder-image i {
    font-size: 3rem;
    color: var(--gray-500);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-700);
    line-height: 1.8;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; /* Stronger black contour for green text */
}

.about-text strong {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0px 0px 1px white, 0px 0px 1px white; /* White contour for black text */
}

.about-text em {
    color: var(--accent-color);
    font-style: normal;
    font-weight: 600;
    text-shadow: 0px 0px 1px black, 0px 0px 1px black; /* Black contour for purple text */
}

/* Equipment Section */
.equipment {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.equipment h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.equipment-item {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gray-600);
    transition: var(--transition);
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

.equipment-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.equipment-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.equipment-item ul {
    list-style: none;
    text-align: left;
}

.equipment-item li {
    padding: 0.5rem 0;
    color: var(--gray-400);
    border-bottom: 1px solid var(--gray-600);
}

.equipment-item li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.equipment-item li a:hover {
    color: var(--accent-color);
    text-shadow: 0px 0px 1px black, 0px 0px 1px black; /* Black contour for purple links */
}

.equipment-item li:last-child {
    border-bottom: none;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--gray-600);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.service-card.featured {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.service-card.featured .price {
    color: var(--secondary-color);
}

.service-card .duration {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-card.featured .duration {
    color: var(--gray-300);
}

.service-card p {
    margin-bottom: 2rem;
    color: var(--gray-400);
}

.service-card.featured p {
    color: var(--gray-300);
}

/* Services Page Specific Styles */
.services-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-hero p {
    font-size: 1.3rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray-400);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.additional-services {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.additional-services h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.additional-services .service-card {
    text-align: center;
    padding: 3rem 2rem;
}

.additional-services .service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.price-range {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 1rem;
}

.service-process {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.service-process h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray-400);
    line-height: 1.6;
}

.pricing-note {
    padding: 4rem 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
}

.note-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.note-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: #7126B3; /* Darker purple for hover */
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.contact h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 30px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid var(--gray-600);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-family);
    background: var(--secondary-color);
    color: var(--primary-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Newsletter Section */
.newsletter {
    padding: 3rem 0;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
}

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 50px;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--gray-900);
    color: var(--primary-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.footer-brand a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-credits {
    text-align: right;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.footer-credits p {
    margin-bottom: 0.25rem;
}

/* Music Platform Links */
.music-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0 2rem;
}

.music-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--primary-color);
}

.platform-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.platform-link.spotify {
    background: #1DB954;
}

.platform-link.spotify:hover {
    background: #1ed760;
}

.platform-link.youtube {
    background: #8A2BE2;
}

.platform-link.youtube:hover {
    background: #7126B3;
}

.platform-link.apple {
    background: #FA243C;
}

.platform-link.apple:hover {
    background: #fb4a61;
}

.platform-link.amazon {
    background: #FF9900;
}

.platform-link.amazon:hover {
    background: #ffad1a;
}

.platform-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Works Page Styles */
.works-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.works-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.works-hero p {
    font-size: 1.3rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.works-gallery {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.work-item {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gray-600);
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

.work-image {
    height: 200px;
    background: var(--secondary-color);
    border: 2px solid var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.work-image i {
    font-size: 3rem;
    color: var(--accent-color);
}

.work-content {
    padding: 2rem;
}

.work-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.work-content p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.work-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Works grid link styles */
.works-grid .work-content a {
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
}

.works-grid .work-content a:hover {
    color: var(--gray-500);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.testimonials {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.testimonial {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gray-600);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-weight: 900;
}

.testimonial p {
    font-style: italic;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Booking Page Styles */
.booking-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.booking-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-hero p {
    font-size: 1.3rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.booking-process {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.booking-process h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step p {
    color: var(--gray-400);
    line-height: 1.6;
}

.booking-form-section {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.booking-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
    min-width: 30px;
}

.detail-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--gray-400);
    line-height: 1.6;
}

.booking-form {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gray-600);
}

.booking-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-600);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-family);
    background: var(--secondary-color);
    color: var(--primary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.form-note i {
    color: var(--accent-color);
}

.faq {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.faq h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.faq-item {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gray-600);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray-400);
    line-height: 1.6;
}

/* Call to Action Section */
.cta {
    padding: 5rem 0;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: var(--gray-400);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta .btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Artists Page Styles */
.artists-section {
    padding: 6rem 0 4rem;
    background: var(--secondary-color);
}

.artists-section h1 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 4rem;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    align-items: start;
}

.artist-block {
    background: var(--secondary-color);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    border: 2px solid var(--gray-600);
}

.artist-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.artist-block h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 1rem;
}

.artist-content {
    line-height: 1.7;
}

.artist-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-400);
    font-size: 1.05rem;
    text-align: justify;
}

.artist-content p:last-of-type {
    margin-bottom: 2rem;
}

/* Pronunciation styling */
.pronunciation {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--gray-400);
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--secondary-color);
    border: 2px solid var(--gray-600);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

/* Quote styling */
blockquote {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    font-style: italic;
    text-align: center;
}

blockquote p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Video embeds section */
.video-embeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--secondary-color);
    border: 2px solid var(--gray-600);
    border-radius: 15px;
}

.video-embeds iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* YouTube links section */
.youtube-links {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--secondary-color);
    border: 2px solid var(--gray-600);
    border-radius: 15px;
}

.youtube-links h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.youtube-links a,
.youtube-link {
    display: block;
    padding: 1rem 1.5rem;
    margin: 0.8rem 0;
    background: #FF0000;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.youtube-links a:hover,
.youtube-link:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* SoundCloud links section */
.soundcloud-link {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--secondary-color);
    border: 2px solid var(--gray-600);
    border-radius: 15px;
}

.soundcloud-link h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.soundcloud-link-item {
    display: block;
    padding: 1rem 1.5rem;
    background: #FF5500;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.soundcloud-link-item:hover {
    background: #FF7700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 85, 0, 0.3);
}

/* External links section */
.external-links {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--secondary-color);
    border: 2px solid var(--gray-600);
    border-radius: 15px;
}

.external-links h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.external-link {
    display: block;
    padding: 1rem 1.5rem;
    margin: 0.8rem 0;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

.external-link:hover {
    background: #7126B3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

/* Links Page Styles */
.links-section {
    padding: 6rem 0 4rem;
    background: var(--secondary-color);
    min-height: 100vh;
}

.links-section h1 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.links-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 4rem auto;
    font-style: italic;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.link-card {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gray-600);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #7126B3);
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    background: var(--secondary-color);
}

.link-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.link-card p {
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.link-button:hover {
    background: #7126B3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
    color: var(--primary-color);
}

.link-button i {
    font-size: 1rem;
}

/* Special styling for featured links */
.link-card.featured {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.link-card.featured h3 {
    color: var(--primary-color);
}

.link-card.featured p {
    color: var(--gray-400);
}

.link-card.featured .link-button {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.link-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Responsive design for links page */
@media (max-width: 768px) {
    .links-section {
        padding: 4rem 0 3rem;
    }
    
    .links-section h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .links-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .link-card {
        padding: 2rem;
        border-radius: 15px;
    }
    
    .link-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .link-card p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .link-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .link-card {
        padding: 1.5rem;
    }
    
    .link-card h3 {
        font-size: 1.3rem;
    }
    
    .link-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* JM Logo Section */
.jm-logo-section {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--primary-color);
    border-top: 1px solid var(--gray-200);
}

.jm-logo {
    max-width: 200px;
    height: auto;
    opacity: 0.8;
    transition: var(--transition);
    filter: grayscale(20%);
}

.jm-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Responsive adjustments for JM logo */
@media (max-width: 768px) {
    .jm-logo-section {
        padding: 2rem 0;
    }
    
    .jm-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .jm-logo {
        max-width: 120px;
    }
}

/* Z-INDEX HIERARCHY */
/* 
 * 100-999: Content layers
 * 1000-1999: Modal and popup content  
 * 2000-2999: Navigation and fixed headers
 * 3000+: Critical system overlays
 */

/* Additional iOS fixes */
@supports (-webkit-touch-callout: none) {
    .header {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 2000;
    }
}

/* Mobile Navigation and Layout */
@media (max-width: 768px) {
    /* Mobile hamburger menu */
    .hamburger {
        display: flex;
        z-index: 2100;
        position: relative;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile navigation menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 2050;
        padding-top: 2rem;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--primary-color);
        padding: 1rem;
        display: block;
        border-radius: 10px;
        margin: 0 2rem;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(138, 43, 226, 0.2);
        color: var(--accent-color);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Header positioning for mobile */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 2000;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--gray-600);
    }
    
    .nav {
        min-height: 70px;
        padding: 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.3rem;
    }
      /* Hero section adjustments for mobile */
    .hero {
        padding-top: 90px;
        min-height: calc(100vh - 90px);
    }
    
    /* Image enlargement z-index for mobile */
    .placeholder-image.enlarged {
        z-index: 1500;
    }
    
    .image-overlay {
        z-index: 1400;
    }
}

@media (max-width: 480px) {
    /* Smaller mobile adjustments */
    .nav {
        min-height: 60px;
        padding: 0.75rem 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
      /* Enhanced mobile positioning */
    .hero {
        padding-top: 80px;
        min-height: calc(100vh - 80px);
    }
}
