:root {
    --colorGlobal: #AC6437;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.index-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}



.navbar.scrolled {
  background-color: var(--colorGlobal);
  transition: background-color 0.3s;
}


/* General Styles */
header {
    background-color: var(--colorGlobal);
    color: #fff;
    padding: 20px;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: var(--colorGlobal);
    background-color: #f4f4f4;
}

footer {
    background-color: var(--colorGlobal);
    color: #fff;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Navbar Styles */
#navbar {
    background-color: var(--colorGlobal);
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 10px;
}

#navbar ul {
    display: flex;
    justify-content: center;
    padding: 0;
}

#navbar ul li {
    display: inline;
    margin: 0 15px;
}

#navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Section Styles */
section {
    padding: 20px;
    margin: 20px 0;
}

/* Home Section */
#home {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* About Section */
#about, #projects, #contact {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Project Styles */
.project {
    margin-bottom: 20px;
}

/* Contact Form Styles */
#contact-form {
    display: flex;
    flex-direction: column;
}

#contact-form input, #contact-form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#contact-form button {
    cursor: pointer;
    background-color: var(--colorGlobal);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background-color: #555;
}

.responsive {
  width: 100%;
  height: auto;
}


.navbar {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   z-index: 5;
   background-color: red;
   color: white;
   text-align: center;
}