/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #C4E1D1; /* Light Mint Green Background */
    color: #333333; /* Charcoal Gray Text */
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Section with Navbar */
header {
    position: fixed;
    width: 100%;
    background-color: #F8D0D5; /* Soft Blush Pink */
    padding: 10px 0;
    top: 0;
    left: 0;
    z-index: 1000;
}

header .logo img {
    width: 150px;
    margin-left: 30px;
}

header nav {
    float: right;
    margin-right: 30px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 10px;
    transition: 0.3s ease-in-out;
}

header nav ul li a:hover {
    color: #F04A35; /* Deep Coral Hover Effect */
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://i.pinimg.com/736x/66/c6/c2/66c6c2ce12458899379cc22240ad1d6f.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
    text-align: center;
}

.hero .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #F8D0D5; /* Soft Blush Pink Title */
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero .btn {
    padding: 15px 30px;
    background-color: #F04A35; /* Deep Coral Button */
    color: white;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.hero .btn:hover {
    background-color: #F28D88; /* Lighter Coral on Hover */
}

/* Services Section */
section {
    padding: 60px 20px;
    text-align: center;
    background-color: white; /* White Background for Sections */
    color: #333;
}


h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #F04A35; /* Deep Coral for Section Titles */
}

/* Contact Form */
form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #F8D0D5; /* Soft Blush Pink Form Background */
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #F04A35; /* Deep Coral for Labels */
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    width: 100%;
    padding: 15px;
    background-color: #F04A35; /* Deep Coral Button */
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

form button:hover {
    background-color: #F28D88; /* Lighter Coral on Button Hover */
}

/* Footer */
footer {
    background-color: #F8D0D5; /* Soft Blush Pink Background */
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer .social-links {
    margin-top: 20px;
}

footer .social-links a {
    color: white;
    margin: 0 15px;
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

footer .social-links a:hover {
    color: #F04A35; /* Deep Coral on Social Link Hover */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Navbar adjustment for smaller screens */
    header nav {
        display: block;
        text-align: center;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    header nav ul li a {
        font-size: 1.2rem;
        padding: 10px;
    }

    /* Hero Section adjustments */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    /* Form input fields */
    form input, form textarea, form button {
        width: 100%;
    }
}
/* Global Styling */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

/* Services Section */
section {
    padding: 50px 0;
    text-align: center;
}

/* Styling for the Services section container */
#makeup, #hair, #nails, #skin {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    width: 23%;
   /* This will keep 4 items side by side with some space in between */
}

/* Flexbox layout for the services section (horizontal) */
.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows the items to wrap if the screen is too narrow */
}

/* Add individual service section styles */
section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Styling for the Service section contents */
section p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Styling for the buttons and links */
.btn {
    background-color: #f05d5e;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

/* Make sure the services look good on smaller screens */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }

    #makeup, #hair, #nails, #skin {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* Services Section */
#services {
    padding: 50px 0;
    text-align: center;
}

/* Container for all services */
.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows the items to wrap if the screen is too narrow */
}

/* Individual service box */
.service-box {
    width: 23%; /* Adjust width for each section */
    margin: 10px; /* Space between each service box */
    padding: 20px;
    border: 1px solid #ccc; /* Optional border for each box */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow effect */
    background-color: #fff;
    text-align: center;
}

/* Image inside each service box */
.service-image {
    width: 100%; /* Make image fill the box */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional rounded corners for images */
    margin-bottom: 15px; /* Space between image and text */
}

/* Headings inside the service boxes */
.service-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

/* Description inside the service boxes */
.service-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column; /* Stack the sections vertically */
        align-items: center; /* Center align when stacked */
    }

    .service-box {
        width: 100%; /* Take up full width on smaller screens */
        margin-bottom: 20px; /* Space between sections */
    }
}
/* Google Font */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header Styling */
.main-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.main-header .logo img {
    height:auto;
    width: auto;

  
}
.main-header .container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    max-height: 60px; /* Adjust this height as needed */
}

.navbar {
    display: flex;
    align-items: center;
}


.navbar {
    display: flex;
    justify-content:space-between;
    align-items: center;

}

.nav-links {
    list-style: none;
    display: flex;
    gap: 10px;
    
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #f05d5e;
} */

