/* styles.css */

:root {
	--clr-accent-100: #c3b2b2 ; /* card background*/
	--clr-accent-200: rgba(243, 7, 192, 0.66);
	--clr-accent-300: rgb(252, 50, 178);
	--clr-accent-400: #564e96; /* background-color button*/	
	--clr-accent-500: rgb(255, 46, 46);
	--clr-accent-600: #820101f0; /* card background color*/

	--clr-primary-400: #e5e1e1; /*text*/ 
	--clr-primary-401: #FFFFFF; /*bright white*/

	--clr-neutral-100: #800000; /*background for header*/
	--clr-neutral-500: #36395A; /*color button*/
	--clr-neutral-900: black; /*footer background*/

	--ff-primary: 'Poppins', sans-serif;
	
	--ff-body: var(--ff-primary);
	--ff-heading: var(--ff-primary);

	--fw-regular: 400;
	--fw-semi-bold: 500;
	--fw-bold: 700;
	
	--fs-300: 0.8125rem;
	--fs-400: 0.875rem; 
	--fs-500: 0.9375rem; 
	--fs-600: 1rem; /* 1 rem = 16px */
	--fs-700: 1.1rem;
	--ff-701-1: 1.2rem; 
	--fs-701: 1.5rem;
	--fs-702: 1.7rem;
	--fs-703: 1.9rem;
	--fs-800: 2.5rem;
	--fs-900: 3rem;
	--fs-901: 3.5rem; 

	--fs-body: var(--fs-400);
	--fs-primary-heading: var(--fs-800);
	--fs-secondary-heading: var(--fs-700);
	--fs-nav: var(--fs-500);
	--fs-button: var(--fs-600);

	--size-99: .026rem;
	--size-100: 0.25rem;
	--size-200: 0.5rem;
	--size-300: 0.75rem;
	--size-400: 1rem; /* 1 rem = 16px */
	--size-500: 1.5rem;
	--size-600: 2rem;
	--size-601:	2.2rem;
	--size-700: 3rem;
	--size-701: 3.5rem;
	--size-800: 4rem;
	--size-900: 5rem;
	--size-901: 8rem;
	--size-902: 16rem;
}


/*------------ Box sizing rules ----------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

/*--------- Remove default margin --------------*/
* {
	margin: 0;
	padding: 0;
	font: inherit;
}


/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul[role='list'],
ol[role='list'] {
	list-style: none;
}


/*-------------Set core root defaults-----------*/

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--scroll-padding, 130px);
}

html:focus-within {
	scroll-behavior: smooth;
}


/* general styling */
main,
body {
	font-size: var(--fs-body);
	font-family: var(--ff-body);
	color: var(--clr-primary-400);
	margin: 0;
}


/*----------- Set core body defaults------------*/

body {
	text-rendering: optimizeSpeed;
	line-height: 1.7;
	overflow-x: hidden;
}


/* A elements that don't have a class get default styles */

a:not([class]) {
	text-decoration-skip-ink: auto;
}


/*----- Make images easier to work with -------*/

