@charset "utf-8";

/* --- 1. RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
	overflow-x: hidden;
}

h1 {
font-family: "Montserrat", sans-serif;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
}

a { text-decoration: none; }
ul { list-style: none; }


/* --- 3. TRANSPARENT NAVIGATION --- */
.navbar {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
}

.logo-img {
    height: 100px; 
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #F4A5A0;
	text-decoration: underline
}

.btn-nav {
    background: white;
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: transform 0.2s;
}

.btn-nav:hover {
    transform: scale(1.05);
	color: #F4a5a0
}

.treatment-background-wrapper {
    background-image: url("images/aes-background.png"); 
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
   	width: 100%;
    margin-top: 0; 
    position: relative;
    z-index: 0;
}

/* --- HERO STYLE ADJUSTMENT --- */
.hero {
    background: transparent;
	height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1; 
}

/* --- 4. HERO SECTION --- */
.hero {
    height: 120vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url("images/aes-hero.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-left: 80px;
    position: relative;
}

.hero-content {
    max-width: 700px;
    color: white;
    margin-top: 60px; 
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    line-height: 1.2;
    margin-bottom: 230px;
}


/* --- 5. FIXED FLOATING BUTTONS --- */
.floating-buttons {
    position: fixed; 
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: translateY(-3px);
}

.whatsapp {
    background: transparent; 
    padding: 0; 
    overflow: hidden; 
}

.whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

html {
    scroll-behavior: smooth;
}


.hero-filter-container {
    position: absolute;
    bottom: 50px; 
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 20; 
}

/* The White Horizontal Line */
.filter-line {
    width: 90%;
    max-width: 1500px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.6); 
    margin: 0 auto 50px; 
}

/* The Button Group Wrapper */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
}

/* The Pink Pill Buttons */
.filter-btn {
    display: inline-block;
    background-color: #F4A5A0; 
    color: white; 
    border: 3px solid #F4A5A0;
    padding: 12px 50px;
    border-radius: 50px; /* Pill shape */
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Hover Effect */
.filter-btn:hover {
    background-color: white;
    color: #F4A5A0;
    transform: translateY(-2px);
}


.section-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 80px; 
    padding: 0 50px;
    gap: 70px; 
}

/* LEFT LAYOUT (Skin, Body) */
.section-header-row.left-layout {
    flex-direction: row;
    text-align: left;
}

/* RIGHT LAYOUT (Face, Hair) */
.section-header-row.right-layout {
    flex-direction: row-reverse; 
    text-align: left;
}

/* 1. The Big Topic Text */
.topic-box {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
}


#hair-n-anti-aging .topic-box {
	flex: 0 0 350;
}

.topic-title {
    font-family: "Montserrat", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white; 
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 0;
}

/* 2. The Content Box (Title + Description) */
.content-box {
    flex: 2; 
	padding-top: 160px;
}

.right-layout .content-box {
    display: flex;
    flex-direction: column;
    align-items: flex;
}

.section-subtitle {
    font-family: "Montserrat", sans-serif;
    color: #522662; 
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-desc {
    font-family: "DM Sans", sans-serif;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px; 
}


.treatments-section {
    background-color: #A394B4; 
    padding: 80px 0;
    overflow: hidden; 
}

/* 2. Container for Title & Carousel */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.section-title.white {
    color: white;
}

.carousel-wrapper {
    position: relative;
    padding: 0 50px; 
    max-width: 1150px;
    margin: 0 auto;
}


.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;      
    scroll-behavior: smooth;
    padding: 20px 10px 80px; 
    scrollbar-width: none;
    -ms-overflow-style: none;  
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

/* 3. Treatment Card Styling */
.treatment-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    min-width: 320px;
    width: 350px;
    box-shadow: 0 15px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

/* Card Image Area */
.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0; 
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Content Area */
.card-content {
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.card-content h4 {
    color: #522662; 
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-family: "Montserrat", sans-serif;
}


.card-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1; 
}

.card-content ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    font-family: "DM Sans", sans-serif;
}


