:root {
    /* Color Palette: Blush Pink & Organic Elegance */
    --bg-dark: #FFFBF9;
    --bg-light: #FFF0F2;
    --primary-orchid: #D9A0A0;
    --secondary-magenta: #F2B6C1;
    --accent-gold: #C48B8B;
    --text-main: #3D3333;
    --text-muted: #8C7A7A;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    
    /* Spacing & Transitions */
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* For custom cursor */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-orchid);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(217, 160, 160, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Typography elements */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.section-padding {
    padding: var(--section-padding);
}

/* Buttons */
.btn-primary {
    background: var(--primary-orchid);
    color: #FFFBF9;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(217, 160, 160, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--secondary-magenta);
    z-index: -1;
    transition: opacity 0.4s;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 1px solid var(--primary-orchid);
    color: var(--primary-orchid);
    border-radius: 50px;
    font-weight: 400;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    transition: var(--transition);
    cursor: none;
    background: transparent;
}

.btn-secondary:hover {
    background: var(--primary-orchid);
    color: #FFFBF9;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(255, 251, 249, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(217, 160, 160, 0.1);
    box-shadow: 0 5px 20px rgba(217, 160, 160, 0.05);
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
}
.logo span {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-orchid);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links li a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links li a:not(.btn-primary):hover::after,
.nav-links li a.active:not(.btn-primary)::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: none;
}
.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: all 0.3s;
    background-color: var(--text-main);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: radial-gradient(circle at center, rgba(139, 49, 255, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    z-index: 2;
    padding-top: 5rem;
}

.hero h2 {
    font-size: 3rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: -1rem;
}

.hero h1 {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 80%;
}

.hero-image {
    position: relative;
    height: 80vh;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    width: 90%;
    height: 90%;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(217, 160, 160, 0.15);
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle at center, rgba(242, 182, 193, 0.4) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 15px;
    transform: rotate(-90deg);
    transform-origin: left center;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 50px;
    height: 1px;
    background-color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--accent-gold);
    animation: scroll-line 2s infinite ease-in-out;
}

@keyframes scroll-line {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* About Section */
.about {
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.brush-stroke {
    width: 80%;
    height: 300px;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    margin-top: 2rem;
    box-shadow: 0 20px 40px rgba(217, 160, 160, 0.15);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    background: #FFF;
    padding: 2.5rem 2rem;
    border-radius: 100px;
    border: none;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(217, 160, 160, 0.08);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(217, 160, 160, 0.15);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #FFF;
    padding: 3rem 2rem;
    border-radius: 30px;
    border: none;
    box-shadow: 0 15px 35px rgba(217, 160, 160, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(217, 160, 160, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1rem;
    background-color: rgba(217, 160, 160, 0.1);
    color: var(--primary-orchid);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Portfolio Section */
.portfolio {
    background-color: var(--bg-light);
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 150px 150px 0 0;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 15px 30px rgba(217, 160, 160, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,251,249,0.95), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay h3 {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--primary-orchid);
    margin: 1rem auto 0;
    opacity: 0.5;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-list-item .icon-box {
    width: 45px;
    height: 45px;
    background: #FFF;
    border: none;
    box-shadow: 0 5px 15px rgba(217, 160, 160, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-orchid);
    font-size: 1.1rem;
    border-radius: 50%;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-new label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    width: 100%;
    padding: 14px 18px;
    background: #FFF;
    border: 1px solid rgba(217, 160, 160, 0.2);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(217, 160, 160, 0.05);
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    border-color: var(--primary-orchid);
    box-shadow: 0 8px 25px rgba(217, 160, 160, 0.15);
}

.form-group-new select option {
    color: #000;
    background-color: #fff;
}

.btn-outline {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 1px solid var(--primary-orchid);
    color: var(--primary-orchid);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: none;
    transition: var(--transition);
    margin-top: 1rem;
    border-radius: 50px;
}

.btn-outline:hover {
    background: var(--primary-orchid);
    color: #FFFBF9;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.5;
    cursor: none;
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
}
.footer-logo span {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-orchid);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-main);
    transition: var(--transition);
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}
.fade-in {
    opacity: 0;
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-text.active {
    animation: slideUpFade 0.8s forwards;
}
.fade-in.active {
    animation: fadeIn 1s forwards;
}
.fade-up.active {
    animation: slideUpFade 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes slideUpFade {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }
    .hero p {
        margin: 0 auto 2rem;
    }
    .hero h1 { font-size: 4.5rem; }
    .about-grid, .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        height: 100vh;
        justify-content: center;
        transition: 0.3s;
    }
    .nav-links.active { left: 0; }
    .hero h1 { font-size: 3.5rem; }
    .services-grid, .portfolio-gallery { grid-template-columns: 1fr; }
    .contact-wrapper { padding: 2rem; }
    .footer-content { flex-direction: column; gap: 2rem; }
}

/* Brands Section */
.brands-section {
    padding: 3rem 0;
    border-top: 1px solid rgba(217, 160, 160, 0.2);
    background-color: var(--bg-light);
    text-align: center;
}
.brands-section .section-subtitle {
    margin-bottom: 2rem;
}
.brands-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}
.brand-logo {
    color: var(--text-muted);
    transition: var(--transition);
    cursor: default;
    opacity: 0.6;
}
.brand-logo:hover {
    color: var(--primary-orchid);
    opacity: 1;
}
.brand-mufe { font-family: var(--font-body); font-weight: 600; font-size: 1.2rem; letter-spacing: 1px; }
.brand-dalba { font-family: var(--font-heading); font-style: italic; font-size: 1.6rem; font-weight: 600; }
.brand-dior { font-family: var(--font-heading); font-weight: 600; font-size: 1.6rem; letter-spacing: 3px; text-transform: uppercase; }
.brand-chanel { font-family: var(--font-body); font-weight: 600; font-size: 1.3rem; letter-spacing: 4px; text-transform: uppercase; }
.brand-muaq { font-family: var(--font-body); font-weight: 400; font-size: 1.3rem; letter-spacing: 2px; }
.brand-mac { font-family: var(--font-body); font-weight: 700; font-size: 1.4rem; letter-spacing: 1px; }
.brand-buttonscarves { font-family: var(--font-heading); font-style: italic; font-size: 1.5rem; }
.brand-studiotropik { font-family: var(--font-body); font-weight: 500; font-size: 1.1rem; letter-spacing: 1px; text-transform: uppercase;}
