/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

/* Logo and Navigation container */
.top-banner {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between; /* Align logo and nav on desktop */
    align-items: center;
}

/* Default logo styling (for mobile) */
.logo {
    max-width: 100%;
    height: auto;
    margin: 10px auto;
}

/* Header and Navigation */
header {
    padding: 10px 20px;
    position: relative;
    background-color: transparent;
}

/* Hamburger menu for mobile */
.menu-icon {
    display: block;
    font-size: 30px;
    cursor: pointer;
    margin: 10px auto;
    color: #f8bfcf;
    font-weight: bold;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #ED84B5;
    font-size: 22px;
}

/* Desktop adjustments */
@media (min-width: 769px) {
    .top-banner {
        padding-left: 20px;
        padding-right: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        max-width: 500px;
        margin-left: 0; /* Left align logo */
    }

    nav {
        flex-grow: 1;
        text-align: right;
    }

    .menu-icon {
        display: none; /* Hide hamburger menu on desktop */
    }

    nav ul {
        display: flex;
        justify-content: flex-end;
        width: auto;
    }

    nav ul li {
        margin-left: 20px;
    }

    nav ul li a {
        font-size: 22px;
    }
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .top-banner {
        flex-direction: column; /* Stack the logo and menu vertically */
        align-items: center;
    }

    .menu-icon {
        display: block;
        font-size: 30px;
        cursor: pointer;
        margin: 10px 0;
        color: #f8bfcf;
        font-weight: bold;
    }

    nav ul {
        display: none; /* Hide nav links initially */
    }

    nav ul.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }
}

/* Hero Section */
.hero {
    background-image: url('https://myglow.neocities.org/beauty1.jpeg');
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
    margin: 0 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 769px) {
    .hero {
        height: 400px;
    }
}

/* Container */
.container {
    margin: 20px auto;
    padding: 20px;
    max-width: 1200px;
    width: 90%;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: margin-top 0.3s ease-in-out;
}

/* Forms */
form {
    max-width: 600px;
    margin: 0 auto;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

form textarea {
    resize: vertical;
}

form button {
    background-color: #ED84B5;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

form button:hover {
    background-color: #d0739a;
}

/* Buttons */
.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.service-button {
    background-color: #ED84B5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.service-button:hover {
    background-color: #d0739a;
}

/* Footer */
footer {
    background-color: #b2e5e5;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    font-size: 14px;
    color: #333;
}

/* Hyperlink Styles */
a {
    color: #ED84B5;
    text-decoration: none;
}

a:hover {
    color: #ED84B5;
    text-decoration: underline;
}

a:active {
    color: #ED84B5;
}

a:visited {
    color: #ED84B5;
}

/* Justified text for paragraphs */
p {
    text-align: justify;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        padding-left: 0;
    }

    nav ul.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }

    nav ul li a {
        font-size: 18px;
        font-family: 'Poppins', sans-serif;
        color: #ED84B5;
        text-decoration: none;
        width: 100%;
        display: block;
    }

    .container {
        margin-top: 10px;
        padding-top: 10px;
    }

    .container.menu-active {
        margin-top: 150px;
    }

    .top-banner p.smaller-text {
        font-size: 30px;
        text-align: center;
        white-space: normal;
        line-height: 1.2;
    }

    .about-image-placeholder img {
        width: 100%;
        height: auto;
    }
}

/* Ensure image is responsive */
.booking-image-placeholder img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ==================== Service Page Styles ==================== */
.service-header {
    font-size: 32px;
    text-align: center;
    margin: 20px 0;
    font-weight: normal;
    color: #fd7ca1;
}

/* Service Header Font Size for Mobile */
@media (max-width: 768px) {
    .service-header {
        font-size: 24px; /* Adjust this value to your preferred font size */
    }
}

@media (min-width: 769px) {
    .service-header {
        font-size: 24px; /* Adjust this size to your preference */
    }
}

.service-image-placeholder img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-description {
    font-size: 18px;
    margin: 20px auto;
    text-align: justify;
    max-width: 800px;
}

.service-price {
    text-align: center;
    margin: 20px 0;
    font-size: 24px;
    font-weight: bold;
    color: #ED84B5;
}

.booking-button {
    text-align: center;
    margin: 30px 0;
}

.booking-button button {
    background-color: #ED84B5;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.booking-button button:hover {
    background-color: #d0739a;
}

