/* General Styles */
html {
            scroll-behavior: smooth;
        }
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 1.1em;
}
/* Navigation Header Styles */
.navigation-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 11.4px 0;
    z-index: 1000; /* Ensure it stays on top */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.navigation-header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.navigation-header nav ul li {
    margin: 0 15px;
}

.navigation-header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.navigation-header nav ul li a:hover {
    color: #e91e63; /* Color for hover effect */
}

/* Adjust the top margin for content to avoid overlap */
body {
    margin-top: 48px; /* Adjust this value based on the header height */
}

.header, .services, .pricing, .booking, .footer {
    text-align: center;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: url('Fav.jpg') no-repeat center center/cover;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
}

.hero p {
    font-size: 1.5em;
}

.btn {
    background-color: #880e4f; /* Much darker shade of pink for higher contrast */
    color: #f8f9fa; /* Off-white text color */
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    cursor: pointer;
}
.btn-green {
    background-color: green; /* Change to the shade of green you prefer */
    color: white; /* Text color for contrast */
    border: none; /* Removes default border */
}
/* Other CSS styles */

/* Centering text for the Manicure Section */
#manicure h1 {
    text-align: center; /* Center text horizontally */
    margin: 0; /* Optional: remove default margins if necessary */
    padding: 10px; /* Optional: add padding for spacing */
}

/* Services Section */
.services {
    background-color: #ffffff;
    padding: 50px 20px;
}

.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-item {
    background-color: white;
    padding: 20px;
    margin: 10px;
    width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.service-item:hover {
    cursor: pointer;
    background-color: rgba(233, 30, 99, 0.1);
}

.service {
    margin-bottom: 40px;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    background-color: transparent;
    text-align: center;
}

.service-images {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.service-images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin: 0;
    padding: 0;
}

.service-price-container {
    margin-left: 0;
    text-align: center;
}

.service-price {
    font-size: 1.5em;
    padding: 5px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

/* Hover effects for service content */
.service:nth-of-type(1) .service-content:hover {
    background-color: peachpuff;
}

.service:nth-of-type(2) .service-content:hover {
    background-color: #d8bfd8;
}

.service:nth-of-type(3) .service-content:hover {
    background-color: lightpink;
}

/* Pricing Section */

.pricing {
    background-color: #87CEEB;
    padding: 50px 20px;
}

.pricing table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
}

.pricing th, .pricing td {
    border: 1px solid #ddd;
    padding: 10px;
}

.pricing th {
    background-color: #e91e63;
    color: white;
}
/* Pricing Section Image Styles */
.pricing-image {
    text-align: center; /* Center the image */
    padding: 20px; /* Add padding around the image */
}

.price-list-img {
    max-width: 80%; /* Adjust the maximum width as needed */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: add some rounding to the corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: add some shadow for depth */
}


/* Booking Section */
.booking {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.social-media-large {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-media-large a {
    color: #333;
    margin: 0 15px;
    text-decoration: none;
    font-size: 4em;
    transition: color 0.3s ease;
}

.social-media-large a:hover {
    color: #f68c8b;
}

/* Footer Section */
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.footer p {
    margin: 0;
    padding: 0;
}

.social-media {
    margin-top: 10px;
}

.social-media a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: blue;
}

/* Location Section */
#our-location {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

#our-location h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.full-width-iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* General modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Modal content styles */
.modal-content {
    background-color: white;
    padding: 20px;
    border: 1px solid #888;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    position: relative;
    text-align: center;
    margin: 5% auto;
    max-width: 90%;
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
}

/* Image modal specific styles */
#myModal .modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

#myModal img {
    height: auto;
    width: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

/* Contact Us Modal */
#contactModal .modal-content {
    width: 80%; /* Increased width for larger content */
    max-width: 600px; /* Ensure it doesn't get too wide */
    padding: 40px; /* Adjust padding for a bigger content area */
    margin: 14% auto;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    font-size: 1.2em;
    background-color: white;
    position: relative;
}

#contactModal .social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px; /* Increased spacing above social media icons */
}

#contactModal .social-media a {
    font-size: 2em;
    color: #333;
    transition: color 0.3s ease;
}

#contactModal .social-media a:hover {
    color: pink;
}

#contactModal .close {
    position: absolute;
    top: 8px;
    right: 15px;
    font-size: 44px;
}

.modal .social-media a {
    color: #333;
    margin: 10px;
    text-decoration: none;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.modal .social-media a:hover {
    color: blue;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

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

    .service-item {
        width: 80%;
    }

    .service-content {
        flex-direction: column;
        text-align: center;
    }

    .service-images {
        justify-content: center;
    }

    .service-images img {
        width: 80px;
        height: 80px;
    }

    .service-price-container {
        margin: 20px 0 0 0;
    }

    .modal-content {
        width: 80%;
    }

      #contactModal .modal-content {
        width: 71%; /* Adjust for smaller screens */
        height: 50%;
        max-width: 100%; /* Full width on small screens */
        padding: 45px; /* Less padding for small screens */
    }
    #contactModal .close {
    position: absolute;
    top: 40px; /* Adjust top for visibility */
    right: 20px; /* Adjust right for visibility */
    font-size: 67px; /* Set a smaller font size for mobile */
    cursor: pointer; /* Make sure it's clickable */
}
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
  
}
}
