body {
    background-color: #fff5f7;
    font-family: Arial, sans-serif;
    margin: 30px;
}

h1 {
    color: #d63384;
    font-size: 48px;
}

h2 {
    color: #444;
}
h3 {
    color: #444;
    text-align: center;
}
img {
    border-radius: 10px;
}

p {
    font-size: 18px;
}

button {
    background-color: #d63384;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
}

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

nav a{
    text-decoration:none;
    color:#333;
    font-weight:bold;
    transition: .3s;
}

nav a:hover{
    color:#ffd6e8;
}
.hero{
    background: linear-gradient(135deg, #fff5f8, #ffe8f3);
}
.hero{
    text-align:center;
}
.hero-text h1{
    font-size: 80px;
    line-height: 1.1;
    
}
.hero-text h2{
    font-size: 40px;
    
}
.hero{
    width: 100%;
    background: #fff5f8;
    padding: 20px;
}

.hero img{
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
nav{
    background:#d63384;
    padding:15px;
    text-align: center;
}
nav a{
    color: white;
    text-decoration: none;
    margin: 20px;
    font-size: 20px;
    font-weight: bold;
    transition: .3s;
}
nav a:hover{
    color: #ffd8ea;
}
button{
    background: #d63384;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;

}
button:hover{
    background: #b0266b;
    transform: scale(1.05);
}

.hero{
    width:100%;
    background:#fff5f8;
    padding:20px;
}

.book{
    width:100%;
    height:auto;
    display:block;
    margin:auto;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}
.hero-buttons{
    margin-top: 30px;
}
.hero-buttons button{
    margin-right: 15px;
}
.outline-btn{
    background-color: white;
    color: #d63384;
    border: 2px solid #d63384;
}
.outline-btn:hover{
    background-color: #d63384;
    color: white;
}

.services{
    padding:60px 10%;
    text-align:center;
}

.services h2{
    color:#d63384;
    font-size:40px;
    margin-bottom:40px;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap: 25px;
}

.service-card{
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
    text-align:center;
    transition: .3s ease;
}
    .service-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:15px;
   transition: .4s;
}
.service-card:hover img{
    transform: scale(1.05);
}

.service-card h3{
    color:#d63384;
    transition: .3s;
}

.service-card p{
    margin: 10px 0;
    transition: .3s;
}
.service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .18);
}
.service-card button{
    background:#d63384;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:8px;
    cursor:pointer;
}

.service-card button:hover{
    background:#b82570;
}
.why-choose{
    padding:70px 8%;
    background:#fff;
    text-align:center;
}

.why-choose h2{
    font-size:40px;
    color:#d63384;
    margin-bottom:50px;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff5fa;
    padding:30px 20px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    transition:.3s;
}

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

.icon{
    font-size:45px;
    margin-bottom:15px;
}

.why-card h3{
    color:#d63384;
    margin-bottom:15px;
}

.why-card p{
    line-height:1.6;
    color:#555;
}
.service-card h3,
.feature-card h3{
    color: #d63384;
    font-size: 30px;
    margin-bottom: 15px;
}

.become-artist{
    width:100%;
    text-align:center;
    padding:60px;
    background:white;
    border-radius:20px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}
.artist-container{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:50px 0;
}

.artist-card{
    width:450px;
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    transition:0.3s;
}

.artist-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,0.18);
}

.artist-card h3{
    color:#d63384;
    font-size:36px;
    margin-bottom:15px;
}

.artist-card p{
    font-size:22px;
    margin-bottom:25px;
}

.artist-card button{
    background:#d63384;
    color:white;
    border:none;
    padding:12px 30px;
    border-radius:8px;
    cursor:pointer;
    font-size:18px;
}

.artist-card button:hover{
    background:#b82570;
}
.how-it-works{
    padding:50px 8% 80px;
    background:#fff;
    text-align:center;
}

.how-it-works h2{
    font-size:42px;
    color:#d63384;
    margin-bottom:50px;
}

.steps-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.step-card{
    background:#fff5fa;
    padding:40px 25px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    position:relative;
    transition:.3s;
}

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

.step-number{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    width:40px;
    height:40px;
    background:#d63384;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
}

.step-icon{
    font-size:55px;
    margin:20px 0 15px;
}

.step-card h3{
    color:#d63384;
    margin-bottom:15px;
}

