        body {
            box-sizing: border-box;
        }
        
        .font-playfair { font-family: 'Playfair Display', serif; }
        .font-inter { font-family: 'Inter', sans-serif; }
        
        .gradient-bg {
            background: linear-gradient(135deg, #ffeef8 0%, #f0e6ff 50%, #e6f3ff 100%);
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(255,238,248,0.9) 0%, rgba(240,230,255,0.9) 50%, rgba(230,243,255,0.9) 100%);
        }
        
        .card-shadow {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .animate-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .animate-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .animate-slide-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease-out;
        }
        
        .animate-slide-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .animate-slide-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease-out;
        }
        
        .animate-slide-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .typewriter {
            overflow: hidden;
            border-right: 3px solid #ff6b9d;
            white-space: nowrap;
            animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        
        .typewriter-subtitle {
            overflow: hidden;
            white-space: nowrap;
            animation: typing 2.5s steps(30, end) 3.2s both;
        }
        
        .typewriter-description {
            overflow: hidden;
            animation: fadeInUp 1s ease-out 5.8s both;
        }
        
        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #ff6b9d }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .text-flow {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .text-flow.delay-1 {
            animation-delay: 6.5s;
        }
        
        .text-flow.delay-2 {
            animation-delay: 7s;
        }
        
        .text-flow.delay-3 {
            animation-delay: 7.5s;
        }
        
        .text-flow.delay-4 {
            animation-delay: 8s;
        }
        
        .hero-image-slider {
            position: relative;
            overflow: hidden;
            height: 24rem;
            perspective: 1000px;
        }
        
        @media (min-width: 1024px) {
            .hero-image-slider {
                height: 31.25rem;
            }
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            transform-style: preserve-3d;
            transform: rotateY(-15deg) rotateX(5deg);
            border-radius: 0.75rem;
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.3),
                0 0 0 2px rgba(139, 69, 19, 0.8),
                inset 0 0 0 1px rgba(255,255,255,0.2);
            background-size: cover;
            background-position: center;
            border: 3px solid #8B4513;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                90deg,
                rgba(139, 69, 19, 0.1) 0%,
                transparent 5%,
                transparent 95%,
                rgba(139, 69, 19, 0.2) 100%
            );
            z-index: 1;
        }
        
        .hero-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
            z-index: 2;
        }
        
        .slide-content {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            color: white;
            z-index: 10;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        
        .slide-indicators {
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            display: flex;
            gap: 0.5rem;
            z-index: 10;
        }
        
        .slide-indicator {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .slide-indicator.active {
            background: white;
        }
        
        .portfolio-item {
            transition: transform 0.3s ease;
        }
        
        .portfolio-item:hover {
            transform: scale(1.05);
        }
        
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
        }
        
        .modal-content {
            background-color: white;
            margin: 5% auto;
            padding: 20px;
            border-radius: 15px;
            width: 90%;
            max-width: 600px;
            max-height: 80%;
            overflow-y: auto;
        }
        
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .close:hover {
            color: #000;
        }
        
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        
        .nav-link {
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: #ff6b9d;
        }
        
        .nav-link.active {
            color: #ff6b9d;
            font-weight: 600;
        }
        
        .auth-hidden {
            display: none;
        }
        
        .auth-visible {
            display: block;
        }
        
        @media (max-width: 768px) {
            .mobile-menu {
                display: none;
            }
            
            .mobile-menu.active {
                display: block;
            }
        }
    