/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-background-image-container{
    .hero-background-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
    .hygiene_text{
        color: #ff6b35;
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 30px 20px;
    background: #c4dedf;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    color: #041817;
    margin-bottom: 10px;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    /* background: #f8f9fa; */
    background: lightblue;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    /* background: #ff6b35; */
    background: #20b2aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    /* background: #e55a2b; */
    background: #20b2aa;
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-btn {
    /* background: #ff6b35; */
    background: #20b2aa;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    /* background: #e55a2b; */
    background: #20b2aa;
    transform: translateY(-2px);
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 8% auto;
    padding: 0;
    border-radius: 15px;
    width: 85%;
    max-width: 550px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.3s ease;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ff6b35;
}

.modal-content {
    padding: 40px;
}

.service-details {
    text-align: center;
}

.service-details h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.service-details .service-icon {
    margin-bottom: 30px;
}

.procedure-steps {
    text-align: left;
    margin: 30px 0;
}

.procedure-steps h3 {
    /* color: #ff6b35; */
    color: #20b2aa;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.procedure-steps ol {
    padding-left: 20px;
    margin-bottom: 30px;
}

.procedure-steps li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

.pricing-table {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
}

.pricing-table h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.pricing-item .service-name {
    font-weight: 600;
    color: #333;
}

.pricing-item .price {
    /* color: #ff6b35; */
    color: #20b2aa;
    font-weight: 600;
    font-size: 1.1rem;
}

.timing-info {
    /* background: #fff3e0; */
    background: #c4dedf;
    /* border-left: 4px solid #ff6b35; */
    border-left: 4px solid #20b2aa;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
}

.timing-info h4 {
    /* color: #ff6b35; */
    color: #20b2aa;
    margin-bottom: 10px;
}

.timing-info p {
    color: #666;
    margin-bottom: 5px;
}

.book-now-section {
    /* background: linear-gradient(135deg, #ff6b35, #e55a2b); */
    background: linear-gradient(135deg, #20b2aa, #0e444a);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    color: white;
    /* box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3); */
    box-shadow: 0 8px 25px rgba(211, 243, 245, 0.3);
}

.book-now-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.book-now-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.book-now-btn {
    background: white;
    /* color: #ff6b35; */
    color: #20b2aa;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.book-now-btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.book-button-container {
    text-align: center;
    margin: 30px 0 20px 0;
}

.book-button-container .book-appointment-btn {
    background: #20b2aa;
    position: static;
    transform: none;
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    /* box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3); */
    box-shadow: 0 4px 15px rgba(211, 243, 245, 0.3);
    transition: all 0.3s ease;
}

.book-button-container .book-appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery CTA Button */
.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    display: inline-block;
    padding: 15px 40px;
    /* background: #ff6b35; */
    background: #254865;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.view-more-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f9fa;
    .testimonials-heading {
        font-size: 2.4rem;
        font-weight: bold;
    }
}


.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #ffd700;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.client-info h4 {
    color: #333;
    margin-bottom: 5px;
}

.client-info span {
    color: #ff6b35;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    /* color: #ff6b35; */
    color: #20b2aa;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-btn {
    padding: 15px 30px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ff6b35;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ff6b35;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Floating Contact Icons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.floating-btn.whatsapp {
    background: #25d366;
}

.floating-btn.call {
    background: #ff6b35;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Book Appointment Button */
.book-appointment-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translate(-50%, 20px);
    pointer-events: none;
}

.book-appointment-btn.show {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: all;
}

.book-appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.book-appointment-btn i {
    font-size: 16px;
}

.book-appointment-btn span {
    white-space: nowrap;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    .nav-logo img {
        width: 40px;
        height: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .about {
        padding: 30px 0;
    }
    
    .about h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat {
        padding: 20px 15px;
    }
    
    .stat h3 {
        font-size: 2rem;
    }

    .services {
        padding: 60px 0;
    }
    
    .services h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }

    .gallery {
        padding: 60px 0;
    }
    
    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .gallery-item img {
        height: 100%;
    }

    .testimonials {
        padding: 60px 0;
        .testimonials-heading {
            font-size: 1.4rem;
            font-weight: bold;
        }
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }

    .contact {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
    }

    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Show book appointment button on mobile */
    .book-appointment-btn {
        display: flex;
        bottom: 20px;
        padding: 10px 16px;
        font-size: 13px;
        opacity: 0;
        transform: translate(-50%, 20px);
        pointer-events: none;
    }
    
    .book-appointment-btn.show {
        opacity: 1;
        transform: translate(-50%, 0);
        pointer-events: all;
    }
    
    /* Artists section mobile fixes */
    .artists-section {
        padding: 40px 0 25px 0;
    }
    
    .artists-heading {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .artists-subheading {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .profile-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .profile-card {
        max-width: 100%;
        width: 100%;
        padding: 24px 20px 20px 20px;
    }
    
    .profile-card .artist-photo {
        width: 120px;
        height: 120px;
    }
    
    .profile-card h3 {
        font-size: 1.2rem;
    }
    
    .profile-card .artist-title {
        font-size: 1rem;
    }
    
    .profile-card .artist-details {
        font-size: 0.9rem;
    }
    
    .profile-card .artist-bio {
        font-size: 0.9rem;
    }
    
    /* Container padding for mobile */
    .container {
        padding: 0 15px;
    }
}

/* Hide book appointment button on desktop */
@media (min-width: 769px) {
    .book-appointment-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .hero p {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 12px;
    }
    
    .about h2,
    .services h2,
    .gallery h2,
    .testimonials h2,
    .contact h2,
    .artists-heading {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    
    .artists-subheading {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item img {
        height: 450px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .profile-card {
        padding: 18px 12px;
    }
    
    .profile-card .artist-photo {
        width: 70px;
        height: 70px;
    }
    
    .floating-contact {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .book-appointment-btn {
        bottom: 15px;
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .book-appointment-btn span {
        font-size: 12px;
    }
}

@media (max-width: 450px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    /* Mobile hero background image optimizations for very small screens */
    .hero-background-image-container{
        .hero-background-image {
            padding-top: 69px;
            max-width: 100%;
            object-position: center center;
            /* Switch to mobile background image on small screens */
            content: url('gallery/MobBG.JPG');
        }
    }
    
    .container {
        padding: 0 10px;
    }
    
    .about h2,
    .services h2,
    .gallery h2,
    .testimonials h2,
    .contact h2,
    .artists-heading {
        font-size: 2.5rem;
    }
    
    .artists-subheading {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .profile-card {
        padding: 15px 10px;
    }
    
    .profile-card .artist-photo {
        width: 60px;
        height: 60px;
    }
    
    .floating-contact {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .book-appointment-btn {
        bottom: 10px;
        padding: 6px 12px;
        font-size: 11px;
    }
    
    /* Ensure service button is centered on very small mobile */
    .service-btn {
        margin: 0 auto;
        width: fit-content;
    }
} 

.artist-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px 0 16px 0;
}
.artist-card {
    flex: 1 1 220px;
    max-width: 260px;
    min-width: 180px;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    margin: 0;
    box-shadow: 0 1px 6px rgba(255, 107, 53, 0.08);
    background: #fff7f2;
    border-radius: 12px;
}
.artist-photo {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}
.artist-info {
    text-align: center;
    min-width: 0;
}
.artist-title {
    font-size: 0.98rem;
    margin-bottom: 4px;
}
.artist-details {
    font-size: 0.93rem;
    margin-bottom: 6px;
}
.artist-bio {
    font-size: 0.92rem;
    margin-top: 4px;
}
@media (max-width: 800px) {
    .artist-cards {
        gap: 12px;
    }
    .artist-card {
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .artist-cards {
        flex-direction: column;
        align-items: center;
    }
    .artist-card {
        width: 100%;
        max-width: 340px;
    }
} 

.profile-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 24px;
}
.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff7f2;
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(255, 107, 53, 0.08);
    padding: 24px 20px 20px 20px;
    min-width: 280px;
    max-width: 320px;
    flex: 1 1 0;
    margin: 0;
}
.profile-card .artist-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid #ff6b35;
}
.profile-card h3 {
    margin: 6px 0 2px 0;
    font-size: 1.08rem;
}
.profile-card .artist-title {
    font-size: 0.97rem;
    color: #ff6b35;
    margin-bottom: 6px;
    text-align: center;
}
.profile-card .artist-details {
    font-size: 0.92rem;
    margin-bottom: 6px;
    padding: 0;
    list-style: none;
    text-align: left;
}
.profile-card .artist-details li {
    margin-bottom: 2px;
}

.profile-card .artist-details strong {
    color: #ff6b35;
    font-weight: 600;
}

/* Mobile-only number highlighting */
@media (max-width: 768px) {
    .profile-card .artist-details .highlight-number {
        color: #ff6b35;
        font-weight: 700;
        font-size: 1.1em;
        text-shadow: 0 1px 2px rgba(255, 107, 53, 0.3);
    }
}
.mobile-artists .highlight-number {
    color: #ff6b35;
    font-weight: 700;
    font-size: 1.1em;
}
.profile-card .artist-bio {
    font-size: 0.91rem;
    color: #444;
    text-align: center;
    margin-top: 4px;
}
@media (max-width: 900px) {
    .profile-row {
        gap: 20px;
    }
    .profile-card {
        max-width: 260px;
        min-width: 240px;
        padding: 20px 16px 16px 16px;
    }
    .profile-card .artist-photo {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 700px) {
    .profile-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .profile-card {
        max-width: 320px;
        width: 100%;
        padding: 24px 20px 20px 20px;
    }
    .profile-card .artist-photo {
        width: 120px;
        height: 120px;
    }
} 

.artists-section {
    padding: 48px 0 32px 0;
    background: #fffaf7;
}
.artists-heading {
    text-align: center;
    color: #ff6b35;
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.artists-subheading {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 32px;
    font-style: italic;
    letter-spacing: 0.3px;
} 

.book-nav-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 22px;
    font-weight: 600;
    margin-left: 18px;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.10);
    border: none;
    outline: none;
    display: inline-block;
    text-align: center;
}
.book-nav-btn:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    color: #fff;
}
@media (max-width: 768px) {
    .book-nav-btn {
        display: none !important;
    }
} 

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Improve touch targets */
    .nav-menu a,
    .cta-button,
    .service-btn,
    .submit-btn,
    .view-more-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Ensure service button is properly centered */
    .service-btn {
        margin: 0 auto;
        width: fit-content;
    }
    
    /* Better spacing for mobile */
    .hero {
        height: 500px;
        padding-top: 70px; /* Account for fixed navbar */
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    /* Improve mobile gallery */
    .gallery-item {
        margin-bottom: 0;
    }
    
    /* Better mobile form */
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile-optimized stats */
    .about-stats {
        margin-top: 20px;
    }
    
    /* Better mobile service cards */
    .service-card {
        margin-bottom: 0;
    }
    
    /* Mobile-optimized testimonials */
    .testimonial-card {
        margin-bottom: 0;
    }
    
    /* Improve mobile footer */
    .footer-section {
        margin-bottom: 20px;
    }
    
    /* Better mobile social links */
    .social-links {
        justify-content: center;
    }
    
    /* Mobile-optimized floating buttons */
    .floating-contact {
        z-index: 998;
    }
    
    /* Ensure book button is visible */
    .book-appointment-btn {
        z-index: 999;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile optimizations */
    .hero-content {
        padding: 0 15px;
    }
    
    .gallery-item img {
        height: 450px;
    }
    
    .service-card {
        margin-bottom: 0;
    }
    
    .testimonial-card {
        margin-bottom: 0;
    }
    
    .profile-card {
        margin-bottom: 0;
    }
    
    /* Better mobile navigation */
    .nav-menu {
        padding: 15px 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-menu a {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Ensure service button is centered on small mobile */
    .service-btn {
        margin: 0 auto;
        width: fit-content;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .nav-menu {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
}

/* High DPI mobile devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .gallery-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll; /* Better mobile performance */
    }
    
    /* Reduce animations on mobile for better performance */
    .gallery-item:hover,
    .service-card:hover,
    .testimonial-card:hover {
        transform: none;
    }
    
    .gallery-item img:hover {
        transform: none;
    }
} 

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 20px 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu li {
        margin: 15px 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu li:nth-child(7) { transition-delay: 0.4s; }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 12px 20px;
        display: block;
        border-radius: 8px;
        margin: 0 15px;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(255, 107, 53, 0.1);
        color: #ff6b35;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: #ff6b35;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background: #ff6b35;
    }
} 

/* Service Modal Mobile Optimizations */
@media (max-width: 768px) {
    .modal-content {
        width: 92%;
        margin: 8% auto;
        max-height: 75vh;
        overflow-y: auto;
    }
    
    .service-details {
        padding: 20px;
    }
    
    .service-details h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .procedure-steps h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .procedure-steps ol {
        padding-left: 15px;
    }
    
    .procedure-steps li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .pricing-table {
        padding: 20px;
        margin: 20px 0;
    }
    
    .pricing-item {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .timing-info {
        padding: 15px;
        margin: 20px 0;
    }
    
    .timing-info h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .timing-info p {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .book-now-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .book-now-section h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .book-now-section p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .book-now-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .modal-close {
        right: 15px;
        top: 10px;
        font-size: 24px;
    }
    
    .book-button-container .book-appointment-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        margin: 6% auto;
        max-height: 70vh;
    }
    
    .service-details {
        padding: 15px;
    }
    
    .service-details h2 {
        font-size: 1.3rem;
    }
    
    .pricing-table {
        padding: 15px;
    }
    
    .timing-info {
        padding: 12px;
    }
    
    .book-button-container .book-appointment-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .modal-content {
        width: 98%;
        margin: 4% auto;
        max-height: 65vh;
    }
    
    .service-details {
        padding: 12px;
    }
    
    .service-details h2 {
        font-size: 1.2rem;
    }
    
    .pricing-table {
        padding: 12px;
    }
    
    .timing-info {
        padding: 10px;
    }
    
    .book-button-container .book-appointment-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/* Service Modal Booking Form Styles */
.booking-form-container {
    margin-top: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.booking-form-container h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #ff6b35;
    font-size: 1.4rem;
}

.booking-form-container .booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking-form-container .booking-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.booking-form-container .booking-form input,
.booking-form-container .booking-form textarea,
.booking-form-container .booking-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.3s ease;
}

.booking-form-container .booking-form input:focus,
.booking-form-container .booking-form textarea:focus,
.booking-form-container .booking-form select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}

.booking-form-container .booking-form textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form-container .form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.booking-form-container .book-btn {
    flex: 1;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form-container .book-btn:hover {
    background: linear-gradient(135deg, #f7931e, #ff6b35);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.booking-form-container .cancel-btn {
    flex: 1;
    background: #6c757d;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-form-container .cancel-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Responsive styles for booking form in modal */
@media (max-width: 768px) {
    .booking-form-container {
        padding: 20px;
    }
    
    .booking-form-container .form-buttons {
        flex-direction: column;
    }
    
    .booking-form-container .book-btn,
    .booking-form-container .cancel-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .booking-form-container {
        padding: 15px;
    }
    
    .booking-form-container h3 {
        font-size: 1.2rem;
    }
    
    .booking-form-container .booking-form input,
    .booking-form-container .booking-form textarea,
    .booking-form-container .booking-form select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .booking-form-container {
        padding: 12px;
    }
    
    .booking-form-container .form-buttons {
        gap: 10px;
    }
    
    .booking-form-container .book-btn,
    .booking-form-container .cancel-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* True Stories Section */
.true-stories {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    background: lightblue;
}

.true-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.true-stories-subheading {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    /* color: #ff6b35; */
    color: #000000;
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
    font-style: italic;
}

.video-container {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.true-stories-video {
    width: 100vh;
    height: 1538px;
    display: block;
    border-radius: 20px;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(247, 147, 30, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.video-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.video-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive styles for True Stories section */
@media (max-width: 768px) {
    .true-stories {
        padding: 60px 0;
    }
    
    .true-stories h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .true-stories-subheading {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    
    .video-container {
        margin: 0 20px;
    }
    
    .video-content h3 {
        font-size: 1.5rem;
    }
    
    .video-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .true-stories {
        padding: 40px 0;
    }
    
    .true-stories h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .true-stories-subheading {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .video-container {
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .true-stories-video {
        height: 100vh;
        width: 438px;
    }
    
    .video-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .video-content p {
        font-size: 0.9rem;
    }
}

/* Mobile Gallery Slideshow Styles */
.mobile-gallery-slideshow {
    display: none;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}


.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slideshow-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #ff6b35;
}

.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.slideshow-next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: rgba(255, 107, 53, 1);
    transform: translateY(-50%) scale(1.1);
}

/* Desktop Gallery - Show on desktop, hide on mobile */
.desktop-gallery {
    display: grid;
}

/* Mobile Artist Section Styles */
.mobile-artists {
    display: none;
}

.mobile-artist-section {
    margin-bottom: 40px;
}

.mobile-artist-image {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.full-screen-artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mobile-artist-content {
    padding: 0 20px;
    text-align: center;
}

.mobile-artist-content h3 {
    font-size: 2.8rem;
    color: #ff6b35;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Dancing Script';
}

.mobile-artist-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.mobile-artist-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    text-align: left;
    padding: 0 10px;
}

/* Desktop Artists - Show on desktop, hide on mobile */
.desktop-artists {
    display: flex;
}

/* Mobile Responsive Styles for Artists and Gallery */
@media (max-width: 768px) {
    /* Hide desktop layout on mobile */
    .desktop-artists {
        display: none;
    }
    
    .desktop-gallery {
        display: none;
    }
    
    /* Show mobile layout on mobile */
    .mobile-artists {
        display: block;
    }
    
    .mobile-gallery-slideshow {
        display: block;
    }
    
    .slideshow-container {
        height: 60vh;
    }
    
    .slideshow-dots {
        margin-top: 15px;
    }
    
    .dot {
        height: 10px;
        width: 10px;
        margin: 0 4px;
    }
    
    .slideshow-prev,
    .slideshow-next {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .mobile-artist-image {
        height: 80vh;
        margin-bottom: 25px;
    }
    
    .mobile-artist-content h3 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .mobile-artist-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .mobile-artist-bio {
        font-size: 0.95rem;
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 50vh;
    }
    
    .slideshow-dots {
        margin-top: 12px;
    }
    
    .dot {
        height: 8px;
        width: 8px;
        margin: 0 3px;
    }
    
    .slideshow-prev,
    .slideshow-next {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .mobile-artist-image {
        height: 70vh;
        margin-bottom: 20px;
    }
    
    .mobile-artist-content {
        padding: 0 15px;
    }
    
    .mobile-artist-content h3 {
        font-size: 2.4rem;
        font-weight: bold;
    }
    
    .mobile-artist-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .mobile-artist-bio {
        font-size: 0.9rem;
        padding: 0;
    }
}

@media (max-width: 360px) {
    .slideshow-container {
        height: 45vh;
    }
    
    .slideshow-dots {
        margin-top: 10px;
    }
    
    .dot {
        height: 7px;
        width: 7px;
        margin: 0 2px;
    }
    
    .slideshow-prev,
    .slideshow-next {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .mobile-artist-image {
        height: 60vh;
        margin-bottom: 15px;
    }
    
    .mobile-artist-content {
        padding: 0 10px;
    }
    
    .mobile-artist-content h3 {
        font-size: 2.3rem;
    }
    
    .mobile-artist-title {
        font-size: 0.95rem;
    }
    
    .mobile-artist-bio {
        font-size: 0.85rem;
    }
}

/* JarSync Link Styling */
.jarsync-link {
    color: rgb(255, 230, 6) !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.jarsync-link:hover {
    opacity: 0.8;
} 