body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f6f6f6;
  color: #111;
  transition: background 0.3s, color 0.3s;
}
body.dark-mode {
  background-color: #0c0c0c;
  color: #eee;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 10px rgba(255,0,0,0.3);
  z-index: 1000;
}
body.dark-mode .navbar {
  background: rgba(20,20,20,0.95);
  box-shadow: 0 0 10px red;
}
.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
.logo img {
  height: 80px;
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: red;
  border-radius: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-links a,
.nav-links button {
  background: #e60000;
  color: white;
  padding: 10px 12px;
  border: none;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}
.nav-links a:hover,
.nav-links button:hover {
  background: #b80000;
}
body.dark-mode .nav-links a {
  color: #eee;
}

/* Main Content */
.content {
  padding-top: 120px;
  padding: 40px 20px 60px;
  max-width: 1200px;
  margin: auto;
  margin-top: 80px;
}

.about-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.text-section {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.image-section {
  flex: 1 1 400px;
  text-align: center;
}
.image-section img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255,0,0,0.2);
  margin-top: 85px;
}

/* Info Boxes */
.info-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px 25px;
  box-shadow: 0 0 12px rgba(255,0,0,0.15);
  line-height: 1.7;
  transition: 0.3s ease;
}
body.dark-mode .info-box {
  background: #1a1a1a;
}
.info-box h2 {
  color: red;
  margin-bottom: 10px;
}
.info-box ul, .info-box p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #111;
  color: #eee;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .image-section img {
    margin-top: 30px;
    max-width: 90%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    right: 10px;
    background: #222;
    width: 170px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    padding: 10px 0;
    z-index: 999;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .logo img {
    height: 70px;
  }
}