img,
picture,
svg {
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
	overflow-x: hidden;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

h1,h2,h3 {
	line-height: 1rem;
}

/*-------------- Utility classes ---------------*/

.text-primary-400 {
	color: var(--clr-primary-400);
}
.text-accent-400 {
	color: var(--clr-accent-400);
}
.text-accent-100 {
	color: var(--clr-accent-100);
}
.text-neutral-100 {
	color: var(--clr-neutral-100);
}
.text-neutral-500 {
	color: var(--clr-neutral-500);
}
.text-neutral-900 {
	color: var(--clr-neutral-900);
}

.bg-primary-400 {
	background-color: var(--clr-primary-400);
}
.bg-accent-400 {
	background-color: var(--clr-accent-400);
}
.bg-accent-100 {
	background-color: var(--clr-accent-100);
}
.bg-neutral-100 {
	background-color: var(--clr-neutral-100);
}
.bg-neutral-500 {
	background-color: var(--clr-neutral-500);
}
.bg-neutral-900 {
	background-color: var(--clr-neutral-900);
}
.bg-main {
	background-color: #8d3b3b8d;
}

.Background_cover_services {
	background-image: url(../images/background_pic2.jpg);
	background-size: cover;
	background-position: center;
	border-image: linear-gradient(hsla(240, 14%, 65%, 0.3), hsla(0, 97%, 26%, 0.4)) fill 1;
}

.Background_cover_team {
	background-image: url(../images/background_pic6.webp);
	background-size: cover;
	background-position: center;
}

.Background_cover_price {
	background-image: url(../images/background_pic.jpg);
	background-size: cover;
	background-position: center;
	border-image: linear-gradient(hsla(0, 97%, 26%, 0.29), hsla(240, 14%, 65%, 0.3)) fill 1;
}

.background-accent {
	border-image: linear-gradient(hsla(240, 14%, 65%, 0.3), hsla(0, 97%, 26%, 0.29)) fill 1;
}

.fw-bold { font-weight: var(--fw-bold); }
.fw-semi-bold { font-weight: var(--fw-semi-bold); }
.fw-regular { font-weight: var(--fw-regular); }

.underline {text-decoration: underline;}

.fs-primary-heading {
	font-size: var(--fs-primary-heading);
	line-height: 1.1;
}
.fs-secondary-heading {
	font-size: var(--fs-secondary-heading);
	line-height: 1.1;
}

:where(.flow :not(:first-child)) {
	margin-top: var(--flow-spacer, 1em);
}

.Flex {
	display: flex;
	gap: 1rem;
}

.overFlow {
	overflow-x: hidden;
}

.fs-300 { font-size: var(--fs-300); }
.fs-400 { font-size: var(--fs-400); }
.fs-500 { font-size: var(--fs-500); }
.fs-600 { font-size: var(--fs-600); }
.fs-700 { font-size: var(--fs-700); }
.fs-701 { font-size: var(--fs-701); }
.fs-702 { font-size: var(--fs-702); }
.fs-800 { font-size: var(--fs-800); }
.fs-900 { font-size: var(--fs-900); }
.fs-901 { font-size: var(--fs-901); }

.padding-block-100 {
	padding-block: var(--size-100);
}

.padding-block-200 {
	padding-block: var(--size-200);
}

.padding-block-300 {
	padding-block: var(--size-300);
}

.padding-block-400 {
	padding-block: var(--size-400);
}

.padding-block-500 {
	padding-block: var(--size-500);
}

.padding-block-600 {
	padding-block: var(--size-600);
}

.padding-block-700 {
	padding-block: var(--size-700);
}

.padding-block-800 {
	padding-block: var(--size-800);
}

.padding-block-900 {
	padding-block: var(--size-900);
}


/*-------------- padding top -------------------*/

.padding-top-100{
	padding-top: var(--size-100);
}

.padding-top-200{
	padding-top: var(--size-200);
}

.padding-top-300{
	padding-top: var(--size-300);
}

.padding-top-400{
	padding-top: var(--size-400);
}

.padding-top-500{
	padding-top: var(--size-500);
}

.padding-top-600{
	padding-top: var(--size-600);
}

.padding-top-700{
	padding-top: var(--size-700);
}

.padding-top-800{
	padding-top: var(--size-800);
}

.padding-top-900{
	padding-top: var(--size-900);
}

.padding-top-901{
	padding-top: var(--size-901);
}

.padding-top-902{
	padding-top: var(--size-902);
}

/*---------------- padding bottom --------------*/

.padding-bottom-99{
	padding-bottom: var(--size-99);
}

.padding-bottom-100{
	padding-bottom: var(--size-100);
}

.padding-bottom-200{
	padding-bottom: var(--size-200);
}

.padding-bottom-300{
	padding-bottom: var(--size-300);
}

.padding-bottom-400{
	padding-bottom: var(--size-400);
}

.padding-bottom-500{
	padding-bottom: var(--size-500);
}

.padding-bottom-600{
	padding-bottom: var(--size-600);
}

.padding-bottom-700{
	padding-bottom: var(--size-700);
}

.padding-bottom-800{
	padding-bottom: var(--size-800);
}

.padding-bottom-900{
	padding-bottom: var(--size-900);
}

.padding-bottom-901{
	padding-bottom: var(--size-901);
}

.padding-bottom-902{
	padding-bottom: var(--size-902);
}

.container {
	--max-width: 1110px;
	--padding: 1rem;

	width: min(var(--max-width), 100% - (var(--padding) *2));
	margin-inline: auto;
}

.even-columns {
	display: grid;
	gap: 1rem;
}

@media (min-width: 50em){
	.even-columns {
		grid-auto-flow: column;
		grid-auto-columns: 1fr;
	}
}

/*-------------------------------------------------------------------------------------------------------- */



/* ------------ First Page Home ----------------*/

/*----------- primary header ------------------*/

.logo {	
	border-radius:5px; 
	min-height: 90px; 
	width: 200px;
	margin: 1.2rem;	
}

.logo:hover{
	box-shadow: rgba(0, 0, 0, 1.2) 5px 28px 20px -18px;
	transform: translate3d(0, 2px, 0);
}

.primary-header {
	align-items: center;
}

.primary-navigation {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: clamp(var(--size-500), 5vw, var(--size-800));
}

.primary-navigation a {
	color:var(--clr-primary-400);
	text-decoration: none;
	font-size: var(--fs-700);	
}

.primary-navigation a:hover{
	color: var(--clr-accent-200);	
}

.primary-navigation a {
	opacity: 1;
	position: relative;
}

.primary-navigation a::before {
	border-radius: 5px;
	content: '';
	display: block;
	height: 5px;
	background: var(--clr-primary-400);
	position: absolute;
	top: -.75em;
	left: 0;
	right: 0;
	transform: scale(0 , 1);
	transform-origin: right;
	transition: transform ease-in-out 200ms;
}

.primary-navigation a:hover::before {
	transform: scale(1,1);
}

.mobile-nav-toggle{
	display: none;
}

.nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@supports (backdrop-filter: blur(0.5rem)) {
	.primary-navigation{
		backdrop-filter: blur(0.5rem);
	}
}

.intro {
	position: relative;
	border-radius: 10px;
	width: 60%;
	min-height: 40vh;
	background-image: url(../images/1.jpg);
	margin: 100px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-top: 15px;
	margin-bottom: 65px;
	transition: 5s;
	
	animation-name: animate;
	animation-direction: alternate-reverse;
	animation-play-state: running;
	animation-timing-function: ease-in-out;
	animation-duration: 8s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;	
}

@media (min-width: 900px) {
	.intro {
        min-height: 55vh;
		width: 50%;
    }
}


.introText p{
	position: absolute;  
	right: 0;
	
	margin-right: 20px;	
	text-align: right;

	font-size: 18px;		
	font-family: Bradley Hand, cursive;
	color: #FCFCFC ;
	white-space: pre;
}

@media (min-width: 600px){
	.introText p{
		font-size: 30px;
	}
}

@keyframes animate {
	20%{
		background-image: url(../images/2.jpg);
	}
	50%{
		background-image: url(../images/3.jpg);
	}
	75%{
		background-image: url(../images/4.jpg);
	}
	
}

.card-container{
	min-height: auto;
	display: block;
	justify-content: center;
	align-items: center;
	padding: 20px 90px;	
}

@media (max-width: 1105px) {
	.card-container {
		flex-wrap: wrap;
	}
}

@media (max-width: 200em){
	.card-container{
		min-height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 20px 90px;
		gap: var(--size-500);
	}

	.button-container{
		min-height: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 20px 90px;
	}
}

.content-section{
	display: flex;
	justify-content: center;
	align-items: center;
}

.card{
	width: 308px;
	position: relative;
	top: 25px;
	min-height: 400px;
	background: #f0f0f0;
	margin: 30px 30px;
	padding: 20px 5px;
	display: flex;
	flex-direction: column;
	box-shadow: 0.5px 10px #29010189;
	transition: 0.3s ease-in-out;
	margin-top: 5%;
	border-radius: 10px;
	font-family: var(--ff-primary);
}

.card .imgBx{
	position: relative;
	width: 260px;
	min-height: 260px;
	top: -60px;
	left: 20px;
	box-shadow: 0 5px 20px rgba (0,0,0,1.2);
}

.card .imgBx img{
	max-width: 100%;
	border-radius: 10px;
}

.imgBx:hover img{
	transform: scale(1.1);
}

.card .imgBx h2{
	text-align: center;	
	font-family: 'Lumanosimo';
	font-weight: normal;
}


/*----------------- Button -------------------*/

.button{
	align-self: center;
	background-color: #fff;
	background-image: none;
	background-position: 0 90%;
	background-repeat: repeat no-repeat;
	background-size: 4px 3px;
	border-radius: 15px 225px 255px 15px 15px 255px 225px 15px;
	border-style: solid;
	border-width: 2px;
	box-shadow: rgba(0, 0, 0, .2) 15px 28px 20px -18px;
	box-sizing: border-box;
	color: #41403e;
	cursor: pointer;
	display: inline-block;
	font-family: var(--ff-primary);
	font-size: 1rem;
	line-height: 23px;
	outline: none;
	padding: .75rem;
	text-decoration: none;
	transition: all 235ms ease-in-out;
	border-bottom-left-radius: 15px 255px;
	border-bottom-right-radius: 225px 15px;
	border-top-left-radius: 255px 15px;
	border-top-right-radius: 15px 225px;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
}

.button a{
	text-decoration: none;
	font-family: var(--ff-primary);
	color:var(--clr-neutral-900);
}
  
.button:hover {
	box-shadow: rgba(0, 0, 0, .3) 2px 10px 2px -5px;
	transform: translate3d(0, 2px, 0);
}
  
.button:focus {
	box-shadow: rgba(0, 0, 0, .3) 2px 8px 4px -6px;
}

.sr-only {
	display: none;
}

.wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 86px;
}

