:root {
            --primary-bg: #f5e6d3;
            --secondary-bg: #ffffff;
            --accent-yellow: #f4d03f;
            --text-dark: #1a1a1a;
            --text-light: #666666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
        }
        
        /* Navigation */
        .navbar {
            padding: 1.5rem 0;
            background: var(--primary-bg);
        }
        
        .navbar-brand {
            font-weight: 600;
            color: var(--text-dark) !important;
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin-left: 2rem;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--text-dark) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-yellow);
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .work-hero {
            background: var(--primary-bg);
            padding: 8rem 0 4rem;
            text-align: center;
        }
        
        .section-label {
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 3px;
            color: var(--text-light);
            margin-bottom: 1rem;
            font-weight: 500;
        }
        
        .work-hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
        }
        
        .work-hero p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }
        
        .visit-link {
            color: var(--text-dark);
            font-weight: 600;
            text-decoration: underline;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .visit-link:hover {
            color: var(--text-dark);
        }
        
        /* Projects Grid Section */
        .projects-section {
            padding: 6rem 0;
            background: var(--secondary-bg);
        }
        
        .project-card {
            background: var(--secondary-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 2px solid transparent;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        
        .project-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: var(--accent-yellow);
        }
        
        .project-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-card:hover .project-image img {
            transform: scale(1.1);
        }
        
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(244, 208, 63, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        
        .overlay-text {
            color: var(--text-dark);
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .project-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .project-category {
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 2px;
            color: var(--text-light);
            margin-bottom: 1rem;
            font-weight: 500;
        }
        
        .project-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .project-content p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }
        
        .project-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .tag {
            padding: 6px 15px;
            border: 1.5px solid var(--text-dark);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-dark);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 6rem 0;
            background: var(--primary-bg);
        }
        
        .contact-title {
            font-size: 3.5rem;
            margin-bottom: 2rem;
        }
        
        .contact-title .highlight {
            background: var(--accent-yellow);
            padding: 0 15px;
        }
        
        .contact-text {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        
        .email-link {
            color: var(--text-dark);
            font-weight: 600;
            text-decoration: underline;
            font-size: 1.1rem;
        }
        
        /* Footer */
        .footer {
            padding: 3rem 0;
            background: var(--secondary-bg);
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .work-hero h1 {
                font-size: 2.8rem;
            }
            
            .contact-title {
                font-size: 2.5rem;
            }
            
            .project-image {
                height: 250px;
            }
            
            .nav-link {
                margin-left: 0;
                margin-bottom: 1rem;
            }
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.8s ease-out;
        }