Hero Section
.hero {
    height: 100vh;
    background: url('https://i.pinimg.com/736x/66/c6/c2/66c6c2ce12458899379cc22240ad1d6f.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: #fff;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    letter-spacing: 1px;
 }

.hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

.btn {
    background-color: #f05d5e;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: #c94748;
    transform: scale(1.05);
}

Animations 
.animate-fade-in {
    animation: fadeIn 1.5s ease forwards;
}
.animate-slide-up {
    animation: slideUp 1.5s ease forwards;
}
.animate-scale-in {
    animation: scaleIn 1.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

/* Hero Styling */
.hair-hero {
  background: url('https://i.pinimg.com/736x/ff/3a/2b/ff3a2b1e4b3fa5d42ff7c0ac5ef31f3a.jpg') no-repeat center center/cover;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.btn {
  background: #e91e63;
  color: #fff;
  padding: 12px 24px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.1);
}

/* Hair Services Section */
.hair-services {
  padding: 60px 20px;
  background: #fefefe;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  margin: 15px 0 10px;
  font-size: 1.4rem;
}

.service-card p {
  font-size: 1rem;
  padding: 0 10px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 1s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0 }
  to { transform: scale(1); opacity: 1 }
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.social-links a {
  color: #e91e63;
  margin: 0 10px;
  text-decoration: none;
}
/* Navbar Flex Layout */
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    min-height: 90px;
}

/* Logo Styling */
.logo img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ffb6c1;
    box-shadow: 0 2px 12px #e7548055;
    background: #fff;
    transition: box-shadow 0.3s;
}
.logo img:hover {
    box-shadow: 0 4px 24px #ff69b4aa;
}

/* Navbar Styling */
.navbar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #e75480;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}

.nav-links li a:hover,
.nav-links li a:focus {
    background: #ffb6c1;
    color: #fff;
}

/* Responsive Navbar */
@media (max-width: 700px) {
    .nav-flex {
        flex-direction: column;
        align-items: flex-start;
        min-height: unset;
    }
    .navbar {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    .nav-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }
    .logo img {
        width: 60px;
        height: 60px;
    }
}
/* Advanced Navbar Styling */
.navbar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    background: rgba(255, 182, 193, 0.18); /* glassmorphism effect */
    backdrop-filter: blur(6px);
    border-radius: 24px;
    box-shadow: 0 2px 16px #e7548055;
    padding: 10px 30px;
    margin-left: 40px;
    transition: background 0.5s;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #e75480;
    text-decoration: none;
    font-size: 1.1em;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
    transition: color 0.3s, background 0.3s, box-shadow 0.3s;
    background: linear-gradient(90deg, #fff 60%, #ffe4ec 100%);
    box-shadow: 0 2px 8px #ffb6c133;
}

.nav-links li a::after {
    content: '';
    display: block;
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #e75480 0%, #ffb6c1 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}

.nav-links li a:hover,
.nav-links li a:focus {
    color: #fff;
    background: linear-gradient(90deg, #e75480 60%, #ffb6c1 100%);
    box-shadow: 0 4px 16px #e75480aa;
}

.nav-links li a:hover::after,
.nav-links li a:focus::after {
    transform: scaleX(1);
}

/* Navbar transition on scroll (optional sticky effect) */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(120deg, #ffb6c1 0%, #ffe4ec 100%);
    box-shadow: 0 2px 16px #e7548033;
    transition: background 0.5s, box-shadow 0.5s;
}

/* Responsive Navbar */
@media (max-width: 700px) {
    .navbar {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        padding: 10px 0;
    }
    .nav-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }
}
/* Flex layout for header */
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    min-height: 90px;
}

/* Logo styling and moving (bounce) animation */
.logo {
    margin-left:-20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.logo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffb6c1;
    box-shadow: 0 4px 24px #e75480aa;
    background: #fff;
    transition: box-shadow 0.3s;
    animation: logoBounce 2.2s infinite cubic-bezier(.4,2,.6,1);
}
@keyframes logoBounce {
    0%, 100% { transform: translateY(0) scale(1);}
    10% { transform: translateY(-10px) scale(1.08);}
    20% { transform: translateY(-18px) scale(1.12);}
    30% { transform: translateY(-10px) scale(1.08);}
    40% { transform: translateY(0) scale(1);}
    100% { transform: translateY(0) scale(1);}
}
.logo img:hover {
    box-shadow: 0 8px 32px #ff69b4cc;
    filter: brightness(1.1) drop-shadow(0 0 8px #ffb6c1);
}

/* Navbar stays on the right */
.navbar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
/* Hover Effect: Pink Pop */
.service-box:hover .service-image {
    transform: scale(1.08);
    box-shadow: 0 8px 16px rgba(218, 206, 212, 0.6);
    filter: hue-rotate(330deg) saturate(120%);
}