.wave .shape-fill {
    fill: #800000;
}

.wave-section {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 275px;
	overflow-y: hidden; /* Hide vertical scrollbar */
  	overflow-x: hidden; /* Hide horizontal scrollbar */
}

.wave-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(125% + 1.3px);
    height: 256px; /*------------ 164 old size--------*/
}

.wave-bottom .shape-fill {
    fill: #800000;
}

/*------------ "Most Popular" section--------*/

.container2 {
	--max-width: 1110px;
	--padding: 1rem;

	width: min(var(--max-width), 100% - (var(--padding) *2));
	margin-inline: auto;
	margin-bottom: 5px;
}

.text-container {
	margin: 10px 15px 75px 15px;
	line-height: 3.7rem;
	font-family: 'Lumanosimo';
}

.text-container2 {
	margin: 15px 15px 0 35px;	
	line-height: 3.7rem;
	font-family: 'Lumanosimo';
}

.text-container2 p {
	font-size: var(--fs-800);	
}

.wash_cut-pic {
	width: 55%;
	min-height: 65vh;
}

.product_wrapper{
	display: grid;
	place-content: center;
	margin: 1rem;
}

.product {
	--content-padding: 1.5rem;
	--content-spacing: 1rem;

	display: grid;
	background-color: var(--clr-accent-600);
	border-radius: 0.5rem;
	overflow: hidden;
	max-width: 1100px;
}

@media (min-width: 800px) {
	.product {
		grid-template-columns: 1fr 1fr;
	}

	.text-container2 p {
		font-size: var(--fs-900);
		font-weight: var(--fw-semi-bold);
	}
}

.product_content {
	display: grid;
	gap: var(--content-spacing);
	padding: var(--content-padding);
}