.step-card p{
    color:#555;
    line-height:1.6;
}
.join-artist{
    padding:80px 8%;
    background:linear-gradient(135deg,#fff5fa,#ffe4ef);
    text-align:center;
}

.join-artist h2{
    font-size:42px;
    color:#d63384;
    margin-bottom:15px;
}

.join-subtitle{
    font-size:18px;
    color:#555;
    max-width:700px;
    margin:0 auto 50px;
    line-height:1.6;
}

.join-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.join-card{
    background:#fff;
    padding:30px 20px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    transition:.3s;
}

.join-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.join-icon{
    font-size:50px;
    margin-bottom:20px;
}

.join-card h3{
    color:#d63384;
    margin-bottom:15px;
}

.join-card p{
    color:#555;
    line-height:1.6;
}
.join-text{
    margin-top:50px;
    margin-bottom:30px;
    font-size:20px;
    color:#555;
    font-weight:500;
}

.join-btn{
    display:inline-block;
    margin-top:50px;
    background:#d63384;
    color:#fff;
    text-decoration:none;
    padding:18px 50px;
    border-radius:12px;
    font-size:20px;
    font-weight:bold;
    transition:.3s;
}

.join-btn:hover{
    background:#b82570;
    transform:scale(1.05);
}
/* ================= FOOTER ================= */

footer{
    background:#222;
    color:white;
    padding:60px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-box h2{
    color:#ff4fa0;
    margin-bottom:20px;
}

.footer-box h3{
    color:#ff4fa0;
    margin-bottom:20px;
}

.footer-box p{
    color:#ddd;
    line-height:1.8;
}

.footer-box a{
    display:block;
    color:#ddd;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-box a:hover{
    color:#ff4fa0;
    padding-left:8px;
}

footer hr{
    border:none;
    height:1px;
    background:#555;
    margin:40px 0 20px;
}

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    color:#bbb;
}
/* ===========================
   Artist Registration Page
=========================== */

.register-page{
    min-height:100vh;
    background:linear-gradient(135deg,#ffe4ec,#fff7fa);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px 20px;
}

.register-container{
    width:1100px;
    max-width:100%;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    display:flex;
   box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.register-left{
    width:45%;
    background:#ff4f87;
    color:white;
    text-align:center;
    padding:50px 30px;
}

.register-left h1{
    font-size:40px;
    margin-bottom:20px;
    color: #fff5f8;
}

.register-left p{
    line-height:1.7;
    margin-bottom:30px;
}

.register-left img{
    width:85%;
    max-width:280px;
    border-radius:15px;
    margin-top:20px;
}

.register-right{
    width:55%;
    padding:50px;
}

.register-right h2{
    text-align:center;
    margin-bottom:30px;
    color:#ff4f87;
}

.register-right form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.register-right input{

    padding:15px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    transition:.3s;

}
.register-right input:focus{
    border-color: #ff4f87;
    box-shadow: 0 0 8px rgba(225, 79, 135,.25);
}


.register-right button{

    background:linear-gradient(45deg,#ff4f87,#ff7aa8);

    color:white;

    border:none;

    padding:16px;

    font-size:18px;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}

.register-right button:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 20px rgba(255,79,135,.35);

}
.back-home{

    position:absolute;

    top:25px;

    left:30px;

    text-decoration:none;

    color:#ff4f87;

    font-size:18px;

    font-weight:bold;

}

.back-home:hover{

    color:#d6336c;

}
.register-subtitle{

    text-align:center;

    color:#777;

    margin-top:-15px;

    margin-bottom:30px;

    line-height:1.6;

}
.login-text{

    text-align:center;

    margin-top:20px;

}

.login-text a{

    color:#ff4f87;

    text-decoration:none;

    font-weight:bold;

}

.login-text a:hover{

    text-decoration:underline;

}
.artist-benefits{

    margin-top:30px;

    text-align:left;

}

.artist-benefits p{

    margin:15px 0;

    font-size:18px;

}
.logo{
    font-size:32px;
    margin-bottom:30px;
    color:white;
    letter-spacing:1px;
}

.register-right input:hover{
    border-color:#ff7aa8;
}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}
.back-home{
    position:fixed;
    top:20px;
    left:20px;
    background:white;
    color:#ff4f87;
    padding:10px 18px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    z-index:1000;
}

.back-home:hover{
    background:#ff4f87;
    color:white;
}
/* ============================= */
/* ARTIST LOGIN PAGE */
/* ============================= */

.login-container {
    width: 90%;
    max-width: 420px;
    margin: 80px auto;
    padding: 40px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.login-container h1
 {
    color: #b76e79;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #666;
    margin-bottom: 30px;
}

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

.login-form input {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.login-form input:focus {
    border-color: #b76e79;
}

.login-btn {
    padding: 14px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #9d5965;
}

.forgot-password {
    display: block;
    margin-top: 18px;
    color: #b76e79;
    text-decoration: none;
}

.register-text {
    margin-top: 25px;
    color: #555;
}

.register-text a {
    color: #b76e79;
    font-weight: bold;
    text-decoration: none;
}

.back-home {
    display: inline-block;
    margin-top: 20px;
    color: #777;
    text-decoration: none;
}
/* ============================= */
/* ARTIST DASHBOARD */
/* ============================= */

.dashboard-container {
    display: flex;
    min-height: 100vh;
    background-color: #fff7f8;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: #b76e79;
    padding: 30px 20px;
    color: white;
}

.sidebar h2 {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar nav a {
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 17px;
}

.sidebar nav a:hover {
    background-color: #9d5965;
}

/* Main Content */
.dashboard-main {
    flex: 1;
    padding: 50px;
}

.dashboard-main h1 {
    color: #b76e79;
    font-size: 45px;
    margin-bottom: 10px;
}

.dashboard-main > p {
    color: #666;
    font-size: 18px;
}

/* Dashboard Cards */
.dashboard-cards {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.dashboard-card {
    background-color: white;
    padding: 30px;
    width: 220px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.dashboard-card h3 {
    color: #555;
    margin-bottom: 20px;
}

.dashboard-card p {
    color: #b76e79;
    font-size: 32px;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .dashboard-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        box-sizing: border-box;
    }

    .dashboard-main {
        padding: 25px;
    }

    .dashboard-main h1 {
        font-size: 35px;
    }

    .dashboard-cards {
        flex-direction: column;
    }

    .dashboard-card {
        width: 100%;
        box-sizing: border-box;
    }
}
/* ============================= */
/* ARTIST PROFILE PAGE */
/* ============================= */

.profile-container {
    min-height: 100vh;
    background-color: #fff7f8;
    padding: 40px 20px;
    box-sizing: border-box;
}

.back-dashboard {
    display: inline-block;
    margin-bottom: 25px;
    color: #b76e79;
    text-decoration: none;
    font-weight: bold;
}

.back-dashboard:hover {
    color: #9d5965;
}

.profile-card {
    max-width: 650px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.profile-card h1 {
    text-align: center;
    color: #b76e79;
    margin-bottom: 10px;
}

.profile-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-form label {
    font-weight: bold;
    color: #444;
    margin-top: 8px;
}

.profile-form input,
.profile-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}

.profile-form input:focus,
.profile-form textarea:focus {
    border-color: #b76e79;
}

.profile-form textarea {
    resize: vertical;
}

.save-profile-btn {
    margin-top: 20px;
    padding: 14px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.save-profile-btn:hover {
    background-color: #9d5965;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .profile-card {
        padding: 25px;
    }
}
/* ============================= */
/* ARTIST SERVICES PAGE */
/* ============================= */

.services-container {
    min-height: 100vh;
    background-color: #fff7f8;
    padding: 40px 20px;
    box-sizing: border-box;
}

.services-card {
    max-width: 650px;
    margin: 20px auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.services-card h1 {
    text-align: center;
    color: #b76e79;
    margin-bottom: 10px;
}

.services-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.services-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-form label {
    font-weight: bold;
    color: #444;
    margin-top: 8px;
}

.services-form input,
.services-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}

.services-form input:focus,
.services-form textarea:focus {
    border-color: #b76e79;
}

.services-form textarea {
    resize: vertical;
}

.add-service-btn {
    margin-top: 15px;
    padding: 14px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.add-service-btn:hover {
    background-color: #9d5965;
}
/* ============================= */
/* ARTIST PORTFOLIO PAGE */
/* ============================= */

.portfolio-container {
    min-height: 100vh;
    background-color: #fff7f8;
    padding: 40px 20px;
    box-sizing: border-box;
}

.portfolio-card {
    max-width: 650px;
    margin: 20px auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.portfolio-card h1 {
    text-align: center;
    color: #b76e79;
    margin-bottom: 10px;
}

.portfolio-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.portfolio-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.portfolio-form label {
    font-weight: bold;
    color: #444;
    margin-top: 8px;
}

.portfolio-form input,
.portfolio-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}

.portfolio-form input:focus,
.portfolio-form textarea:focus {
    border-color: #b76e79;
}

.portfolio-form textarea {
    resize: vertical;
}

.add-portfolio-btn {
    margin-top: 15px;
    padding: 14px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.add-portfolio-btn:hover {
    background-color: #9d5965;

}
.added-portfolio-item img {
    width: 100%;
    max-width: 350px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 20px auto;
}
/* ============================= */
/* ARTIST AVAILABILITY PAGE */
/* ============================= */

.availability-container {
    min-height: 100vh;
    background-color: #fff7f8;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Main Card */
.availability-card {
    max-width: 650px;
    margin: 20px auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Heading */
.availability-card h1 {
    text-align: center;
    color: #b76e79;
    margin-bottom: 10px;
}

/* Subtitle */
.availability-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* Form */
.availability-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Label */
.availability-form label {
    font-weight: bold;
    color: #444;
}

/* Date Input */
.availability-form input[type="date"] {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
}

.availability-form input[type="date"]:focus {
    border-color: #b76e79;
}

/* Add Availability Button */
.save-availability-btn {
    margin-top: 10px;
    padding: 14px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.save-availability-btn:hover {
    background-color: #9d5965;
}

/* Mobile */
@media (max-width: 600px) {

    .availability-card {
        padding: 25px;
    }

}
/* ============================= */
/* ARTIST BOOKINGS PAGE */
/* ============================= */

.bookings-container {
    min-height: 100vh;
    background-color: #fff7f8;
    padding: 40px 30px;
    box-sizing: border-box;
}

.bookings-header {
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
}

.bookings-header h1 {
    color: #b76e79;
    font-size: 42px;
    margin-bottom: 10px;
}

.bookings-header p {
    color: #666;
    font-size: 17px;
}

/* Booking List */
.bookings-list {
    max-width: 900px;
    margin: 30px auto;
}

/* Individual Booking Card */
.booking-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.booking-info h2 {
    color: #b76e79;
    margin-top: 0;
    margin-bottom: 20px;
}

.booking-info p {
    color: #555;
    margin: 10px 0;
    font-size: 16px;
}

/* Booking Status */
.booking-status {
    color: #b76e79;
    font-weight: bold;
}

/* Buttons */
.booking-actions {
    display: flex;
    gap: 10px;
}

.accept-booking-btn,
.reject-booking-btn {
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.accept-booking-btn {
    background-color: #b76e79;
    color: white;
}

.accept-booking-btn:hover {
    background-color: #9d5965;
}

.reject-booking-btn {
    background-color: #eee;
    color: #555;
}

.reject-booking-btn:hover {
    background-color: #ddd;
}

/* Mobile Responsive */
@media (max-width: 600px) {

    .booking-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-actions {
        width: 100%;
    }

    .accept-booking-btn,
    .reject-booking-btn {
        flex: 1;
    }
}
/* ============================= */
/* ARTIST EARNINGS PAGE */
/* ============================= */

.earnings-container {
    min-height: 100vh;
    background-color: #fff7f8;
    padding: 40px 30px;
    box-sizing: border-box;
}

.earnings-header {
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
}

.earnings-header h1 {
    color: #b76e79;
    font-size: 42px;
    margin-bottom: 10px;
}

.earnings-header p {
    color: #666;
    font-size: 17px;
}

/* Earnings Summary Cards */
.earnings-cards {
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    gap: 25px;
}

.earning-card {
    flex: 1;
    background-color: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.earning-card h3 {
    color: #555;
    margin-bottom: 15px;
}

.earning-card p {
    color: #b76e79;
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

/* Earnings History */
.earnings-history {
    max-width: 900px;
    margin: 30px auto;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.earnings-history h2 {
    color: #b76e79;
    margin-top: 0;
}

.no-earnings {
    color: #777;
    text-align: center;
    padding: 25px 0;
}

/* Mobile Responsive */
@media (max-width: 700px) {

    .earnings-cards {
        flex-direction: column;
    }

    .earnings-header h1 {
        font-size: 34px;
    }
}
/* ============================= */
/* FIND MAKEUP ARTISTS PAGE */
/* ============================= */

.find-artists-container {
    min-height: 100vh;
    background-color: #fff7f8;
    padding: 40px 30px;
    box-sizing: border-box;
}

/* Page Header */
.find-artists-header {
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
}

.find-artists-header h1 {
    color: #b76e79;
    font-size: 42px;
    margin-bottom: 10px;
}

.find-artists-header p {
    color: #666;
    font-size: 17px;
}

/* Search Section */
.artist-search {
    max-width: 700px;
    margin: 35px auto;
    display: flex;
    gap: 12px;
}

.artist-search input {
    flex: 1;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.artist-search input:focus {
    border-color: #b76e79;
}

.search-artist-btn {
    padding: 14px 25px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.search-artist-btn:hover {
    background-color: #9d5965;
}

/* Artists List */
.artists-list {
    max-width: 900px;
    margin: 40px auto;
}

/* Artist Card */
.artist-card {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    display: flex;
    align-items: center;
    gap: 30px;
}

/* Artist Image */
.artist-image-placeholder {
    width: 180px;
    height: 180px;
    background-color: #f5e6e9;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b76e79;
    font-weight: bold;
}

/* Artist Details */
.artist-details h2 {
    color: #b76e79;
    margin-top: 0;
}

.artist-details p {
    color: #555;
    margin: 10px 0;
}

/* View Profile Button */
.view-profile-btn {
    margin-top: 10px;
    padding: 12px 22px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.view-profile-btn:hover {
    background-color: #9d5965;
}

/* Mobile Responsive */
@media (max-width: 650px) {

    .artist-search {
        flex-direction: column;
    }

    .artist-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .artist-image-placeholder {
        width: 100%;
    }

    .find-artists-header h1 {
        font-size: 32px;
    }
}
/* ============================= */
/* PUBLIC ARTIST PROFILE PAGE */
/* ============================= */

.public-profile-container {
    min-height: 100vh;
    background-color: #fff7f8;
    padding: 40px 30px;
    box-sizing: border-box;
}

/* Profile Header */
.public-profile-header {
    max-width: 900px;
    margin: 30px auto;
    padding: 35px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    display: flex;
    align-items: center;
    gap: 35px;
}

/* Artist Photo */
.public-profile-photo {
    width: 200px;
    height: 200px;
    background-color: #f5e6e9;
    border-radius: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b76e79;
    font-weight: bold;
    flex-shrink: 0;
}

/* Artist Information */
.public-profile-info h1 {
    color: #b76e79;
    margin-top: 0;
}

.public-profile-info p {
    color: #555;
    margin: 10px 0;
    font-size: 16px;
}

/* Book Now Button */
.book-now-btn {
    margin-top: 15px;
    padding: 13px 30px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.book-now-btn:hover {
    background-color: #9d5965;
}

/* Profile Sections */
.public-profile-section {
    max-width: 900px;
    margin: 25px auto;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.public-profile-section h2 {
    color: #b76e79;
    margin-top: 0;
    margin-bottom: 15px;
}

.public-profile-section p {
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 650px) {

    .public-profile-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .public-profile-photo {
        width: 100%;
    }

    .book-now-btn {
        width: 100%;
    }
}
/* ============================= */
/* CUSTOMER BOOKING PAGE */
/* ============================= */

.booking-form-container {
    min-height: 100vh;
    background-color: #fff7f8;
    padding: 40px 20px;
    box-sizing: border-box;
}

.customer-booking-card {
    max-width: 650px;
    margin: 20px auto;
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.customer-booking-card h1 {
    text-align: center;
    color: #b76e79;
    margin-bottom: 10px;
}

.booking-form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* Booking Form */
.customer-booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.customer-booking-form label {
    font-weight: bold;
    color: #444;
    margin-top: 8px;
}

.customer-booking-form input,
.customer-booking-form select,
.customer-booking-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    background-color: white;
}

.customer-booking-form input:focus,
.customer-booking-form select:focus,
.customer-booking-form textarea:focus {
    border-color: #b76e79;
}

.customer-booking-form textarea {
    resize: vertical;
}

/* Send Booking Button */
.send-booking-btn {
    margin-top: 20px;
    padding: 14px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
}

.send-booking-btn:hover {
    background-color: #9d5965;
}

/* Mobile Responsive */
@media (max-width: 600px) {

    .customer-booking-card {
        padding: 25px;
    }

    .customer-booking-card h1 {
        font-size: 28px;
    }
}
/* CUSTOMER FIND ARTIST SECTION */

.customer-section {
    max-width: 1000px;
    margin: 50px auto;
    padding: 45px 30px;
    background-color: white;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.customer-section h2 {
    color: #b76e79;
    font-size: 32px;
    margin-bottom: 15px;
}

.customer-section p {
    color: #666;
    font-size: 17px;
    margin-bottom: 25px;
}

.find-artist-home-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #b76e79;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
}

.find-artist-home-btn:hover {
    background-color: #9d5965;
}
/* ============================= */
/* AVAILABILITY LIST */
/* ============================= */

#availabilityList {
    margin-top: 25px;
}

.availability-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff7f8;
    border: 1px solid #f0d9dd;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.availability-item span {
    color: #555;
    font-size: 16px;
    font-weight: 500;
}

.remove-date-btn {
    display: inline-block;
    width: auto;
    padding: 8px 15px;
    background-color: #b76e79;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.remove-date-btn:hover {
    background-color: #9d5965;
}
.artist-image img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}
.artist-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.artist-image {
    flex-shrink: 0;
}

.artist-details {
    flex: 1;
}

.artist-details h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.artist-details p {
    margin: 10px 0;
    line-height: 1.5;
}
.public-profile-photo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.public-profile-photo {
    width: 220px;
    height: 220px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 20px;
}
#publicArtistPortfolio {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.public-portfolio-item {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
}

.public-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.booking-list{
    margin-top:30px;
}

.booking-card{

    background:white;

    padding:20px;

    border-radius:12px;

    margin-bottom:20px;

    box-shadow:0 5px 15px rgba(0,0,0,0.08);

}

.booking-card h3{

    color:#d63384;

    margin-bottom:10px;

}

.booking-card p{

    margin:8px 0;

}

.booking-actions{

    margin-top:15px;

}

.booking-actions button{

    padding:10px 18px;

    border:none;

    border-radius:8px;

    cursor:pointer;

    margin-right:10px;

}

.accept-btn{

    background:#28a745;

    color:white;

}

.reject-btn{

    background:#dc3545;

    color:white;

}
/* ==================================
   CUSTOMER REGISTRATION PAGE
================================== */

.register-container {
    min-height: 100vh;
    background-color: #fff7f8;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;
    box-sizing: border-box;
}

.register-card {
    width: 100%;
    max-width: 480px;

    background-color: white;

    padding: 40px;

    border-radius: 18px;

    box-shadow: 0 8px 25px #b82570(0, 0, 0, 0.08);

    box-sizing: border-box;
}

.register-card h1 {
    text-align: center;
    margin-bottom: 8px;
    color: #b82570;
}

.register-card > p {
    text-align: center;
    color: #777;
    margin-bottom: 30px;
}

#customerRegisterForm {
    display: flex;
    flex-direction: column;
}

#customerRegisterForm label {
    font-weight: 600;
    margin-bottom: 7px;
    color: #d63384;
}

#customerRegisterForm input {
    width: 100%;

    padding: 13px 14px;

    margin-bottom: 18px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 15px;

    box-sizing: border-box;
}

#customerRegisterForm input:focus {
    outline: none;
    border-color: #d85c7a;
}

#customerRegisterForm .register-btn {
    width: 100%;

    padding: 14px;

    margin-top: 5px;

    border: none;
    border-radius: 8px;

    background-color: #d85c7a;
    color: white;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
}

#customerRegisterForm .register-btn:hover {
    opacity: 0.9;
}

.register-card .login-text {
    text-align: center;
    margin-top: 22px;
    margin-bottom: 0;
}

.register-card .login-text a {
    color: #d85c7a;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 600px) {

    .register-card {
        padding: 28px 20px;
    }

    .register-card h1 {
        font-size: 20px;
    }
}
/* Fix Customer Registration Heading */

.register-card h1 {
    font-size: 38px;
    line-height: 1.15;
    text-align: center;
    color: #c7256e;
    margin: 0 0 15px 0;
}

.register-card {
    max-width: 520px;
    padding: 35px 42px;
}

.register-card > p {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 25px;
}
/* ==================================
   CUSTOMER LOGIN PAGE
================================== */

.customer-login-container {
    min-height: 100vh;
    background-color: #fff7f8;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 20px;
    box-sizing: border-box;
}

.customer-login-card {
    width: 100%;
    max-width: 480px;

    background-color: white;

    padding: 40px;

    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    box-sizing: border-box;
}

.customer-login-card h1 {
    font-size: 38px;
    line-height: 1.15;

    text-align: center;
    color: #c7256e;

    margin: 0 0 12px 0;
}

.customer-login-subtitle {
    text-align: center;
    color: #777;

    margin-bottom: 30px;
}

#customerLoginForm {
    display: flex;
    flex-direction: column;
}

#customerLoginForm label {
    font-weight: 600;
    color: #333;

    margin-bottom: 7px;
}

#customerLoginForm input {
    width: 100%;

    padding: 13px 14px;
    margin-bottom: 20px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 15px;

    box-sizing: border-box;
}

#customerLoginForm input:focus {
    outline: none;
    border-color: #d85c7a;
}

.customer-login-btn {
    width: 100%;

    padding: 14px;

    border: none;
    border-radius: 8px;

    background-color: #d85c7a;
    color: white;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
}

.customer-login-btn:hover {
    opacity: 0.9;
}

.customer-register-link,
.customer-home-link {
    text-align: center;
    margin-top: 20px;
}

.customer-login-card a {
    color: #d85c7a;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 600px) {

    .customer-login-card {
        padding: 30px 22px;
    }

    .customer-login-card h1 {
        font-size: 30px;
    }
}
/* ==================================
   CUSTOMER MY BOOKINGS
================================== */

.customer-bookings-container {
    min-height: 100vh;
    background-color: #fff7f8;
    padding: 45px 60px;
    box-sizing: border-box;
}

.customer-bookings-header {
    text-align: center;
    margin: 45px auto 35px;
}

.customer-bookings-header h1 {
    font-size: 42px;
    color: #c26776;
    margin: 0 0 10px;
}

.customer-bookings-header p {
    font-size: 17px;
    color: #555;
}

.customer-bookings-list {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.customer-bookings-list .booking-card {
    background: white;
    padding: 25px 28px;
    margin-bottom: 20px;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}

.customer-bookings-list .booking-card h2 {
    font-size: 22px;
    color: #c26776;
    margin: 0 0 16px;
}

.customer-bookings-list .booking-card p {
    margin: 8px 0;
    font-size: 16px;
}

.customer-bookings-list .booking-status {
    color: #c26776;
    font-weight: 600;
}

@media (max-width: 600px) {

    .customer-bookings-container {
        padding: 30px 20px;
    }

    .customer-bookings-header h1 {
        font-size: 32px;
    }
}
/* ===============================
   WEBSITE FEEDBACK SECTION
================================ */

.feedback-section {
    padding: 70px 20px;
    background-color: #fff7f8;
}

.feedback-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feedback-container h2 {
    text-align: center;
    margin-bottom: 10px;
}

.feedback-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

#feedbackForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#feedbackForm label {
    font-weight: 600;
    margin-top: 8px;
}

#feedbackForm input,
#feedbackForm select,
#feedbackForm textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    font-family: inherit;
}

#feedbackForm textarea {
    resize: vertical;
}

.feedback-submit-btn {
    margin-top: 15px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}
/* =========================================
   MAKEVYA ADMIN DASHBOARD
========================================= */

.admin-dashboard {
    display: flex;
    min-height: 100vh;
    background-color: #fff7f9;
}


/* Admin Sidebar */

.admin-sidebar {
    width: 250px;
    background-color: #ffffff;
    padding: 35px 25px;
    box-sizing: border-box;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.08);
}

.admin-sidebar h2 {
    color: #d63384;
    font-size: 30px;
    margin-bottom: 5px;
}

.admin-label {
    color: #777;
    margin-bottom: 35px;
}

.admin-sidebar a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 13px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 16px;
}

.admin-sidebar a:hover {
    background-color: #ffe4ee;
    color: #d63384;
}

#adminLogoutBtn {
    width: 100%;
    margin-top: 30px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #d63384;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

#adminLogoutBtn:hover {
    opacity: 0.9;
}


/* Admin Main Area */

.admin-main {
    flex: 1;
    padding: 50px;
}

.admin-main h1 {
    font-size: 38px;
    color: #333;
    margin-bottom: 10px;
}

.admin-welcome {
    color: #666;
    margin-bottom: 40px;
}


/* Dashboard Statistics */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.admin-stat-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.admin-stat-card h3 {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

.admin-stat-card p {
    font-size: 35px;
    font-weight: bold;
    color: #d63384;
    margin: 0;
}


/* Responsive Admin Dashboard */

@media (max-width: 900px) {

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .admin-dashboard {
        flex-direction: column;
    }

    .admin-sidebar {
        width: 100%;
    }

    .admin-main {
        padding: 25px;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   ADMIN TABLES
========================================= */

.admin-table-container {
    background-color: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eeeeee;
}

.admin-table th {
    background-color: #fff0f5;
    color: #d63384;
    font-weight: 600;
}

.admin-table tr:hover {
    background-color: #fff9fb;
}

#noCustomersMessage {
    text-align: center;
    color: #777;
    padding: 30px 10px 10px;
}
.admin-delete-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.admin-delete-btn:hover {
    opacity: 0.85;
}
/* Admin Feedback */

.admin-feedback-card {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.admin-feedback-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.admin-feedback-card p {
    margin: 6px 0;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}
/* ==============================
   MAKEVYA RESPONSIVE NAVIGATION
   ============================== */

.main-nav {
    position: relative;
}

.mobile-brand,
.menu-toggle {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.nav-links span {
    display: flex;
    align-items: center;
    gap: 20px;
}


/* Mobile Navigation */
@media (max-width: 768px) {

    .main-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }

    .mobile-brand {
        display: block;
        font-size: 24px;
        font-weight: bold;
        text-decoration: none;
    }

    .menu-toggle {
        display: block;
        background: transparent;
        border: none;
        font-size: 30px;
        cursor: pointer;
        padding: 5px 10px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: white;
        padding: 10px 0;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links > a,
.nav-links span a {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: #333;
    background: white;
    font-size: 16px;
    font-weight: 500;
}

    .nav-links span {
        display: block;
    }

    .login-container h1 {
    font-size: 48px;
    line-height: 1.15;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .login-container h1 {
        font-size: 36px;
        line-height: 1.15;
    }
}

@media (max-width: 768px) {
    .client-registration-title {
        font-size: 23px;
        line-height: 1.2;
        white-space: nowrap;
    }
}
}
/* =================================
   MAKEVYA MOBILE HOMEPAGE POLISH
   ================================= */

@media (max-width: 768px) {

    body {
        margin: 0;
        overflow-x: hidden;
    }

    /* Header */
    .main-nav {
        margin: 0;
        padding: 14px 18px;
        min-height: 56px;
        box-sizing: border-box;
    }

    .mobile-brand {
        font-size: 22px;
    }

    .menu-toggle {
        font-size: 26px;
        padding: 4px 8px;
    }

    /* Hero */
    .hero {
        padding: 20px 16px;
        margin: 0;
    }

    .hero .book {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        border-radius: 14px;
    }

    /* Services */
    .service {
        padding: 25px 16px;
        box-sizing: border-box;
    }

    .service h2 {
        font-size: 28px;
        margin: 0 0 20px;
    }

    .service-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        width: 100%;
    }

    .service-card {
        width: auto;
        min-width: 0;
        margin: 0;
        padding: 12px;
        box-sizing: border-box;
        border-radius: 14px;
    }

    .service-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 12px;
    }

    .service-card h3 {
        font-size: 18px;
        line-height: 1.2;
        margin: 12px 0 8px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 1.4;
        margin: 6px 0 12px;
    }

    .service-card button {
        font-size: 13px;
        padding: 9px 12px;
        width: 100%;
    }
}


/* Extra-small phones */
@media (max-width: 380px) {

    .service-container {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 210px;
    }
}
@media (max-width: 768px) {

    /* Looking for Artist section */
    .customer-section {
        margin: 20px 16px;
        padding: 25px 18px;
        box-sizing: border-box;
    }

    .customer-section h2 {
        font-size: 24px;
        line-height: 1.2;
        margin: 0 0 12px;
    }

    .customer-section p {
        font-size: 15px;
        line-height: 1.5;
    }

    .find-artist-home-btn {
        display: inline-block;
        font-size: 15px;
        padding: 12px 18px;
    }


    /* Why Choose Makevya */
    .why-choose {
        padding: 35px 16px;
        margin: 0;
        box-sizing: border-box;
    }

    .why-choose h2 {
        font-size: 28px;
        line-height: 1.2;
        margin: 0 0 24px;
        text-align: center;
    }

    .why-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        width: 100%;
    }

    .why-card {
        width: auto;
        min-width: 0;
        margin: 0;
        padding: 18px 12px;
        box-sizing: border-box;
    }

    .why-card .icon {
        font-size: 32px;
    }

    .why-card h3 {
        font-size: 16px;
        line-height: 1.25;
        margin: 10px 0 7px;
    }

    .why-card p {
        font-size: 13px;
        line-height: 1.4;
        margin: 0;
    }
}
@media (max-width: 768px) {

    /* How Makevya Works */
    .how-it-works {
        padding: 35px 16px;
        margin: 0;
        box-sizing: border-box;
    }

    .how-it-works h2 {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
        margin: 0 0 28px;
    }

    .steps-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        width: 100%;
    }

    .step-card {
        width: auto;
        min-width: 0;
        margin: 0;
        padding: 22px 12px 18px;
        box-sizing: border-box;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .step-icon {
        font-size: 34px;
        margin: 15px 0 10px;
    }

    .step-card h3 {
        font-size: 16px;
        line-height: 1.25;
        margin: 8px 0;
    }

    .step-card p {
        font-size: 13px;
        line-height: 1.45;
        margin: 0;
    }
}
@media (max-width: 768px) {

    /* Why Join Makevya as an Artist */
    .join-artist {
        padding: 35px 16px;
        margin: 0;
        box-sizing: border-box;
    }

    .join-artist h2 {
        font-size: 28px;
        line-height: 1.2;
        margin: 0 0 15px;
        text-align: center;
    }

    .join-subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin: 0 auto 25px;
        max-width: 340px;
        text-align: center;
    }

    .join-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        width: 100%;
    }

    .join-card {
        width: auto;
        min-width: 0;
        margin: 0;
        padding: 20px 12px;
        box-sizing: border-box;
    }

    .join-icon {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .join-card h3 {
        font-size: 16px;
        line-height: 1.25;
        margin: 8px 0;
    }

    .join-card p {
        font-size: 13px;
        line-height: 1.45;
        margin: 0;
    }

    .join-text {
        font-size: 14px;
        line-height: 1.5;
        margin: 25px auto 15px;
        text-align: center;
    }

    .join-artist > a button {
        font-size: 15px;
        padding: 11px 20px;
    }
}
@media (max-width: 768px) {

    /* Mobile Footer */
    footer {
        padding: 30px 20px 20px;
        box-sizing: border-box;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }

    .footer-box {
        width: 100%;
        margin: 0;
        text-align: left;
        box-sizing: border-box;
    }

    .footer-box h2,
    .footer-box h3 {
        margin: 0 0 12px;
    }

    .footer-box p {
        font-size: 14px;
        line-height: 1.6;
        margin: 6px 0;
    }

    .footer-box a {
        display: block;
        font-size: 14px;
        margin: 8px 0;
        word-break: break-word;
    }

    .footer-box p a {
        display: inline;
    }

    .footer-box button {
        display: block;
        margin-top: 10px;
        padding: 10px 16px;
        font-size: 14px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 20px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}
/* Final mobile hero overflow fix */
@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 16px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .hero .book {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        object-fit: contain;
    }
}
/* Prevent all mobile horizontal overflow */
@media (max-width: 768px) {

    html,
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    section,
    nav,
    footer,
    .service-container,
    .why-container,
    .steps-container,
    .join-container,
    .feedback-container,
    .footer-container {
        max-width: 100%;
        box-sizing: border-box;
    }
}
/* Artist Registration - Mobile */
@media (max-width: 768px) {

    .register-page {
        padding: 20px 15px;
        min-height: 100vh;
    }

    .register-container {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .register-left {
        display: none;
    }

    .register-right {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        box-sizing: border-box;
    }

    .register-right h2 {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }

    .register-subtitle {
        text-align: center;
        line-height: 1.5;
    }

    .register-right form {
        width: 100%;
    }

    .register-right input,
    .register-right button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}
/* Public Artist Profile - Services */

.public-service-item {
    padding: 18px 0;
    border-bottom: 1px solid #eeeeee;
}

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

.public-service-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.public-service-main h3 {
    margin: 0;
    text-align: left;
}

.public-service-main strong {
    white-space: nowrap;
    font-size: 18px;
}

.public-service-description {
    margin: 8px 0 0;
    text-align: left;
    color: #666666;
}