        :root {
            --primary: #002147; /* Navy Blue */
            --accent: #C5A059;  /* Gold */
            --text: #333;
            --light: #f4f4f4;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; scroll-behavior: smooth; }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 6%;
            background: white;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: bold; color: var(--primary); }
        .nav-links { list-style: none; display: flex; }
        .nav-links li { margin-left: 2rem; }
        .nav-links a { text-decoration: none; color: var(--primary); font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
        .nav-links a:hover { color: var(--accent); }

/* Hide the hamburger button on desktop by default */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* --- Mobile Breakpoint (768px and below) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Show hamburger on small screens */
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Hide off-screen by default */
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 70%; /* Takes up partial screen width */
        height: 100vh;
        padding-top: 100px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
    }

    .nav-links li {
        margin: 1.5rem 0;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem; /* Make text bigger and easier to tap */
    }

    /* Active state to slide the menu in */
    .nav-links.active {
        right: 0;
    }

    /* Animated Hamburger to 'X' Transition */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--accent);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--accent);
    }
}












        /* Hero Section */
        header {
            height: 100vh;
            background: linear-gradient(rgba(0,33,71,0.8), rgba(0,33,71,0.8)), url('https://images.unsplash.com/photo-1648023200201-8fcede127835?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); /* Placeholder for his photo */
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            padding: 0 20px;
        }
        .hero-content h1 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 1rem; }
        .hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; opacity: 0.9; }
        .btn {
            padding: 1rem 2.5rem;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: 0.3s;
        }
        .btn:hover { background: #b08d4a; transform: translateY(-3px); }

        /* About Section */
        section { padding: 100px 10%; }
        .section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--primary); margin-bottom: 2rem; }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
        .about-text p { margin-bottom: 1.5rem; font-size: 1.1rem; }

        /* Pillars Section */
        .pillars { background: var(--light); text-align: center; }
        .pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }
        .pillar-card { background: white; padding: 40px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
        .pillar-card:hover { transform: translateY(-10px); border-bottom: 5px solid var(--accent); }
        .pillar-card h3 { color: var(--primary); margin-bottom: 1rem; }

        /* Contact Section */
        .contact { text-align: center; }
        .contact-info { margin-top: 2rem; font-size: 1.2rem; }

        /* Gallery Styles */
.gallery-container {
    margin: 50px 0;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for a clean look */
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08); /* Subtle zoom effect */
}

.gallery-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 33, 71, 0.9));
    color: white;
    padding: 20px 15px 10px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .caption {
    opacity: 1;
}

/* Mobile responsive gallery */
@media (max-width: 600px) {
    .project-gallery {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    .gallery-item {
        height: 200px;
    }
}

/* Twitter Feed Container */
.twitter-container {
    max-width: 500px; /* Standard width for a social sidebar */
    margin: 50px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.social-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.feed-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .twitter-container {
        max-width: 100%;
        margin: 20px;
    }

}



        
        footer { background: var(--primary); color: white; padding: 2rem; text-align: center; font-size: 0.9rem; }


        

        @media (max-width: 768px) {
            .about-grid { grid-template-columns: 1fr; }
            .hero-content h1 { font-size: 2.2rem; margin-top: 24%;}
          /*  .nav-links { display: none; } /* Simplified for mobile */
        }