.product_content-2 {
	display: grid;
	gap: 30px;
	padding: 75px;;	
}

.product_title{
	text-align: center;
	line-height: 2.37rem;
	font-family: var(--ff-primary);
	letter-spacing: 2px;
	font-size: var(--fs-702);
	margin-top: 10px;
}

.salon-description {
	text-align: center;
	font-family: var(--ff-primary);
	letter-spacing: 1px;
	font-size: var(--fs-600);
}

.salon-description-2 {
	text-align: center;
	font-family: var(--ff-primary);
	letter-spacing: 1px;
	font-size: var(--fs-700);
}

.product_price {
	font-family: var(--ff-primary);
	font-size: var(--fs-400);
	text-align: center;
	letter-spacing: 1px;
}

.salon-features{
	list-style: none;
	letter-spacing: 1px;
	text-align: center;
}

.learn_more_button {
	align-self: center;
	background-color: #fff;
	background-image: none;
	background-position: 0 90%;
	background-repeat: repeat no-repeat;
	background-size: 4px 3px;
	border-radius: 15px 225px 255px 15px 15px 255px 225px 15px;
	border-style: solid;
	border-width: 2px;
	box-shadow: rgba(0, 0, 0, .2) 15px 28px 20px -18px;
	box-sizing: border-box;
	color: #413e3e;
	cursor: pointer;
	display: inline-block;
	font-family: var(--ff-primary);
	font-size: 1rem;
	line-height: 23px;
	outline: none;
	padding: .75rem;
	text-decoration: none;
	transition: all 235ms ease-in-out;
	border-bottom-left-radius: 15px 255px;
	border-bottom-right-radius: 225px 15px;
	border-top-left-radius: 255px 15px;
	border-top-right-radius: 15px 225px;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
}

.learn_more_button a{
	text-decoration: none;
	font-family: var(--ff-primary);
	color:var(--clr-neutral-900);
}

.learn_more_button:hover {
	box-shadow: rgba(0, 0, 0, .3) 2px 10px 2px -5px;
	transform: translate3d(0, 2px, 0);
}

.learn_more_button:focus {
	box-shadow: rgba(0, 0, 0, .3) 2px 8px 4px -6px;
}





/*--------------------- Hair Extensions -------------------------------*/

.moveText {
	float: right;
}


/*------------------------------------------------------------------------------*/






/*------------ "Essential Looks & Products" section--------*/


.containerPic {
    max-width: 1200px;
    margin: auto;
    padding: 16px;
}

/* Title styling */

.containerPic h1 {
	color: #000000;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-top: 48px;
    margin-bottom: 48px;
	font-family:'Courier New', Courier, monospace;
}

/* Grid layout for images */

.grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

/* Image styles */

.grid img {
     width: 100%; /* Full width of the column */
    height: 200px; /* Fixed height for all images */
    object-fit: cover; /* Covers the area, cropping as needed */
	border-radius: 10px;
	box-shadow: 20px 20px 50px grey;
}

/* Media queries for responsive design */

@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(4, 1fr);
    }

	.grid img {
		height: 150px;
	}

	.grid img:nth-child(n+9) {
        display: none; /* Hide images starting from the 5th one */
    }

    h1 {
        font-size: 32px;
        margin-top: 24px;
    	margin-bottom: 24px;
    }	         
}

@media (max-width: 480px) {
/* Adjust the grid to 1 column for phones */
	.grid {
        grid-template-columns: repeat(2, 1fr); /* Show 2 columns on phones */
    }

    .grid img:nth-child(n+9) {
        display: none; /* Hide images starting from the 3rd one */
    }

/* Adjust title size and container padding for smaller screens */
    h1 {
    	font-size: 28px;
    }

    .containerPic {
        padding: 8px;
    }      
}


/*-------------------------------------------------------------------------- */





/* ------------Second Page About Us-------------*/

.about_Section{
	margin-top: 120px ;
	margin-bottom: 50px;
}

.about_section_wrap {	
	min-height: auto;
	display: grid;
	justify-content: center;
	align-items: center;
	padding: 20px 90px;	

	gap: 2.3rem;
	max-width: 50rem;
	margin-inline: auto;
	padding-inline: 1rem;
	text-align: center;
}

.about_section_wrap p {
	font-family: "Times New Roman", Times, serif;
}

.about_section_wrap h2{
	font-family: 'Lumanosimo';
}

.about_img {
	border-radius: 10px;
	width: 85%;
	min-height: 60vh;
	background-image: url(../images/front_of_salon.jpg);
	margin: 100px auto;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-top: 15px;
	margin-bottom: 65px;
	transition: 5s;
}

@media (min-width: 900px) {
	.about_img {
		min-height: 95vh;
	}
}

.line {
	margin-block: 25px;
	height: 2px;
	background-color: var(--clr-primary-401);
	border-radius: 10px;
	opacity: .000002;
}

.line-B {
	margin-block: 25px;
	height: 2px;
	background-color: var(--clr-neutral-900);
	border-radius: 10px;
}

.about_section_wrap2 {		
	max-width: 80%;
	margin-inline: auto;
}

.info-section p{	
	padding: 4px;	
	text-align: center;
	font-family: "Times New Roman", Times, serif;
}