/* Ensure buttons inside service pages use the correct style */
.service-page .booking-button button {
    background-color: #ED84B5;
    color: white;
}

/* Service Page Layout for Desktop */
.service-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 769px) {
    .service-row {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .service-image-placeholder {
        flex: 1;
        margin-right: 40px;
        max-width: 50%;
    }

    .service-content {
        flex: 1;
        max-width: 50%;
    }

    .service-description {
        text-align: justify;
    }

    .service-price, .booking-button {
        text-align: left;
        margin-top: 20px;
    }
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .service-container {
        padding: 10px;
    }

    .service-row {
        flex-direction: column;
        align-items: center;
    }

    .service-image-placeholder {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .service-content {
        width: 100%;
    }

    .service-price, .booking-button {
        text-align: center;
    }
}

/* ==================== Client Consultation Form Styles ==================== */
.consultation-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

form .form-group {
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

form input[type="checkbox"],
form input[type="radio"] {
    margin-right: 10px;
}

form textarea {
    resize: vertical;
}

.agree-section {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agree-section label {
    font-size: 14px;
    margin-left: 10px;
}

.booking-button {
    text-align: center;
    margin: 30px 0;
}

.booking-button button {
    background-color: #ED84B5;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
}

.booking-button button:hover {
    background-color: #d0739a;
}

/* Price Badge Section with Adjusted Spacing */
.price-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
    gap: 30px; /* Increase space between badges */
    margin: 30px 0;
    padding-left: 20px; /* Slight padding */
    padding-right: 20px; /* Slight padding */
}

@media (max-width: 768px) {
    .price-options {
        grid-template-columns: 1fr; /* 1 column for mobile */
        gap: 20px;
    }
}

.price-badge {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column; /* Ensures each item is in its own row */
    align-items: center;
    justify-content: space-between; /* Ensures even spacing within each badge */
    min-height: 320px; /* Add minimum height to ensure badges are even */
    width: 100%; /* Ensure each badge takes up its column */
}

@media (max-width: 768px) {
    .price-badge {
        width: 90%;
        margin: 10px auto;
    }
}

.price-badge h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.price-badge p {
    font-size: 18px;
    color: black; /* Keep description text black */
}

.price-badge p.price {
    font-size: 24px; /* Increase price font size */
    font-weight: bold;
    color: #ED84B5;
    margin: 10px 0; /* Add margin to space out price */
}

.price-badge button {
    background-color: #ED84B5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 20px; /* Ensure button is properly spaced from other content */
}

.price-badge button:hover {
    background-color: #d0739a;
}

/* Bring the badges closer to the edges of the page */
.container {
    max-width: 100%; /* Make the container take the full width */
    padding-left: 20px; /* Adjusted padding for spacing */
    padding-right: 20px; /* Adjusted padding for spacing */
    margin: 0 auto; /* Center the content */
}

/* Stretch the service description across the page */
.service-description {
    font-size: 18px;
    margin: 20px auto;
    text-align: justify;
    max-width: 100%; /* Make description stretch across full width */
    padding-left: 20px; /* Add padding for better readability */
    padding-right: 20px;
}

/* ==================== GLOBAL IMAGE CONTROL ==================== */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Limit general image height on desktop to prevent oversized visuals */
@media (min-width: 769px) {
    img {
        max-height: 500px; /* Adjust this to taste */
        object-fit: cover;
    }
}

/* Keep hero/header images full height without cropping */
.hero img,
.header img {
    max-height: none;
    object-fit: unset;
}

/* About page image placeholder — keeps original styling */
.about-image-placeholder img {
    border-radius: 0;
    box-shadow: none;
}

/* Service images — retain rounded corners & shadow */
.service-image-placeholder img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Booking images — no extra styling changes */
.booking-image-placeholder img {
    border-radius: 0;
    box-shadow: none;
}

/* Modern Minimal Container Override */
.container {
    margin: 20px auto;
    padding: 20px;
    max-width: 1200px;
    width: 90%;
    background-color: #ffffff; /* clean white */
    border-radius: 12px; /* smooth rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* soft shadow */
    transition: box-shadow 0.3s ease-in-out, margin-top 0.3s ease-in-out;
}

/* Remove double-box feel from inner sections */
.container > *:first-child {
    margin-top: 0;
}

/* Optional: make all inner section boxes softer */
.container section,
.container .box {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}