 :root {
            --rustic-red: #8B4513;
            --burgundy: #800020;
            --deep-blush: #B85450;
            --cardinal: #C41E3A;
            --light-bg: #FDF8F5;
            --dark-text: #2C1810;
            --medium-text: #5D4037;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            background-color: var(--light-bg);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        nav {
            background: linear-gradient(135deg, var(--burgundy), var(--cardinal));
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
        }

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

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--light-bg);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--rustic-red), var(--deep-blush));
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .cta-button {
            display: inline-block;
            background: var(--cardinal);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .cta-button:hover {
            background: var(--burgundy);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--burgundy);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--medium-text);
            max-width: 600px;
            margin: 0 auto;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text {
            font-size: 1.1rem;
            color: var(--medium-text);
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .skill-item {
            background: var(--light-bg);
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--cardinal);
            transition: transform 0.3s ease;
        }

        .skill-item:hover {
            transform: translateX(5px);
        }

        .skill-item h4 {
            color: var(--burgundy);
            margin-bottom: 0.5rem;
        }

        /* Projects Section */
        .projects {
            padding: 80px 0;
            background: var(--light-bg);
        }

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

        .project-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid var(--deep-blush);
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .project-card h3 {
            color: var(--burgundy);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .project-card p {
            color: var(--medium-text);
            margin-bottom: 1.5rem;
        }

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tech-tag {
            background: var(--cardinal);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.8rem;
        }

        /* Education Section */
        .education {
            padding: 80px 0;
            background: white;
        }

        .education-item {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            border-left: 5px solid var(--rustic-red);
        }

        .education-item h3 {
            color: var(--burgundy);
            margin-bottom: 0.5rem;
        }

        .education-item .degree {
            color: var(--cardinal);
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .education-item .year {
            color: var(--medium-text);
            font-style: italic;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--burgundy), var(--cardinal));
            color: white;
            text-align: center;
        }

        .contact h2 {
            color: white;
            margin-bottom: 2rem;
        }

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

        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
        }

        .contact-item h4 {
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .contact-item a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .contact-item a:hover {
            opacity: 0.8;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }
        }

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

        /* Scroll padding for fixed nav */
        section {
            scroll-margin-top: 80px;
        }