/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fdf8e9;
  color: #834f37;
  line-height: 1.6;
}

h1, h2 {
  color: #834f37;
  text-align: center;
}

#other{
    padding-top: 60px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eacbaa;
  padding: 15px 30px;
  position: relative;
  z-index: 10;
}

.logo img {
  height: 40px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.menu li a {
  text-decoration: none;
  color: #834f37;
  font-size: 1.1em;
  font-weight: 600;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #a26548;
}

/* Menu Toggle (burger) */
.menu-icon {
  display: none;
  font-size: 2em;
  cursor: pointer;
  color: #834f37;
}

#menu-toggle {
  display: none;
}

/* Header */
.hero {
  text-align: center;
  margin: 50px 20px;
}

/* Download Section */
#download {
  text-align: center;
  margin: 50px 20px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  background-color: #834f37;
  color: white;
  padding: 15px 30px;
  font-size: 1.2em;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #a26548;
}

.download-btn img {
  width: 25px;
  height: 25px;
  margin-right: 12px;
}

/* Optional About Section */
#about {
  padding: 40px 20px;
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table th, table td {
  padding: 15px;
  border: 1px solid #834f37;
  text-align: left;
}

table th {
  background-color: #eacbaa;
}

/* Footer */
footer {
  text-align: center;
  font-size: 1em;
  margin: 50px 0 20px;
}

footer a {
  color: #834f37;
  text-decoration: none;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 40px 20px;
  }
  
  .project {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
  }
  
  .project img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .project h2 {
    margin: 1rem 0 0.5rem;
  }
  
  .project p {
    font-size: 0.95rem;
    color: #834f37;
    padding: 0 1rem;
  }
  
  .project a {
    display: inline-block;
    margin-top: 0.5rem;
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
  }
  
  .project a:hover {
    text-decoration: underline;
  }
  

/* Responsive Design */
@media screen and (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background-color: #eacbaa;
    position: absolute;
    top: 65px;
    right: 30px;
    width: 200px;
    border-radius: 8px;
    padding: 15px;
  }

  .menu li {
    margin: 10px 0;
  }

  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}
