body{
    margin : 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--color-white);
}
html{
  scroll-behavior : smooth;
}
/* variables */

:root {
  --color-brown: #8A5737;
  --color-beige: #FEEDDD;
  --color-black: #141414;
  --color-white: #f5f5f5;
}

/* dark/light mode */

body.dark {
  --color-brown: #FEEDDD;
  --color-beige: #8A5737;
  --color-black: #f5f5f5;
  --color-white: #141414;
}

.theme-container {
  z-index: 9000000000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  animation: fadein 1.5s ease;
}

#toggle-btn {
  padding: 1rem;
  border-radius: 50%;
  border: none;
  color: var(--color-black);
}

#toggle-btn:hover {
  cursor:pointer;
}

#theme-icon {
  z-index: 80000000;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #000000 #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 10px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 10px;
    border: 3px solid #ffffff;
  }
  header{
      height: 100vh;
      background-image: url(img/bgnew.jpg);
        background-repeat: no-repeat;
        background-size: cover;
  }
nav {
  text-transform: uppercase;
  z-index: 100000;
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  gap: 5rem;
  padding: 1.5rem;
}
.logo img {
  margin-top: 1.5rem;
  width: 12rem;
}
.navbar {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  
}
li {
  list-style: none;
}
li a {
  text-decoration: none;
  margin-right: 1.5rem;
  color: var(--color-black);
  font-size: 1.3rem;
}

.title2{
  margin: 0;
  padding-top: 6rem;
  justify-content: center;
  display: flex;
  font-size: 4rem;
  color: var(--color-black);
}
.subtitle{
  font-size: 2rem;
  justify-content: center;
  display: flex;
}
.DisplaySec{
  height: 100vh;
}
.displayItem{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 2rem;
}
.Displaybtn{
  display: flex;
  padding-top: 5rem; 
justify-content: center;
gap: 10rem;
}
.Btn{
  font-size: 1.6rem;
  width: 12rem;
  height: 3rem;
  border-radius: 1rem;
  border: none;
  color:var(--color-white);
  background-color: var(--color-brown);  
}
a{
    color:var(--color-black);
    text-decoration: none;
}
.Prez{
  height: 100vh;
}
.section {
    display: flex;
    flex-direction:row;  
    align-items: center;
    height: 100vh;
    width: 70%;
    margin: auto;
    margin-bottom: 2rem;

}

.section h2 {
    text-align: center;
    color: var(--color-black);
    font-size: 3rem;
}

.section-text {
    color: var(--color-black);
    margin: 3rem;
    text-align: center;
    font-size: 1.2rem;
    width: 100%;
}

.section-image {
  text-align: center;
}

.section-image img {
    max-width: 520px;
    max-height: 520px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

.section-button {
  text-align: center;
  margin-top: 20px;
}
footer {
    background-color: var(--color-brown);
    color: var(--color-white);
    padding: 10px;
    text-align: center;
    margin-top: 40px;
}

.footer_div{
    display: flex; 
    justify-content: space-between;
}
footer a {
    color: var(--color-white);
    text-decoration: none;
}
.container {
    max-width: 30rem;
    margin: 0 auto;
    margin-top: 3rem;
    padding: 2.2rem;
    border: 1px solid var(--color-black);
    border-radius: 1rem;
    margin-bottom: 5rem;
}
.colorp{
  color: var(--color-black);
}
label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
    border: 1px solid var(--color-white);
    border-radius: 3px;
}

#message {
    resize: none;
}

.error-message {
    color: red;
}