.about_address{
	min-height: auto;
	display: grid;
	justify-content: center;
	align-items: center;
	padding: 20px 90px;	

	gap: 2.3rem;
	max-width: 50rem;
	margin-inline: auto;
	padding-inline: 1rem;
	text-align: center;
}

.social-AAA-2 {
	width: 100%;
	clear: both;
	margin-top: 30px;
	text-align: center;
	display: inline-block;
}

.social-AAA-2 i {	
	color: var(--clr-neutral-900);
	font-size: var(--fs-700);
	height: 45px;
	width: 45px;
	border-radius: 50%;
	line-height: 45px;
	text-align: center;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.085);
	background-color: var(--clr-neutral-100);
	background-color: #ffffff;
	margin: 0 5px;
}

.social-AAA-2 i:hover {
	color: #fff;
	background-color: var(--clr-neutral-100);
	transition: 1s ease;
	transform: rotate(360deg);
}

.social-AAA-2 a {
	text-decoration: none;
}

@media (max-width: 800px) {
	.social-AAA-2 i {
		font-size: 19px;
		height: 35px;
		width: 35px;
		line-height: 35px;
	}
}

.map_icon {
	display: block;
	overflow-x: hidden;		
	text-align: center;
	margin: 1rem;
}

.Directions {
	float: left;
}

/*-------------------------------------------------------------------------- */



/*------------- Third Page Services ----------- */

.title_services{
	display: grid;
	justify-content: center;
	align-items: center;
	line-height: 3rem;
}

.services_Section {
	padding-top: 100px;
	margin-bottom: 50px;
}

.services_section_wrap {	
	padding-top: var(--size-500);
}

.service_items {	
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
	align-items: center;
	text-align: center;

	margin: 1rem;	
	gap: 1rem;
	overflow-y: hidden;
  	list-style: none;
}

@media (min-width: 30em) {
	.service_items {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 40em) {
	.service_items {
		grid-template-columns: repeat(5, 1fr);
	}
}

.service_items a {
	font-family: "Snell Roundhand", cursive;
	font-size: var(--fs-701);
	text-decoration: none;
	color: var(--clr-primary-401);
}

.service_items a:hover {
	color: var(--clr-accent-200);
}

.service_items a {
	opacity: 1;
	position: relative;
}

.service_items a::before {
	border-radius: 5px;
	content: '';
	display: block;
	height: 2px;
	background: var(--clr-accent-200);
	position: absolute;
	bottom: -.75em;
	left: 0;
	right: 0;
	transform: scale(0 , 1);
	transform-origin: right;
	transition: transform ease-in-out 200ms;
}

.service_items a:hover::before {
	transform: scale(1,1);
}

.service-List {
	margin: 1rem;
	font-size: var(--fs-701);
	color: var(--clr-neutral-900);
}

.service-List ul {
	list-style: none;
}

.sticky-2 {		
	padding-bottom: 1rem;	
}

/*-------------------------------------------------------------------------- */




/*------------- Fourth Page Prices ----------- */

#coloring-service {	
	padding: .2rem;
}

#hair-cuts{	
	padding: .2rem;
}

#hair-styling {		
	padding: .2rem;
}

#chemical-service {	
	padding: .2rem;
}

#add-on {	
	padding: .2rem;
}

.title_prices {	
	display: grid;
	justify-content: center;
	align-items: center;	
}

.sticky {
	border-radius: 2px;	
	top: 0;
	padding-bottom: .5rem;	
}

.services_Section-p {
	padding-top: 100px;
	margin-bottom: 50px;
}

.services_section_wrap-p {	
	padding-top: var(--size-500);
	color: var(--clr-neutral-900);

}

.service_items-p {	
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
	align-items: center;
	text-align: center;
	
	margin: 1rem;	
	gap: 1rem;
	overflow-y: hidden;
  	list-style: none;
}

.salon-service-table .price_tag {
	text-align: center;
}

