:root {
    /* Color System - Lavender & Rose Pink Blend */
    --lavender: #B497D6;
    --soft-purple: #7B5BA1;
    --deep-plum: #5A3D7A;
    --blush-rose: #F8BBD0;  /* New rose pink */
    --dusty-rose: #E8B4B8;  /* Muted rose */
    --rose-gold: #E8B4B8;   /* Rose gold accent */
    --rose-mist: #FCE4EC;   /* Light rose tint */
    
    --off-white: #F9F7F5;
    --light-gray: #EFEDEA;
    --warm-beige: #E8E2DA;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-lavender: #E6DCF5;
    
    /* Gradient Combinations */
    --gradient-purple-rose: linear-gradient(135deg, var(--lavender) 0%, var(--blush-rose) 100%);
    --gradient-rose-mist: linear-gradient(135deg, var(--rose-mist) 0%, var(--light-lavender) 100%);
    --gradient-deep-blush: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-artistic: 'Dancing Script', cursive;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 1.5rem;
    --content-width: 1200px;
    
    /* Transitions */
    --transition-slow: all 0.5s ease;
    --transition-medium: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    
    /* Shadows with rose tint */
    --shadow-soft: 0 5px 15px rgba(123, 91, 161, 0.05);
    --shadow-medium: 0 10px 25px rgba(123, 91, 161, 0.08);
    --shadow-large: 0 20px 40px rgba(123, 91, 161, 0.1);
    --shadow-purple: 0 10px 30px rgba(180, 151, 214, 0.15);
    --shadow-rose: 0 10px 30px rgba(248, 187, 208, 0.15);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

a, button, input, textarea, select {
    -webkit-tap-highlight-color: rgba(180, 151, 214, 0.2);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="url"],
textarea,
select {
    min-height: 44px;
    font-size: 16px;
}

/* Improve scrolling on mobile */
@media (hover: none) and (pointer: coarse) {
    * {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Larger tap targets on touch devices */
    a:not(.btn-primary):not(.btn-secondary) {
        padding: 0.5rem;
        margin: -0.5rem;
    }
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--deep-plum);
}

.artistic-font {
    font-family: var(--font-artistic);
}

.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-purple-rose);
}

.btn-primary {
    display: inline-block;
    background: var(--gradient-purple-rose);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-purple);
    border: none;
    cursor: pointer;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(180, 151, 214, 0.3), 0 0 10px rgba(248, 187, 208, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--soft-purple);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-medium);
    border: 2px solid var(--blush-rose);
    color: var(--blush-rose);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-secondary:hover {
    background-color: rgba(248, 187, 208, 0.1);
    transform: translateY(-3px);
    border-color: var(--lavender);
    color: var(--lavender);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

/* Global Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-medium);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(249, 247, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    font-family: var(--font-artistic);
    font-size: 2rem;
    font-weight: 900;
    color: #8B5FBF;
    text-decoration: none;
    text-shadow: 
        0 0 10px rgba(180, 151, 214, 0.8),
        0 0 20px rgba(248, 187, 208, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.2),
        1px 1px 0px rgba(255, 255, 255, 0.3),
        -1px -1px 0px rgba(90, 61, 122, 0.3);
    filter: brightness(1.3) contrast(1.2);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-medium);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple-rose);
    transition: var(--transition-medium);
}

.nav-link:hover, .nav-link.active {
    color: var(--soft-purple);
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--deep-plum);
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-btn:active {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-rose-mist);
    position: relative;
    overflow: hidden;
    padding: var(--section-padding);
    padding-top: 6rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--lavender) 0%, var(--blush-rose) 70%, transparent 100%);
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: var(--gradient-purple-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gradient-purple-rose);
    margin: 0.5rem auto;
    animation: scrollLine 2s infinite;
}

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

.craft-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    text-align: center;
    border: 1px solid rgba(248, 187, 208, 0.1);
}

.craft-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-purple), var(--shadow-rose);
    border-color: rgba(180, 151, 214, 0.2);
}

.craft-icon-container {
    width: 70px;
    height: 70px;
    background: var(--gradient-purple-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.craft-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--deep-plum);
}

.craft-link {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--soft-purple);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-medium);
}

.craft-link:hover {
    color: var(--blush-rose);
    transform: translateX(5px);
}

/* Philosophy Section */
.philosophy {
    background: linear-gradient(135deg, rgba(180, 151, 214, 0.1) 0%, rgba(248, 187, 208, 0.05) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.philosophy-quote {
    font-size: 2.2rem;
    font-family: var(--font-artistic);
    background: var(--gradient-purple-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.4;
    position: relative;
    padding: 0 1rem;
}

.philosophy-quote:before, .philosophy-quote:after {
    content: '"';
    font-size: 3rem;
    background: var(--gradient-purple-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    position: absolute;
}

.philosophy-quote:before {
    top: -1rem;
    left: 0;
}

.philosophy-quote:after {
    bottom: -2rem;
    right: 0;
}

.philosophy-text {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.philosophy-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.point {
    padding: 1.5rem;
}

.point i {
    font-size: 2rem;
    background: var(--gradient-purple-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.point h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--deep-plum);
}

/* Projects Preview */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.view-all {
    color: var(--soft-purple);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-medium);
}

.view-all:hover {
    color: var(--blush-rose);
    transform: translateX(5px);
}

.projects-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    border: 1px solid rgba(248, 187, 208, 0.1);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-purple), var(--shadow-rose);
    border-color: rgba(180, 151, 214, 0.2);
}

.project-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-purple-rose);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: var(--deep-plum);
}

.project-date {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-deep-blush);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-section .btn-secondary {
    background: white;
    color: var(--soft-purple);
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-plum) 0%, var(--dusty-rose) 100%);
    color: white;
    padding: 4rem 1.5rem 2rem;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-artistic);
    font-size: 2rem;
    color: white;
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-tagline {
    opacity: 0.8;
    margin-top: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-medium);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-medium);
}

.social-icon:hover {
    background: var(--gradient-purple-rose);
    transform: translateY(-3px);
}

.contact-email {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.case-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(90, 61, 122, 0.9), transparent);
	color: white;
	padding: 1rem 0.5rem 0.5rem;
	text-align: center;
	font-weight: 600;
	opacity: 0;
	transition: var(--transition-medium);
	transform: translateY(10px);
}

.case-item:hover .case-label {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background-color: white;
        width: 250px;
        height: calc(100vh - 80px);
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        transition: var(--transition-medium);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
    }
    
    .nav-links .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .philosophy-points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Cards and grids */
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    /* Sections padding */
    section {
        padding: 3rem 1rem;
    }
    
    .hero {
        padding: 5rem 1rem 3rem;
        min-height: 70vh;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    section {
        padding: 2rem 0.75rem;
    }
    
    .hero {
        padding: 4rem 0.75rem 2rem;
    }
}