        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-color: #8B4513;
            /* SaddleBrown - Classic wood tone */
            --secondary-color: #2F4F4F;
            /* DarkSlateGray - Professional contrast */
            --bg-light: #F4F4F4;
            --text-dark: #333;
            --white: #fff;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --padding-section: 4rem 1rem;
        }

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

        body {
            font-family: var(--font-main);
            color: var(--text-dark);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* --- NAVIGATION --- */
        header {
            background: var(--white);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-size: 2.0rem;
            font-weight: bold;
            color: var(--primary-color);
        }

        .logo img {
            display: block;
            height: auto;
        }


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

        .nav-links a {
            font-weight: 500;
            transition: color 0.3s;
        }

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

        .btn-quote {
            background: var(--primary-color);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        .btn-quote:hover {
            background: #6b340e;
            color: var(--white);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 90vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1622372738946-a238b6993a44?q=80&w=1932&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 60px;
            /* Offset fixed header */
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }

        .btn-main {
            background: var(--primary-color);
            color: var(--white);
            padding: 1rem 2rem;
            font-size: 1.2rem;
            border-radius: 5px;
            transition: transform 0.2s;
            display: inline-block;
        }

        .btn-main:hover {
            transform: scale(1.05);
        }

        /* --- SECTIONS GENERAL --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--padding-section);
        }

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

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .section-title span {
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            margin: 0 auto;
        }

        /* --- SERVICES GRID --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s;
        }

        .service-card:hover {
            /* To add a dynamic hover effect when there is something to put behind the text 
            transform: translateY(-5px);
            set to none for the time being*/
            transform: none;
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        /* --- PORTFOLIO --- */
        #portfolio {
            background: var(--bg-light);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }

        .portfolio-item {
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            /* Changes cursor to pointer on hover to show it's clickable */
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .overlay {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            /* Initially hidden */
            transition: .5s ease;
            background-color: rgba(47, 79, 79, 0.85);
            /* Uses your secondary-color */
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            /* Prevents overlay from blocking image hover */
        }

        /* If I want to enable overlay text on hover, uncomment this section
        .portfolio-item:hover .overlay {
            opacity: 1;
        }*/

        /* THIS replaces the hover trigger. The text only shows when 'active' is added via JS */
        .portfolio-item.active .overlay {
            opacity: 1;
        }

        .text {
            color: white;
            font-size: 1.1rem;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 80%;
        }

        /* --- CONTACT FORM --- */
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info h3 {
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        input,
        textarea {
            padding: 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;

        }

        textarea {
            resize: vertical; /* Allows vertical stretching only */
            min-height: 120px; /* This will now ONLY affect the message box */
        }

        button[type="submit"] {
            background: var(--secondary-color);
            color: var(--white);
            padding: 1rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
        }

        /* --- FOOTER --- */
        footer {
            background: var(--secondary-color);
            color: var(--white);
            text-align: center;
            padding: 2rem;
            margin-top: 2rem;
        }

        /* --- MEDIA QUERIES --- */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 1rem;
                display: none;
                /* Hidden by default on mobile */
                box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

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

            /* Resize the logo image for mobile */
            .logo img {
                width: 70px !important;
                /* Adjust this number until it looks right */
            }

            /* Resize the "Fine Grain Carpentry Rugby" text for mobile */
            .logo span {
                font-size: 1.2rem;
                /* Reduces size from the default 2.0rem */
                line-height: 1.2;
            }

            .logo {
                gap: 8px;
                /* Slightly tighter gap between logo and text */
            }
        }