@media (min-width: 30em) {
	.service_items-p {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 40em) {
	.service_items-p {
		grid-template-columns: repeat(5, 1fr);
	}
}

.service_items-p a {
	font-size: var(--ff-701-1);
	text-decoration: none;
	color: var(--clr-neutral-900);
}

.service_items-p a:hover {
	color: var(--clr-accent-200);
}

.service_items-p a {
	opacity: 1;
	position: relative;
}

.service_items-p a::before {
	border-radius: 5px;
	content: '';
	display: block;
	height: 2px;
	background: var(--clr-accent-200);
	position: absolute;
	bottom: -.75em;
	left: 0;
	right: 0;
	transform: scale(0 , 1);
	transform-origin: right;
	transition: transform ease-in-out 200ms;
}

.service_items-p a:hover::before {
	transform: scale(1,1);
}

.price-list-container {
    max-width: 1200px;
    margin: 0 auto;
	margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows items to wrap on small screens */

	padding: 85px;
    font-size: 16px;
    line-height: 1.6;
	font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price-list-container-1 {
    max-width: 1200px;
    margin: 0 auto;	
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows items to wrap on small screens */

	
    padding: 85px;
    font-size: 16px;
    line-height: 1.6;
	font-family: 'Helvetica Neue', Arial, sans-serif;

	margin-bottom: 4rem;
	z-index: 1;  
}  

.extraspace {
	margin-top: 200px;
}

.extraspace-2 {
	margin-top: 70px;
}

@media (min-width: 300px) {
	.price-list-container {
	    padding: 0; /* Full width on small screens */
    }
	
	.extraspace {
		margin-top: 170px;
	}

	.service-title {
		text-align: center;
	}
}

.price-list-container .service-item:not(:last-child) {
	border-bottom: 1px solid #000000;
}

.price-list-container-1 .service-item:not(:last-child) {
	border-bottom: 1px solid #ffffff;
}

.service-section {
    width: 100%; /* Full width on small screens */
    box-sizing: border-box; /* Include padding in width calculation */
    padding: 20px 10px; /* Add some padding */
	border-radius: 5px;
}

.service-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
	margin-top: 20px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.service-item:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

.service-role {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-price {
    font-size: 20px;
    margin-bottom: 8px;
}

.boldtext {
	font-weight: bold; 
}

/* Policies styles */

.policies-section {
	max-width: 1200px; /* Full width on small screens */
    box-sizing: border-box; /* Include padding in width calculation */   
    margin-bottom: 80px; /* Add space between services and policies on small screens */

	min-height: auto;
	display: grid;
	justify-content: center;
	align-items: center;
	gap: .5rem;	
	margin-inline: auto;
	padding-inline: 1rem;
	text-align: center;
}

.hair-policies {
	width: 100%; /* Full width on small screens */
	margin-top: 80px; /* Add space between services and policies on small screens */
	box-sizing: border-box; /* Include padding in width calculation */  	
	text-align: center;
}

.policies-section p {
	text-align: center;	
}

.policies-title {
    font-size: 28px;
    font-weight: bold;
}

.policies-title-hair {
	font-size: 28px;
    font-weight: bold;
    margin-bottom: 50px;
}

.policies-text {
    font-size: var(--fs-700);
    line-height: 1.4;
}

.percent {
	color: #f60707;
}

/* Responsive layout for tablets and above */

@media (min-width: 768px) {
	.service-section {
      width: 45%; /* Adjust width for larger screens */
      padding: 0 20px; /* Adjust padding for larger screens */
    }
    .policies-section {
      width: 45%; /* Adjust width for larger screens */
      padding: 0 20px; /* Adjust padding for larger screens */
      margin-top: 10px; /* Remove top margin on larger screens */
    }
}

.wave-section2 {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 143px;
	overflow-y: hidden; /* Hide vertical scrollbar */
  	overflow-x: hidden; /* Hide horizontal scrollbar */
}

.wave-section3 {	
	display: flex;
	flex-direction: column;
	align-items: center;
	
	overflow-y: hidden; /* Hide vertical scrollbar */
  	overflow-x: hidden; /* Hide horizontal scrollbar */
}

.custom-image-top {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);	
}

.custom-image-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 156px;
}

.custom-image-top .shape-fill {
    fill: #800000;
}

.custom-image-bottom {
    position: absolute;
    bottom: 10;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;	
}

.custom-image-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 200px;
}

.custom-image-bottom .shape-fill {
    fill: #800000;
}




/*-------------------------------------------------------------------------- */




/*------------- Fifth Page Team ----------- */


@import url("https://fonts.googleapis.com/css2?family=Marhey:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap");

img {
	width: 100%;
	pointer-events: none;
	user-select: none;
}
  
h1 {
	font-family: "Marley", sans-serif;
	font-size: clamp(1.9rem, 2vw, 3rem);
	opacity: 0;
	animation: title 1.1s ease 0.3s 1 normal forwards;
}
  
@keyframes title {
	0% {
	  opacity: 0;
	  letter-spacing: 10px;
	  color: #ffffff;
	}
  
	100% {
	  opacity: 1;
	  letter-spacing: 0;
	  color: #fff;
	}
}  

#about {
	display: block;	
}
  
.popup {	
	inset: 0;	
	z-index: 20;
	animation: openPopup 0.6s ease-in-out 1 normal;
}
  
@keyframes openPopup {
	from {
	  opacity: 0;
	}
  
	to {
	  opacity: 1;
	}
}
  
.popup-container {
	margin: auto;
	width: min(900px, 90%);
	background: rgba(97, 3, 3, 0.598);
	box-shadow: rgba(38, 38, 43, 0.634) 0px 7px 29px 0px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 12px;
	color: #fff;
	z-index: 30;
	transition: all 0.5s ease-in-out;
}
  
.popup-header {
	position: relative;
	display: flex;
	gap: 8px;
	font-weight: 600;
	padding: 15px 20px 10px;
	font-size: 1.2rem;
}
  
.popup-body {
	color: #f7f7f7;
	height: 70vh;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 30px 20px;
}  
  
.about-container {
	display: grid;
	grid-template-columns: 40% 50%;
	gap: 50px;
	place-items: center;
}
  
.about-container h1 {
	margin-bottom: 20px;
	line-height: 1.4;
	text-align: center;
}
  
.about-container p {
	line-height: 1.6;
	font-size: 1.1rem;
}
  
.about-container .img-frame {
	overflow: hidden;
	width: 250px;
	border-radius: 8px;
	box-shadow: var(--clr-neutral-100) 0px 10px 30px 8px,
	  var(--clr-accent-600) 0px 0px 0px 2px;
}
  
