/* Base styling for the page */
body {
  font-family: "Segoe UI", sans-serif; /* Sets the main font */
  background-color: #e6ffe6;           /* Light gray background */
  /* margin: 0;                           /* Removes default margin */
  margin-left: 60px; /* Adds space to the left of everything */
  padding: 0;                          /* Removes default padding */
  color: #333;                         /* Sets default text color to dark gray */
  line-height: 1.6;                    /* Improves text readability */
}

/* Styling for the header and navigation bar */
header, nav {
  background-color: #003366; /* Dark navy blue background */
  color: red;                /* Red text (you can change this to white for readability) */
  padding: 1rem;             /* Adds spacing inside the header/nav */
  text-align: center;        /* Centers the text horizontally */
}

nav {
   display: flex; 
   flex-wrap: wrap;
   justify-content: center;
   }

.navbar-brand {
  font-size: 2rem;        /* Bigger text */
  font-weight: bold;      /* Bold (if not already) */
  text-transform: uppercase; /* Optional: ALL CAPS */
  color: blue;           /* Or any color you want */
}



/* Links inside the navigation bar */
nav a {
  color: red;             /* Makes nav links red */
  text-decoration: none;    /* Removes underline by default */
  margin: 0.5rem 1rem;           /* Adds spacing between links */
  font-weight: bold;        /* Makes nav links bold */
  font-size: 1.2rem; /* 👈 Increase this value as needed */
  text-transform: uppercase; /* 👈 This makes the text ALL CAPS */
  white-space: nowrap  /* Prevents the tet from breaking */


}

nav ul {
  list-style: none;           /* Removes bullet points */
  padding: 0;
  margin: 0;
  display: flex;              /* Puts list items side by side */
  justify-content: center;   /* Centers the whole nav bar */
  gap: 20px;                  /* Optional: spacing between items */
}

nav ul li {
  display: inline;            /* Ensures list items are inline */
}


/* Hover effect for nav links */
nav a:hover {
  text-decoration: underline; /* Adds underline on hover */
}

/* Main content container */
.container {
  width: 100%;                                /* Makes the container stretch to the full width of its parent (usually the body) */
  max-width: 960px;                           /* Limits the width so it doesn’t stretch too wide on large screens */
  padding: 1rem;                              /* Adds internal space (1rem) around the content on all sides */
  box-sizing: border-box;                     /* Ensures padding is included inside the width, not added outside it */
  margin: auto;                               /* Horizontally centers the container by making left and right margins equal */
  padding: 2rem;                              /* Overrides previous padding: adds more internal spacing (2rem) */
  background: transparent;                          /* Gives the container a white background for contrast */
  box-shadow: 0 0 10px rgba(0,0,0,0.1);       /* Adds a soft, subtle shadow around the box for a slight 3D effect */
}


/* Headings color */
h1, h2, h3 {
  color: #003366; /* Same navy blue used for consistency */
}


.intro {
  text-align: center;
  margin-top: 2rem; /* optional spacing */
}

.intro h2, .intro h3 {
  margin: 0.5rem 0; /* optional: tidy spacing */
font-size: 2rem;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;   /* makes it circular */
  object-fit: cover;
  margin-bottom: 1rem;
}


/* Social icon section */
ul.network-icon {
  list-style: none;              /* Removes bullet points */
  padding: 0;                    /* Removes padding */
  display: flex;                 /* Arranges items in a row */
  gap: 10px;                     /* Spacing between icons */
  justify-content: center;      /* Centers the icons horizontally */
}

ul.network-icon li {
  display: inline-block;         /* Makes icons align horizontally */
}

/* Link styling for all regular links */
a {
  color: #0077cc;                /* Bright blue */
}

a:hover {
  color: #005fa3;                /* Slightly darker blue when hovered */
}



@media (max-width: 600px) {
  body {
    font-size: 0.95rem;               /* Slightly smaller text */
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  nav a {
    display: block;                   /* Stack nav links vertically */
    width: 100%;
    text-align: center;
    margin: 0.5rem 0;
  }

  .container {
    padding: 1rem 0.5rem;             /* Less side padding */
  }
}

