/* Star Rating Styles */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin-bottom: 10px;
    gap: 2px;
}
.star-rating input[type="radio"] {
    display: none;
}
.star-rating label {
    font-size: 2rem;
    color: #e0b0d5;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0 2px;
}
.star-rating input[type="radio"]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #e67ca7;
}
.review-item .stars {
    color: #e67ca7;
    font-size: 1.2rem;
    margin-bottom: 4px;
    display: block;
}
/* Review Section Styles */
.review-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(161,78,124,0.10);
    max-width: 600px;
    margin: 40px auto 0 auto;
    padding: 32px 24px;
}
.review-section h2 {
    color: #a14e7c;
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: center;
}
.review-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.review-input, .review-textarea {
    padding: 10px 14px;
    border: 1px solid #e67ca7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #f6e7fa;
    color: #6c3a5c;
    transition: border 0.2s;
}
.review-input:focus, .review-textarea:focus {
    border: 1.5px solid #a14e7c;
    outline: none;
}
.review-btn {
    background: linear-gradient(90deg, #e67ca7 0%, #a14e7c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.review-btn:hover {
    background: linear-gradient(90deg, #a14e7c 0%, #e67ca7 100%);
    transform: scale(1.04);
}
.reviews-list {
    margin-top: 10px;
}
.reviews-list h3 {
    color: #a14e7c;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.review-item {
    background: #f8b6d2;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 14px;
    box-shadow: 0 1px 4px rgba(161,78,124,0.07);
    color: #6c3a5c;
}
.review-item strong {
    color: #a14e7c;
    font-size: 1.05rem;
}
/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff8f6;
    color: #333;
    line-height: 1.6;
}

/* Header styles */
header {
    background: linear-gradient(90deg, #f8b6d2 0%, #f6e7fa 100%);
    padding: 32px 0 16px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(248,182,210,0.08);
}

header h1 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 700 !important;
    letter-spacing: 2px;
    color: #a14e7c;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: #a14e7c;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #e67ca7;
}

/* Main content styles */
main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 24px;
}

.intro, .highlights, .call-to-action {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(161,78,124,0.07);
    padding: 32px 24px;
    margin-bottom: 32px;
}

.intro h2, .highlights h2, .call-to-action h2 {
    color: #a14e7c;
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.intro p, .call-to-action p {
    font-size: 1.1rem;
    color: #555;
}

.highlights ul {
    margin-top: 12px;
    padding-left: 20px;
}

.highlights li {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #6c3a5c;
    position: relative;
}

.highlights li::before {
    content: "💅";
    margin-right: 8px;
}

/* Call to action button */
.btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 32px;
    background: linear-gradient(90deg, #e67ca7 0%, #a14e7c 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(230,124,167,0.15);
    transition: background 0.2s, transform 0.2s;
}

.btn:hover {
    background: linear-gradient(90deg, #a14e7c 0%, #e67ca7 100%);
    transform: translateY(-2px) scale(1.04);
}

/* Footer styles */
footer {
    background: #f8b6d2;
    color: #a14e7c;
    text-align: center;
    padding: 24px 0 16px 0;
    font-size: 1rem;
    margin-top: 40px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

footer a {
    color: #a14e7c;
    text-decoration: underline;
    margin: 0 4px;
    transition: color 0.2s;
}

footer a:hover {
    color: #e67ca7;
}

/* Additional styles for better aesthetics */
header {
    border-bottom: 4px solid #e67ca7;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 32px 16px;
    background: #f8f6fa;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(161,78,124,0.08);
}

.gallery figure {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(161,78,124,0.12);
    overflow: hidden;
    margin: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery figure:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(161,78,124,0.18);
}

.gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    border-radius: 12px 12px 0 0;
    transition: opacity 1s;
}

.gallery figcaption {
    padding: 12px 8px;
    font-size: 1rem;
    color: #a14e7c;
    background: #f8f6fa;
    width: 100%;
    text-align: center;
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: 1fr;
        padding: 16px 4px;
    }
    .gallery img {
        height: 120px;
    }
    .gallery figcaption {
        font-size: 0.95rem;
    }
}

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 60%;
    height: 40%; /* Adjust height as needed */
    margin-top: 5px;
}

