.header {
	overflow: hidden;
	background-color: #cdcdcd;
	padding: 10px 5px;
	position: fixed; /* Fixes the header at the top */
	top: 0;
	width: 100%;
	z-index: 1000; /* Ensures the header is above other content */
  }

  .heading{
	display: flex;
	position: flex;
  }

nav ul {
	list-style: none;
	display: flex;
	color:rgb(0, 0, 0);
}

nav .homeLi{
	margin-right: auto;
	display: block;
}

nav .Li{
	display: none;
}

.name{
	width: 200px;
	padding-left: 2em;
	height: 50px;
	position: flex;
	display: block;
}


nav a{
	display: flex;
	text-decoration: none;
	color:rgb(0, 0, 0);
	padding: 0 2em;
	display: block;
}

#openMenu{
	display: none;
	width: 50px;
	height: 50px;
	background: none;
	background-image: url(/images/menu.png);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	border: none;
	padding: 1em;
	margin-left: auto;
	cursor: pointer;
	margin-right: 3em;
}

#closeMenu{
	display: none;
	width: 35px;
	height: 35px;
	background: none;
	background-image: url(/images/x.png);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border:none;
	padding: 1em;
	cursor:pointer;
}

/* @media screen and (max-width: 700px){ */
	nav {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100vh;
		width: min(10em, 75%);
		z-index: 100;
		background-image: url("/images/textureWork2.png");
		background-repeat:inherit;
		background-size: cover;
		background-color: white;
		background-position: center;
		border-style: ridge;
		border-color: white;
		transition: right 300ms ease-out;
	}
	nav.show{
		right: 0;
	}

	nav ul {
		width: 100%;
		flex-direction: column;
		gap: 0;
		margin-top: 5vh;
		padding-left: 5%;

	}

	nav a {
		width: 100%;
		padding-left: 1em;
		padding-top: 1.5em;
		padding-right: 1em;
		margin-right: 10rem;
		display: block;
		width: 100px;
		height: 60px;
		background-image: url(/images/panel3.png);
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;
		text-align: center;
		font-weight: bold;
		font-size: 20px;
		transition: transform 0.3s;
	}
	nav a:hover{
		transform: scale(1.05);
	}
	nav .Li {
		display: block;
	}

	#openMenu{
		display: block;
	}
	#closeMenu{
		display: block;
		margin-left: 30%;
		margin-top: -10px;
		width: 45px;
		height: 45px;
		padding-bottom: 2em;
	}

.text{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-size: 50px;
    color: #c7c7c7;
    text-align: center;
}

.cursor {
	position: fixed; /* Fixes cursor to viewport, ignoring page scroll */
	top: 0;
	left: 0;
	width: 100px; /* Adjust to match GIF size */
	height: 100px;
	background-image: url('/images/cursoridle.gif');
	background-size: cover;
	pointer-events: none; /* Ensures it doesn’t interfere with anything */
	transform: translate(-50%, -50%); /* Centers the cursor */
	z-index: 10000;
  }

.section-contact{
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 100px;;

    .container{
        max-width: 1280px;
        margin: 0 auto;
        padding-left: 32px;
        padding-right: 32px;
    
        @media (min-width: 768px) {
            padding-left: 64px;
            padding-right: 64px;
        }

        @media (min-width: 1024px) {
            padding-left: 128px;
            padding-right: 128px;
        }

        h1 {
            color:rgb(255, 255, 255);
            font-size: 36px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 16px;
        }

        p{
            color:rgb(255, 255, 255);
            font-size: 18px;
            line-height: 1.5;
            margin-bottom: 32px;
        }

        form{
            display: grid;
            grid-template-columns: 1fr;
            grid-gap: 16px;
            background-color: #565656;
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);

            @media (min-width: 768px) {
                grid-template-columns: repeat(2, 1fr);
            }

            .form-group{

                &.full{
                    grid-column: 1 / -1;
                }
                label{
                    display: block;
                    margin-bottom: 5px;
                    color:rgb(255, 255, 255);
                }

                .form-element{
                    appearance: none;
                    outline: none;
                    border: none;
                    display: block;
                    width: 100%;
                    border-radius: 8px;
                    padding: 12px 16pxx;
                    background-color:rgb(201, 201, 201);
                    transition: 0.4s;

                    &:focus{
                        box-shadow: 0px 0px 0px 2px #c7c7c7;
                        background-color: rgb(255, 255, 255);
                    }
                }

                textarea{
                    resize: none;
                    min-height: 100px;
                }
            }

            .submit-group{
                grid-column: 1 / -1;
                text-align: right;

                input[type = "submit"]{
                    appearance: none;
                    outline: none;
                    border: none;
                    background: none;

                    padding: 12px 16px;
                    background-color: #858585;
                    border-radius: 8px;
                    color:rgb(255, 255, 255);
                    transition: 0.4s;

                    &:hover{
                        transform: scale(1.1);
                    }
                }
            }
        }
    }
}


  
html, body {
	height: 100%;          /* Allow full viewport height */
    background-color: #111;
	width: 100%;           /* Allow full viewport width */
	margin: 0;             /* Remove default margin */
	overflow: auto;        /* Enable scrolling */
	cursor: none !important; /* Hide default cursor */
  }
  
  *,
  *::before,
  *::after {
	cursor: none !important; /* Force the default cursor to be hidden */
  }