.about-container .img-frame img {
	aspect-ratio: 6/7;
	object-fit: cover;
	transition: transform 1s;
}
  
.about-container .img-frame:hover img {
	transform: rotate(4deg) scale(1.25);
}

.about-container-2 {
	display: grid;
	grid-template-columns: 50% 40%;
	gap: 50px;
	place-items: center;
}
  
.about-container-2 h1 {
	margin-bottom: 20px;
	line-height: 1.4;
	text-align: center;
}
  
.about-container-2 p {
	line-height: 1.6;
	font-size: 1.1rem;
}
  
.about-container-2 .img-frame-2 {
	overflow: hidden;
	width: 250px;
	border-radius: 8px;
	box-shadow: var(--clr-neutral-100) 0px 10px 30px 8px,
	var(--clr-accent-600) 0px 0px 0px 2px;
}
  
.about-container-2 .img-frame-2 img {
	aspect-ratio: 6/7;
	object-fit: cover;
	transition: transform 1s;
}
  
.about-container-2 .img-frame-2:hover img {
	transform: rotate(4deg) scale(1.25);
}

.title {
	text-decoration: underline;
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0.5rem 0;
	text-align: center;
}

.bio {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.bio-2 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
	padding: 10px;
}

.contact-info {
    font-size: 1rem;
    color: #ffffff;
    margin: 1rem 0;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 0.5rem;
}

.contact-info-2 {
    font-size: 1rem;
    color: #ffffff;
    margin: 1rem 0;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 0.5rem;
}

.social-AAA {
	width: 100%;
	clear: both;
	margin-top: 30px;
	text-align: center;
	display: inline-block;
}

.social-AAA i {	
	color: var(--clr-neutral-100);
	font-size: var(--fs-700);
	height: 45px;
	width: 45px;
	border-radius: 50%;
	line-height: 45px;
	text-align: center;
	background-color: var(--clr-neutral-100);
	background-color: #ffffff;
	margin: 0 5px;
}

.social-AAA i:hover {
	color: #fff;
	background-color: var(--clr-neutral-100);
	transition: 1s ease;
	transform: rotate(360deg);
}

.social-AAA a {
	text-decoration: none;
}
  

@media (max-width: 1024px) {
	.popup-body {
	  height: 40vh;
	}
}

@media (max-width: 900px) {
	.popup-body {
	  height: 70vh;
	}
}
  
@media (max-width: 800px) {
	.about-container {
	  grid-template-columns: 1fr;
	  grid-template-rows: 1fr 1fr;
	  grid-template-areas:
		"img-frame"
		"hero-content";
	  padding: 30px 30px 50px;
	  height: 90vh;
	}

	.about-container-2 {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr 1fr;
		grid-template-areas:
		  "img-frame"
		  "hero-content-2";
		padding: 30px 0px 50px;
		height: 90vh;
	}
  
	.about-container .img-frame {
	  grid-area: img-frame;
	  width: 230px;
	  aspect-ratio: 1/1;
	}

	.about-container-2 .img-frame-2 {
		grid-area: img-frame;
		width: 230px;
		aspect-ratio: 1/1;
	}
  
	.hero-content {
	  grid-area: hero-content;
	  margin-bottom: 100px;
	  text-align: center;
	}

	.hero-content-2 {
		grid-area: hero-content-2;
		margin-bottom: 100px;
		text-align: center;
	}
  
	.about-container h1 {
	  margin-bottom: 16px;
	}

	.about-container-2 h1 {
		margin-bottom: 16px;
	}

	.popup-body {
		height: 70vh;
		gap: 2px;
	}	

	.social-AAA i {
		font-size: 19px;
		height: 35px;
		width: 35px;
		line-height: 35px;
	}
}

@media (max-width: 749px) {
	.popup-body {
		height: 120vh;
	}
} 
  
@media (max-width: 550px) {
	.popup-body {
		height: 120vh;
	}
}  

@media (max-width: 480px) {
	.about-container .img-frame {
	  grid-area: img-frame;
	  width: 230px;
	  aspect-ratio: 1/1;
	}

	.about-container-2 .img-frame-2 {
		grid-area: img-frame;
		width: 230px;
		aspect-ratio: 1/1;
	}

	.about-container {
		height: 100vh;	
	}

	.about-container-2 {
		height: 100vh;	
	}
  
	.all-projects img {
	  height: 180px;
	}

	.popup-body {
		height: 110vh;
	}
}
  
@media (max-width: 361px) {
	.about-container {
		height: 120vh;		
	}
	
	.about-container-2 {
		height: 120vh;		
	}

	.popup-body {
		height: 110vh;
	}
}

/*-------------------------------------------------------------------------- */



/*-------------------Start of footer ------------------ */

.footer-container {	
	--max-width: 1100px;
	--padding: 1rem;

	width: min(var(--max-width), 100% - (var(--padding) *2));
	margin: auto;
}

.primary-footer-wrapper {
	display: grid;
	flex-wrap: wrap;
	text-align: center;
	gap: var(--size-800);
	grid-template-areas: 
		"hours"
		"nav"
		"logo-social"
		"copyright-footer";
}

.primary-footer-wrapper ul{
	list-style: none;
}

