:root {
  --color-1: #eaeaea;
  --color-2: #2daa9e;
  --color-3: #e3d2c3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
  scroll-behavior: smooth;
  background-color: var(--color-1);
}

body {
  display: flex;
  flex-direction: column;

  position: relative;

  justify-content: space-between;
  height: 100%;
  
}

h1 {
  font-size: 30px;
}
h1,
h2,
h3,
h4 {
  color: var(--color-2);
  font-weight: bold;
}

p {
  text-align: justify;
  padding: 8px;
  font-size: 1.5em;
}

/* Header & Footer */
header,
footer {
  background: var(--color-2);
  color: var(--color-1);
  text-align: center;
  padding: 10px;
  width: 100%;
  flex-shrink: 0; /* Prevents header/footer from shrinking */
}

.logo {
  width: 200px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  color: var(--color-1);
}

header {
  position: fixed; /* Keeps the header fixed at the top */
  top: 0;
  left: 0;

  width: 100%;
  height: 80px; /* Adjust height as needed */
  border-bottom: 1px solid white;
  z-index: 10000; /* Ensures it's above other content */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}


.logo-header{
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Ensure the content starts below the header */
main {
  padding-top: 80px;
  height: 100%;
  display: flex
;
  flex-direction: column;
  justify-content: space-between;
  
}

header div {
  display: flex;
  align-items: center;
  flex: 1;
}

header ul {
  list-style: none;
  display: flex;
  gap: 1em;
}

header ul li {
  height: 100%;
  a {
    all: unset; /* Removes all styles (color, text-decoration, etc.) */
    cursor: pointer; /* Ensures it still looks clickable */
  }
}
header {
  font-size: 1.2em;
}

#Nav-list {
  
  justify-content: end;
  gap: 1.5em;
}

/* Container */
.container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, auto);
  width: 100%;
  /* padding: 10px; */
  justify-items: center;
}

/* Section */
.section {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--color-1);
  padding: 8px;
  text-align: center;
  width: 100%;
  color: var(--color-2);
 
}
.add_section{
  align-items: center;
}
.section2{
  
  text-align: justify;
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.section3{
  width: 100%;
  height: fit-content;
}
.section4 {
  display: flex;
 flex-direction: column;
  
  
}





.button {
  padding: 10px;
  background: var(--color-2);
  color: var(--color-1);
  border-radius: 1em;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid var(--color-2);
  width: fit-content;
  font-size: 1.2em;
}

.button:hover {
  background: var(--color-2);
  color: var(--color-1);
  border: 1px solid var(--color-1);
}
.button-2 {
  padding: 10px;
  background: var(--color-3);
  color: var(--color-2);
  border-radius: 1em;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid var(--color-2);
  width: fit-content;
  font-size: 1.2em;
}

.button-2:hover {
  background: var(--color-2);
  color: var(--color-1);
  border: 1px solid var(--color-1);
}

.text-color-2 {
  h2,
  h3,
  h4 {
    color: var(--color-1);
  }
}

.text-color-1 {
  h2 {
    color: var(--color-2);
  }
}

#BurgerMenu,
#side-menu {
  display: none;
}
input {
  font-size: 12px;
}
a {
  all: unset;
  cursor: pointer;
}

#Logo-container-2{
    display: flex;
    flex-direction: row;
    font-size: 0.5em;
    
  }
.logo2::after{
    content: "";
    width: 20px;
    height: 2px;
    background-color: black;
    margin-left: 2px;
  }
.logo2::before{
    content: "";
    width: 20px;
    height: 2px;
    background-color: black;
    margin-right: 2px;
  }
#Logo-container {
  font-size: 1.2em;
  height: 100%;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  background-color: var(--color-3);
  color: black;
  padding-right: 4px;
  padding-left: 4px;
  img{
    width: 180px;
    height: 40px;
    object-fit: cover;
    border-radius: 10px;
    display: flex;
    align-items: center;
    align-content: center;
  }
}
/* Responsive Design */
@media screen and (max-width: 768px) {
  html {
    padding-left: 0px;
    padding-right: 0px;
  }
  header {
    flex-direction: row;
    text-align: center;
  }

  header ul {
    flex-direction: column;
    gap: 0.5em;
  }

  p {
    font-size: 1em;
  }

  .container {
    grid-template-rows: repeat(auto-fit, minmax(200px, 1fr));
  }
  #Nav-list {
    gap: 0.5em;
  }
  #Ul-Nav-list {
    display: none;
  }
  #BurgerMenu {
    display: block;
  }
  /* Sidebar Menu */
  #side-menu {
    position: fixed;
    top: 80px;
    right: -100%; /* Initially hidden */
    width: 100%;
    height: fit-content;
    background-color: var(--color-2); /* Semi-transparent black */
    transition: right 0.3s ease-in-out;
    display: flex;

    justify-content: flex-start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  #side-menu ul {
    list-style: none;
    padding-left: 4px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1em;
  }

  /* #side-menu ul li {
    margin: 15px 0;
  } */
  /* .satisfy-regular {
    font-family: "Satisfy", cursive;
    font-weight: bold;

    font-style: normal;
  } */

  #side-menu ul li a {
    color: var(--color-1);
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
  }

  #side-menu ul li a:hover {
    color: var(--color-3); /* Highlight color */
  }

  /* Active Class (when menu is open) */
  #side-menu.active {
    right: 0;
    top: 80px;
  }
  .button {
    font-size: 1em;
  }
  .button-2 {
    font-size: 1em;
  }
  #Logo-container {
    display: flex;
    flex-direction: column;
    font-size: 1.2em;
     img{
    width: 180px;
    height: 40px;
    object-fit: cover;
    border-radius: 10px;
    display: flex;
    align-items: center;
    align-content: center;
  }
  }
  #Logo-container-2{
    display: flex;
    flex-direction: row;
    font-size: 0.6em;
  }
  .logo2::after{
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--color-1);
    margin-left: 2px;
  }
  .logo2::before{
    content: "";
    width: 20px;
    height: 2px;
    background-color: var(--color-1);
    margin-right: 2px;
  }
  h1 {
    font-size: 1.4em;
  }
}

.contact-section {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  
  color: var(--color-2);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.contact-item a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  
}

.contact-item img {
  flex-shrink: 0;
}

.contact-item p {
  font-size: 1.1rem;
  margin: 0;
  color: var(--color-2);
  font-weight: 500;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button */
.dropbtn {
  cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--color-2);
  width: 390px;
  z-index: 1;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 8px;
  
}

/* Links inside dropdown */
.dropdown-content a {
  
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  
}

/* Show the dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Optional: highlight on hover */
.dropdown-content a:hover {
  background-color: var(--color-3);
  color: var(--color-2);
}

