/* High-End Wellness Dietician Theme */
:root {
    --color-primary: #43334C;
    --color-secondary: #F8F4EC;
    --color-accent: #FF8FB7;
    --color-accent-dark: #E83C91;
    --color-text: #43334C;
    --color-white: #FFFFFF;
}

body {
    background-color: var(--color-secondary);
    color: var(--color-text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-primary);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

/* Advanced Masks & Shapes */
.clip-arch-asym {
    clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 90%);
}

.clip-portrait {
    clip-path: inset(10px 10px 10px 10px round 100px 100px 0 0);
}

.texture-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Buttons */
.btn-luxury {
    background: var(--color-primary);
    color: white;
    border-radius: 100px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn-luxury:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Service List - Interactive */
.service-row {
    border-top: 1px solid rgba(67, 51, 76, 0.1);
    transition: all 0.4s ease;
}

.service-row:last-child {
    border-bottom: 1px solid rgba(67, 51, 76, 0.1);
}

.service-row:hover {
    background-color: white;
    padding-left: 2rem;
    padding-right: 2rem;
}

.service-row:hover .service-icon {
    transform: rotate(45deg);
    color: var(--color-accent-dark);
}

/* Reveal Animations */
.reveal-text {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.reveal-text>* {
    transform: translateY(100%);
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-text.active>* {
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal-fade.active {
    opacity: 1;
    transform: translateY(0);
}

/* Form Inputs */
.input-minimal {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(67, 51, 76, 0.2);
    border-radius: 0;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.input-minimal:focus {
    border-bottom-color: var(--color-primary);
    outline: none;
    padding-left: 1rem;
}

/* Mobile Menu */
#mobile-menu {
    background-color: var(--color-secondary);
}