        :root {
            --color-primary: #1a1a1a;
            --color-secondary: #f4f4f4;
            --color-accent: #b8926a;
            --color-text: #444;
            --font-sans: 'Poppins', sans-serif;
            --font-title: 'Inter', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
        }

        body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-secondary);
    line-height: 1.6;
    /* >>>>>> ADD THIS LINE HERE <<<<<< */
    padding-top: 80px; 
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Header --- */
        .header {
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-family: var(--font-title);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-primary);
            text-decoration: none;
            letter-spacing: 1px;
            margin-left: 5mm;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 40px;
        }

        .nav-menu a {
            color: var(--color-text);
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--color-accent);
        }

        /* Mobile Menu */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                text-align: center;
                padding: 20px 0;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                margin: 15px 0;
            }
        }
        
        /* --- Hero Section --- */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

        /* --- Main Content --- */
        .section {
            padding: 80px 0;
        }

        .section-title {
            font-family: var(--font-title);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .section-subtitle {
            text-align: center;
            margin-bottom: 60px;
            color: var(--color-text);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- Projects --- */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .project-card, .video-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-card:hover, .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .project-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .project-info, .video-info {
            padding: 20px;
            text-align: left;
        }
        
        .project-info h3 {
            font-family: var(--font-title);
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--color-primary);
        }
        
        .video-info h3 {
            font-family: var(--font-title);
            font-size: 1.125rem; /* Reduced size for video titles */
            margin-bottom: 10px;
            color: var(--color-primary);
        }
        
        .project-info p, .video-info p {
            font-size: 0.9rem;
            color: var(--color-text);
            text-align: left;
        }

        /* --- Videos --- */
        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* --- Footer & Socials --- */
        .footer {
            background-color: var(--color-primary);
            color: var(--color-secondary);
            text-align: center;
            padding: 50px 0;
        }
        
        .social-links {
            list-style: none;
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

        .social-links li {
            margin: 0 15px;
        }

        .social-links a {
            color: var(--color-secondary);
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--color-accent);
        }

        .footer p {
            font-size: 0.9rem;
        }