@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;1,500;1,600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  transition: background-color 0.5s, color 0.5s;
}

header {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header.light-theme {
  background-color: #f3f4f6;
  color: #1f2937;
}
header.light-theme .nav-section ul li a {
  color: #1f2937;
}
header.light-theme .nav-section ul li a:hover {
  color: #3b82f6;
}
header.light-theme .nav-section ul li a.active {
  color: #2563eb;
  font-weight: bold;
  border-bottom: 2px solid #2563eb;
}
header.dark-theme {
  background-color: #0d1117;
  color: #c9d1d9;
}
header.dark-theme .nav-section ul li a {
  color: #c9d1d9;
}
header.dark-theme .nav-section ul li a:hover {
  color: #58a6ff;
}
header.dark-theme .nav-section ul li a.active {
  color: #1f6feb;
  border-bottom: 2px solid #1f6feb;
}
header.land-theme {
  background-color: #f4f4e9;
  color: #2e4a1c;
}
header.land-theme .nav-section ul li a {
  color: #2e4a1c;
}
header.land-theme .nav-section ul li a:hover {
  color: #4b8f29;
}
header.land-theme .nav-section ul li a.active {
  color: #2a6b12;
  border-bottom: 2px solid #2a6b12;
}
header.water-theme {
  background-color: #e0f2fe;
  color: #0c4a6e;
}
header.water-theme .nav-section ul li a {
  color: #0c4a6e;
}
header.water-theme .nav-section ul li a:hover {
  color: #1d4ed8;
}
header.water-theme .nav-section ul li a.active {
  color: #1e40af;
  border-bottom: 2px solid #1e40af;
}
header.fire-theme {
  background-color: #fde8e8;
  color: #7f1d1d;
}
header.fire-theme .nav-section ul li a {
  color: #7f1d1d;
}
header.fire-theme .nav-section ul li a:hover {
  color: #d62323;
}
header.fire-theme .nav-section ul li a.active {
  color: #9f1a1a;
  border-bottom: 2px solid #9f1a1a;
}
header .logo-section {
  display: flex;
  align-items: center;
  cursor: pointer;
}
header .logo-section img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
}
header .logo-section h1 {
  font-size: 1.8rem;
  font-weight: 600;
}
header .nav-section ul {
  display: flex;
  align-items: center;
}
header .nav-section ul li {
  margin: 0 15px;
  position: relative;
}
header .nav-section ul li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
  background-color: currentColor;
}
header .nav-section ul li:hover::after {
  width: 100%;
}

main {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 80vh;
}
main .title {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
}
main #theme-buttons {
  display: flex;
  gap: 20px;
}
main #theme-buttons .theme-option {
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
main #theme-buttons .theme-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
main #theme-buttons .theme-option .img-theme {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main #theme-buttons .theme-option .img-theme img {
  width: 195px;
  border-radius: 10px;
  margin-bottom: 10px;
}
main #theme-buttons .theme-option .img-theme span {
  font-weight: 500;
  font-size: 1rem;
}
main #theme-buttons .theme-option button {
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
main #theme-buttons .theme-option button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
main.light-theme {
  background-color: #ffffff;
  color: #1f2937;
}
main.light-theme .title {
  color: #1f2937;
  border-bottom-color: #2563eb;
}
main.light-theme .theme-option {
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
}
main.light-theme .theme-option .img-theme span {
  color: #1f2937;
}
main.light-theme .theme-option button {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #ffffff;
}
main.dark-theme {
  background: linear-gradient(135deg, #161b22, #0d1117);
  border: 1px solid #30363d;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
main.dark-theme .title {
  color: #c9d1d9;
  border-bottom-color: #1f6feb;
}
main.dark-theme .theme-option {
  background-color: #0d1117;
  border: 1px solid #30363d;
}
main.dark-theme .theme-option .img-theme span {
  color: #c9d1d9;
}
main.dark-theme .theme-option button {
  background: linear-gradient(135deg, #21262d, #30363d);
  color: #ffffff;
}
main.land-theme {
  background-color: #f4f4e9;
}
main.land-theme .title {
  color: #2e4a1c;
  border-bottom-color: #2a6b12;
}
main.land-theme .theme-option {
  background-color: #f4f4e9;
  border: 1px solid #a1a992;
}
main.land-theme .theme-option .img-theme span {
  color: #2e4a1c;
}
main.land-theme .theme-option button {
  background: linear-gradient(135deg, #8cbf68, #597d3f);
  color: #ffffff;
}
main.water-theme {
  background-color: #e0f2fe;
}
main.water-theme .title {
  color: #0c4a6e;
  border-bottom-color: #1e40af;
}
main.water-theme .theme-option {
  background-color: #e0f2fe;
  border: 1px solid #bfdbfe;
}
main.water-theme .theme-option .img-theme span {
  color: #0c4a6e;
}
main.water-theme .theme-option button {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  color: #ffffff;
}
main.fire-theme {
  background-color: #fde8e8;
}
main.fire-theme .title {
  color: #7f1d1d;
  border-bottom-color: #9f1a1a;
}
main.fire-theme .theme-option {
  background-color: #fde8e8;
  border: 1px solid #fca5a5;
}
main.fire-theme .theme-option .img-theme span {
  color: #7f1d1d;
}
main.fire-theme .theme-option button {
  background: linear-gradient(135deg, #dc2626, #f87171);
  color: #ffffff;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  font-weight: bold;
  font-size: 0.9rem;
}
footer.light-theme {
  background-color: #f3f4f6;
  color: #1f2937;
}
footer.dark-theme {
  background-color: #0d1117;
  color: #c9d1d9;
  border-top: 1px solid #30363d;
}
footer.dark-theme p {
  color: rgb(230.9347826087, 234.5, 238.0652173913);
}
footer.land-theme {
  background-color: #f4f4e9;
  color: #2e4a1c;
}
footer.water-theme {
  background-color: #e0f2fe;
  color: #0c4a6e;
}
footer.fire-theme {
  background-color: #fde8e8;
  color: #7f1d1d;
}

/*# sourceMappingURL=style.css.map */