.primary-footer-logo-social {
	grid-area: logo-social;
	display: grid;
	flex-direction: column-reverse;
	align-content: center;
	margin-left: auto;	
}

.primary-footer-nav {
	margin-bottom: auto;
	grid-area: nav;
}

.primary-footer-nav h4{
	color: var(--clr-accent-500);
	font-size: var(--fs-700);
	font-weight: var(--fw-regular);
	text-transform: capitalize;
	margin-bottom: var(--size-500);
}

.primary-footer-hours {
	grid-area: hours;
	text-align: center;
}

.primary-footer-hours h4{
	color: var(--clr-accent-500);
	font-size: var(--fs-700);
	font-weight: var(--fw-regular);
}

.copyright {	
	text-align: center;	
}

@media (min-width: 50em) {
	.primary-footer-wrapper {
		grid-template-areas: " hours nav logo-social copyright-footer";
	}

	.primary-footer-logo-social {
		align-items: flex-start;
		justify-content: space-between;
		gap: var(--size-500);

		flex-direction: column;
	}

	.copyright {	
		margin-top: var(--size-700);
		text-align: center;
	}
}

@media (max-width: 50em) {
	.primary-footer-wrapper > * {
		margin-inline: auto;
	}
}



/*--------------- Footer navigation ------------*/

.footer-navigation {	
	gap: clamp(var(--size-200), 10vw var(--size-400));
}

.footer-navigation a{
	color: var(--clr-primary-400);
	text-decoration: none;
	font-size: var(--fs-400);
}

.footer-navigation a:hover{
	color: var(--clr-accent-500);
}

.footer-navigation a {
	opacity: 1;
	position: relative;
}

.footer-navigation a::before {
	border-radius: 5px;
	content: '';
	display: block;
	height: 5px;
	background: var(--clr-primary-400);
	position: absolute;
	bottom: -.75em;
	left: 0;
	right: 0;
	transform: scale(0 , 1);
	transform-origin: right;
	transition: transform ease-in-out 200ms;
}

.footer-navigation a:hover::before {
	transform: scale(1,1);
}

.footer-logo{
	border-radius:5px; 
	min-height: 90px; 
	width: 200px;
	margin: 1.2rem;
}

.footer-logo:hover{
	box-shadow: rgba(255, 255, 255, 1.2) 15px 20px 20px -10px;
	transform: translate3d(0, 2px, 0);
}



/*------------------ Social List in Footer ---------------*/

.social-list {
	display: flex;
	margin: auto;
}

.social-list a {
	width: 40px;
	height: 40px;
	text-align: center;
	text-decoration: none;
	color: var(--clr-primary-400);
	box-shadow: 0 0 20px 10px rgba(0,0,0,0.05);
	margin: 10px 30px;
	border-radius: 50%;
	position: relative;
	overflow: hidden;
	transition: transform .2s;
}

.social-list a .fa-brands {
	font-size: 20px;
	line-height: 40px;
	position: relative;
	z-index: 10;
	transition: color .2s;
}

.social-list a::after {
	content: '';
	width: 100%;
	height: 100%;
	top: -90px;
	left: 0;	
	background: linear-gradient(-45deg, var(--clr-accent-200), var(--clr-accent-400));
	position: absolute;
	transition: .2s;
}

.social-list a:hover::after {
	top: 0;
}

.social-list a:hover .fa-brands {
	color: var(--clr-primary-400);
}

.social-list a:hover {
	transform: translateY(-10px);
}

/*-------------------------------------------------------------------------- */




/*---------------- Media Quarry -----------------*/

/* Remove all animations, transitions and smooth scroll for people that prefer
not to see them */

@media (prefers-reduced-motion: reduce) {
	html:focus-within {
	 scroll-behavior: auto;
	}
	
	*,
	*::before,
	*::after {
	  animation-duration: 0.01ms !important;
	  animation-iteration-count: 1 !important;
	  transition-duration: 0.01ms !important;
	  scroll-behavior: auto !important;
	}
}

@media (min-width: 50em) {
	:root {
		--fs-body: var(--fs-500);
		--fs-primary-heading: var(--fs-900);
		--fs-secondary-heading: var(--fs-800);

		--fs-nav: var(--fs-300);
	}
}

@media (max-width: 50em) {
	.primary-navigation {
		gap: 3.5rem;
		position: fixed;
		inset: 0 0 0 30%;

		flex-direction: column;
		z-index: 1000;
		padding: min(20vh, 10rem) 5em ;

		background: hsla(0, 100%, 25%, 0.737);
		backdrop-filter: blur(0.5rem);

		transform: translateX(100%);
		transition: transform 350ms ease-out;
	}

	.primary-navigation[data-visible="true"] {
		transform: translateX(0%);
	}

	.mobile-nav-toggle {
		display: block;
		position: absolute;
		z-index: 9999;
		background-color: transparent;
		background-image: url(../images/icon-menu.png);
		background-repeat: no-repeat;
		width: 2rem;
		border: 0;
		aspect-ratio: 1;
		top: 2rem;
		right: 2rem;
	}

	.mobile-nav-toggle[aria-expanded="true"]{
		background-image: url(../images/icon-x-vpn.png);
	}
	
}

/*-------------------------------------------------------------------------- */




/*------------------- testing ----------------- */

/*-------------------  ----------------- */  