body {
  font-family: 'Cambria', serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.header{      
  text-align: center;
  background-color: #0073e6;
  color: #fff;
  padding: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header h1 {
  margin: 0;
}

h2{
  font-style: normal; /* Ensure normal font style */
  display: flex;
  align-items: center;
  font-size: 1.8em;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

h2 i {
  font-style: normal; /* Prevent the icon from being italic */
  margin-right: 10px;
}

h3 {
  font-size: 0.9em; /* Very small size, adjust as needed */
  font-weight: normal; /* Optional: make it less bold */
  color: #666; /* Subtle, lighter color */
}

.theme-toggle {
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #ff9900;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 14px;
}

.theme-toggle:hover {
  background-color: #e68a00;
}

/* Sections */
section {
  margin: 20px 0;
  padding: 20px;
  border-radius: 8px;
  background-color: wheat; /* Wheat background for contrast */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
  max-width: 1000px;
}

section:hover {
  transform: scale(1.02);
}

/* Profile Section */
.profile-images {
  display: flex;
  gap: 20px;
  justify-content: space-between; /* Push items to far ends */
}

.profile-images img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.profile-images img:hover {
  transform: rotate(10deg) scale(1.1);
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 40px;
  padding: 10px 0;
  background-color: #333;
  color: #fff;
}

/* Dark Theme */
body.dark-mode {
  background-color: #333;
  color: #f7f7f7;
}

body.dark-mode .footer {
  background-color: #000000;
}

.interests-section {
      background-color: wheat;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      margin: 20px auto;
      max-width: 1000px;
    }

    .interests-section h2 {
      font-size: 2em;
      color: #333;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 2px solid #ff6f61;
      padding-bottom: 5px;
      margin-bottom: 20px;
    }

    .interests-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
    }

    .interest-item {
      background-color: #fafafa;
      padding: 15px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      gap: 15px;  /* Space between the icon and text */
      transition: transform 0.3s;
    }

    .interest-item:hover {
      transform: translateY(-5px);
    }

    .interest-item i {
      font-size: 3em;
      color: #ff6f61;
    }

    .interest-item p {
      font-size: 1.1em;
      color: #333;
      margin: 0;
      flex: 1; /* Ensures the text takes available space */
    }