.banner-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 480px) { /* Mobile */
    .banner {
        height: 25%;
        width: 1000%;
    }
}

@media (max-width: 768px) { /* Tablet */
    .banner {
        height: 60%;
        width: 80%;
    }
}
h1, h2, h3 {
            font-family: 'Cormorant Garamond', serif !important;
            font-weight: 700;
            letter-spacing: 2px;
            color: #a14e7c;
        }

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* Add spacing between service cards */
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(161,78,124,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    padding: 16px;
    text-align: center;
    width: 300px;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(161,78,124,0.2);
}

@media (max-width: 480px) {
    .service-card {
        width: 100%;
    }
}

/* Contact page styles */
.contact-section {
    max-width: 500px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(161,78,124,0.10);
    padding: 32px 24px;
    text-align: center;
}

.contact-section h2 {
    color: #a14e7c;
    margin-bottom: 18px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-instagram, .contact-email {
    color: #fff;
    background: #a14e7c;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.contact-instagram:hover, .contact-email:hover {
    background: #d18bb7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.contact-form label {
    text-align: left;
    color: #a14e7c;
    font-weight: 500;
}

.contact-form input, .contact-form textarea {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
}

.contact-form button {
    background: #a14e7c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #d18bb7;
}

/* FAQ section styles */
.faq-section {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(161,78,124,0.10);
    padding: 32px 24px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-bottom: 1px solid #f3d6e6;
    padding-bottom: 8px;
}

.faq-question {
    background: none;
    border: none;
    color: #a14e7c;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #e67ca7;
}

.faq-answer {
    display: none;
    padding: 0 0 12px 0;
    color: #555;
    font-size: 1rem;
    background: #f8f6fa;
    border-radius: 0 0 8px 8px;
    margin-top: -4px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question .arrow {
    margin-left: 8px;
    font-size: 1.2em;
    transition: transform 0.3s;
}

.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
}

.cart-section {
    margin: 32px auto 0 auto;
    max-width: 400px;
    background: #f8f6fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(161,78,124,0.08);
    padding: 20px 16px;
    text-align: center;
}
.cart-section h3 {
    color: #a14e7c;
    margin-bottom: 12px;
}
#cart-list {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}
#cart-list li {
    background: #fff;
    border-radius: 6px;
    margin-bottom: 6px;
    padding: 6px 10px;
    color: #6c3a5c;
    font-size: 1rem;
}
#cart-total {
    font-weight: bold;
    color: #a14e7c;
}
.cart-section button {
    background: #a14e7c;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}
.cart-section button:hover {
    background: #d18bb7;
}
#booking-form select {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
    margin-bottom: 8px;
}

/* Booking section and per-nail controls */
.booking-section {
    margin: 24px auto 0 auto;
    max-width: 900px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(161,78,124,0.06);
    padding: 20px;
}

/* When booking-section lives inside the .services flex container, make it occupy a full row and center */
.services .booking-section {
    /* Let the booking card keep its max-width and center itself inside .services */
    flex: 0 0 auto;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}
.booking-section .contact-form {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 18px;
    align-items: start;
}
.booking-section label {
    display: block;
    margin-bottom: 6px;
    color: #6c3a5c;
}
.pernail-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    margin: 8px 0 16px 0;
}
.pernail {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f6fa;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #f0e8ef;
}
.pn-label {
    flex: 1 1 auto;
    color: #6c3a5c;
    font-size: 0.95rem;
}
.pn-minus, .pn-plus {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #e0d2df;
    background: #fff;
    color: #a14e7c;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.pn-minus:hover, .pn-plus:hover {
    background: #f6e7fa;
}
.pn-count {
    min-width: 28px;
    text-align: center;
    font-weight: 600;
    color: #a14e7c;
}

/* Make the booking layout stack on small screens */
@media (max-width: 880px) {
    .booking-section .contact-form {
        grid-template-columns: 1fr;
    }
}