@font-face {
    font-family: "browserFont";
    src: url("../fonts/text.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

body{
    background: black;
    color: white;
    font-family: browserFont;
    margin: 0;
    padding: 0;
}

/* HEADER */

header {
    text-align: center; /* Centers text in the header */
    width: 100%; /* Ensures the header spans the full width */
    height: 100px; /* Sets the height of the header */
    background-color: black; /* Sets the background color */
    position: fixed; /* Keeps the header at the top while scrolling */
    top: 20px;
    left: 0;
    z-index: 100;
}

.navigation {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* adds space between links */
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-weight: bold;
}

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

.navigation li a:hover{
    color: #cdff8c;
}

.linkedin {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url("../Images/General/LinkedinLogo.png");
    background-size: contain;
    vertical-align: middle;
}


.linkedin:hover {
    background-image: url("../Images/General/LinkedinLogoSelected.png");
}

.navigation li {
    display: inline-block;
    flex-wrap: wrap;
    margin: 0 15px; /* Space between text */
}

/* FEATURES */

.container {
    width: 80%;
    max-width: 1000px;
    margin: 140px auto 100px auto; /* top margin added for fixed header */
    text-align: center; /* center the text like h1/p */
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* ✅ center the sections horizontally */
    gap: 20px;
}

.section-left{
    flex-basis: 60%;
    padding: 40px 60px;
    background: #303030;
}

.section-right{
    flex-basis: 40%;
    padding: 40px;
    background: #151515;
}

h1{
    margin-bottom: 10px;
}

.container p{
    margin-bottom: 40px;
}

p{
    font-size: 1.2em;
}

.input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.input-row .input-group{
    flex-basis: 45%;
}

input{
    width: 100%;
}

textarea{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

label{
    margin-bottom: 6px;
    display: block;
}

button{
    width: 100px;
    border: none;
    outline: none;
    height: 35px;
    border-radius: 30px;
    margin-top: 20px;
    box-shadow: 0px 5px 15px 0px rgba(20, 20, 20, 0.2);
}

tr td:first-child{
    padding-right: 20px;
}

tr td{
    padding-top: 20px;
}

/* FOOTER 642px*/

footer{
    padding: 70px;
    text-align: center;
    font-family: sans-serif;
}

/* RESPONSIVE RULES */
@media screen and (max-width: 722px){
    header{
        height: 200px;
    }
}   