.card-content ul li::before {
    content: "•";
    color: #F4A5A0; 
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Small Card Button */
.btn-card {
    background-color: #F4A5A0;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
    width: fit-content; /* Only takes needed width */
    font-family: "Montserrat", sans-serif;
    border: 2px solid #F4A5A0; /* Prepared for hover */
}

.btn-card:hover {
    background-color: white;
    color: #F4A5A0;
    border: 2px solid #F4A5A0;
    transform: translateY(-2px);
}

/* 4. Navigation Buttons (Arrows) */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid #ddd;
    color: #522662;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 10;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 3px;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.carousel-btn:hover {
    background-color: #522662;
    color: white;
    border-color: #522662;
}

.cta-banner {
    background-color: #E6E0E9; /* Light purple from image */
    padding: 40px 0;
}

.cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h4 {
    color: #522662;
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.4;
}

.btn-white-cta {
    background-color: white;
    color: #583a5e; /* Dark Purple Text */
    padding: 12px 40px;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.btn-white-cta:hover {
    transform: scale(1.05);
	background-color: #522662;
	color: white;
}


.site-footer {
    background-color: #a394b4; 
    color: white;
    padding: 70px 0 50px; 
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 40px;
}

/* Headings */
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- COL 1: Brand --- */
.footer-logo {
    height: 100px; /* Adjust based on your logo shape */
    margin-bottom: 25px;
    display: block;
}

.brand-desc {
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.8rem;
    max-width: 250px;
}

.copyright {
    opacity: 0.5;
    font-size: 0.75rem;
    margin-top: 20px;
}

/* --- COL 2: Subscribe & Socials --- */
.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: white;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    outline: none;
    margin-bottom: 40px; 
}

/* Social Icons (Using Images) */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    border: 1px solid rgba(255,255,255,0.4);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
}

.social-icons a img {
    /* The Icon Size */
    width: 16px;  
    height: 16px;
    object-fit: contain;
    display: block;
}

.social-icons a:hover {
    background-color: white;
    border-color: white;
    transform: translateY(-3px);
}

/* --- COL 3 & 4: Links --- */
.links-col ul li {
    margin-bottom: 12px;
    list-style: none;
}

.links-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s, padding-left 0.2s;
    font-size: 0.85rem;
    display: inline-block;
}

.links-col ul li a:hover {
    color: white;
    padding-left: 5px; 
}

/* --- COL 5: Badges --- */
.badges-col {
    display: flex;
    flex-direction: column;
}

.payment-icons {
    display: flex;
    gap: 5px; 
    align-items: center; 
}

.payment-icons img {
    margin: 0; 
    display: block;  
	width: auto;
	height: 50px; 
    margin-bottom: 10px;
}

.trust-badge img {
    height: 100px; 
    margin-bottom: 10px;
    display: block;
}

/* RESPONSIVE ADJUSTMENTS */

@media (max-width: 900px) {
    /* Category Headers: Stack the big background text and description */
    .section-header-row, 
    .section-header-row.left-layout, 
    .section-header-row.right-layout {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        gap: 30px;
        margin-bottom: 50px;
    }

    .topic-box {
        flex: 0 0 auto;
    }

    .topic-title {
        font-size: 2.5rem; 
    }

    .content-box {
        padding-top: 0; 
    }

    .section-desc {
        max-width: 100%;
        margin: 0 auto;
    }

    .right-layout .content-box {
        align-items: center;
    }
}

/* 2. SMARTPHONES (max-width: 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        position: relative;
        background: #a394b4; /* Solid background for visibility */
        gap: 15px;
    }

    .logo-img {
        height: 60px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-nav {
        display: flex; 
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
        height: auto;
		min-height: 90vh; 
        align-items: center;
        text-align: center;
    }

	.hero-content {
		margin-top: 0;
		max-width: 100%;
	}
	
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        margin-bottom: 40px; 
    }

    /* Hero Filter Pill Buttons */
    .filter-line {
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 10px 30px;
        font-size: 0.85rem;
    }

    /* Carousels: Optimize for swiping */
    .carousel-wrapper {
        padding: 0 10px;
    }

    .carousel-btn {
        display: none; 
    }

    .carousel-track {
        padding-bottom: 40px;
        gap: 20px;
    }

    .treatment-card {
        min-width: 280px; 
        width: 280px;
    }

    /* CTA Banner: Vertical stack */
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-container {
		display: flex;
		flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .newsletter-form input {
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }
	}