/* ==========================
   COMMON STYLES FOR ALL SERVICE PAGES
========================== */

/* Body / main content spacing */
.page-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================= HERO / BANNER SECTION ================= */
.hero-section {
    position: relative;
    text-align: center;
    color: #fff;
    width: 100%;
    background-size: cover;
    background-position: center;
    height: 450px; /* desktop height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
}

/* Headings */
.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 0;
}

/* ===== Mobile / Tablet adjustments ===== */
@media (max-width: 992px) {
    .hero-section {
        height: 350px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 250px;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .hero-section {
        height: 200px;
    }
}








/* Introduction Section */
.introduction-section {
    text-align: center;
    margin-bottom: 50px;
}

.introduction-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.introduction-section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Services Cards */
.services-section {
    padding: 60px 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.services-section .card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.services-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.services-section .card i {
    color: #ff4081;
    margin-bottom: 15px;
}

.services-section .card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.services-section .card-text {
    font-size: 0.95rem;
    color: #555;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Booking / Call-to-Action Section */
.booking-section {
    padding: 60px 20px;
    background-color: #ff4081;
    color: white;
    text-align: center;
    border-radius: 10px;
}

.booking-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.booking-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.booking-section .btn {
    font-size: 1.1rem;
    padding: 12px 30px;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .services-section .card-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .services-section .card-title {
        font-size: 1rem;
    }
}



/* ==========================
   Pellikuturu Box Section
========================== */
.pellikuturu-box-section {
    padding: 60px 20px;
    background-color: #f8f9fa; /* light background for the section */
}

.service-box {
    background-color: #fff; /* white box */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image Column */
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* Text Column */
.service-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-content h5 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

/* Inclusions & Add-ons side by side */
.service-content h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-content ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
}

.service-content ul li {
    margin-bottom: 5px;
}

/* CTA Button */
.service-content .btn-pink {
    background-color: #ff4081;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background 0.3s;
}

.service-content .btn-pink:hover {
    background-color: #e73370;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-box {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .service-box {
        text-align: center;
    }

    .service-content .row {
        flex-direction: column;
    }

    .service-content ul {
        padding-left: 0;
        list-style-position: inside;
    }
}
/* Ensure the row uses full height for both columns */
.service-box .row.align-items-center {
    display: flex;
    flex-wrap: wrap;
}

/* Make columns equal height */
.service-box .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centers text vertically */
}

/* Image Column */
.service-box .service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-box .service-image img {
    width: 100%;
    max-height: 600px;   /* limit height to column */
    object-fit: cover;  /* crop if needed */
    border-radius: 15px;
    display: block;
}



/* ==========================
   Types of Makeup Services
========================== */
.makeup-types-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.service-card {
    border: none;
    border-radius: 15px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/* Colored top border for each service */
.card-top-border {
    height: 6px;
    border-radius: 15px 15px 0 0;
}

.card-top-border.regular {
    background: linear-gradient(90deg, #ff9a9e, #fad0c4);
}
.card-top-border.hd {
    background: linear-gradient(90deg, #a18cd1, #fbc2eb);
}
.card-top-border.airbrush {
    background: linear-gradient(90deg, #84fab0, #8fd3f4);
}

/* Service Icon/Image */
.service-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Card Text */
.card-title {
    font-size: 1.35rem;
    font-weight: 700;
}

.card-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.inclusions li {
    margin-bottom: 6px;
    font-size: 0.9rem;
    text-align: left;
}

.inclusions i {
    color: #28a745; /* green checkmark */
}

/* Price Badge */
.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff4081;
}

/* Book Now Button */
.btn-pink {
    background-color: #ff4081;
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background 0.3s;
    text-decoration: none;
}

.btn-pink:hover {
    background-color: #e73370;
}

/* Flex to push button to bottom */
.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .service-card {
        text-align: center;
    }
    .service-icon {
        width: 70px;
        height: 70px;
    }
    .btn-pink {
        width: 100%;
    }
}







/* ==========================
   FAQ Section
========================== */
.faq-section {
    background-color: #f8f9fa; /* fallback color */
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.accordion-button {
    font-weight: 600;
    color: #333;
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    color: #ff4081;
    background-color: #fff;
    box-shadow: none;
}

.accordion-body {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .faq-section {
        padding: 60px 20px;
    }
}

@media (max-width: 767px) {
    .faq-section h2 {
        font-size: 1.75rem;
        text-align: center;
    }
}

