        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Source+Serif+Pro:wght@300;400;600&display=swap');
        
        :root {
            --paper-cream: #faf8f3;
            --paper-off-white: #f5f2ed;
            --text-dark: #2c2c2c;
            --text-medium: #4a4a4a;
            --text-light: #666;
            --border-color: #d4d0c8;
        }
        
        body {
            font-family: 'Source Serif Pro', serif;
            background: var(--paper-cream);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Paper texture overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(120, 119, 116, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(120, 119, 116, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 119, 116, 0.1) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }
        
        .main-container {
            position: relative;
            z-index: 2;
            background: var(--paper-off-white);
            box-shadow: 0 0 30px rgba(0,0,0,0.1);
            min-height: 100vh;
        }
        
        /* Navigation */
        .navbar {
            background: var(--paper-off-white) !important;
            border-bottom: 1px solid var(--border-color);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--text-dark) !important;
            font-weight: 400;
        }
        
        .nav-link {
            color: var(--text-medium) !important;
            font-weight: 400;
            font-size: 0.95rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--text-dark) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 50%;
            background-color: var(--text-dark);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
            left: 0;
        }
        
        /* Content Sections */
        .section {
            padding: 10rem 0;
            display: none;
        }
        
        .section.active {
            display: block;
            animation: pageTurn 0.6s ease-in-out;
        }
        
        @keyframes pageTurn {
            0% { opacity: 0; transform: translateX(20px); }
            100% { opacity: 1; transform: translateX(0); }
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--text-dark);
        }
        .section#home {
            padding-top: 0;
        }
        
        /* Home Section */
        .hero-layout {
            display: flex;
            align-items: center;
            min-height: 50vh;
            gap: 4rem;
			/*border: 10px white solid;*/
			box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            padding: 0 10%;
            background: linear-gradient(45deg, #f53fdfb3, #ffc41d);
        }
        
        .hero-content {
            flex: 1;
            max-width: 600px;
			padding-left: 50px;
        }
        
        .hero-greeting {
            font-family: 'Playfair Display', serif;
            font-size: 8rem;
            font-weight: 700;
            color: #8a8a8a;
            line-height: 0.8;
            margin-bottom: 2rem;
            letter-spacing: -0.02em;
        }
        
        .hero-intro {
            margin-left: 1rem;
        }
        
        .hero-name {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: #ccc;
            margin-bottom: 1.5rem;
            letter-spacing: 0.02em;
        }
        
        .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #999;
            margin-bottom: 0;
            max-width: 500px;
        }
        
        .hero-image-container {
            flex: 0 0 auto;
        }
        
        .hero-portrait {
            height: 650px;
            object-fit: cover;
            filter: grayscale(100%) contrast(1.1);
            transition: filter 0.4s ease;
        }
        
        .hero-portrait:hover {
            filter: grayscale(0%) contrast(1);
        }
        
        .banner {
            padding: 0;
        }
        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 8px;
            margin-top: 2rem;
        }
        
        .portfolio-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .portfolio-item:hover {
            transform: scale(1.02);
            z-index: 10;
        }
        
        .portfolio-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: filter 0.4s ease;
            filter: grayscale(100%) contrast(1.1);
        }
        
        .portfolio-item:hover .portfolio-image {
            filter: grayscale(0%) contrast(1);
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        
        .portfolio-title {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
        }
        
        .portfolio-description {
            font-size: 0.8rem;
            opacity: 0.9;
        }
        
        /* About Section */
        .about-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-medium);
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
        }
        
        /* Contact Section */
        .contact-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }
        
        .contact-info {
            margin: 2rem 0;
        }
        
        .contact-item {
            margin: 1rem 0;
            font-size: 1.1rem;
        }
        
        .contact-item a {
            color: var(--text-medium);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-item a:hover {
            color: var(--text-dark);
        }
        
        /* Lightbox */
        .lightbox {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1050;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }
        
        .lightbox-image {
            width: 100%;
            height: auto;
            max-height: 90vh;
            object-fit: contain;
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            transition: opacity 0.3s ease;
        }
        
        .lightbox-close:hover {
            opacity: 0.7;
        }
        
        /* Footer */
        .footer {
            text-align: center;
            padding: 3rem 0;
            border-top: 1px solid var(--border-color);
            color: var(--text-light);
            font-size: 0.9rem;
            background: var(--paper-cream);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-layout {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
                min-height: auto;
            }
            
            .hero-greeting {
                font-size: 5rem;
            }
            
            .hero-name {
                font-size: 2rem;
            }
            
            .hero-portrait {
                width: 280px;
                height: 360px;
            }
            
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 2px;
            }
            
            .section {
                padding: 2rem 0;
            }
        }
        
        @media (max-width: 576px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }